/* ============================================
   Single Product Page Styles
   Version: 1.1
   Font: Trio (11px, weight 400)
   Brand Colors:
     Pitch Black  #191710
     Racing Red   #E12F2F
     Cotton Rose  #F7C9C9
     Alabaster    #E9DFDF
     Coffee Bean  #200908
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --sp-red: #E12F2F;
    --sp-black: #191710;
    --sp-coffee: #200908;
    --sp-rose: #F7C9C9;
    --sp-alabaster: #E9DFDF;
    --sp-white: #ffffff;
    --sp-gray-mid: #999999;
    --sp-gray-border: var(--sp-alabaster);
    --sp-green: #2ecc40;
    --sp-orange: #ff9800;
    --sp-font: 'Trio', sans-serif;
    --syne-font: 'Syne', sans-serif;
    --sp-font-size: 11px;
    --sp-font-body: 13px;
    --sp-radius: 12px;
    --sp-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --sp-glass-blur: blur(12px);
    --sp-summary-width: 420px;
    --sp-gallery-gap: 0px;
}

body.single-product {background: linear-gradient(135deg, var( --sp-red) 0%, #f8fafc 50%, var(--sp-black) 100%);}
/* ============================================
   LAYOUT: Two-Column Product Layout
   ============================================ */
.sp-single-product {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.sp-product-layout {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
}

/* ---------- Gallery Column ---------- */
.sp-gallery-column {
    width: 55%;
    flex: 0 0 55%;
    min-width: 0;
    box-sizing: border-box;
}

/* ---------- Summary Column (Sticky) ---------- */
.sp-summary-column {
    width: 42%;
    flex: 0 0 42%;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    align-self: flex-start;
    height: 100vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--sp-gray-border) transparent;
    box-sizing: border-box;
}

.sp-summary-column::-webkit-scrollbar {
    width: 4px;
}

.sp-summary-column::-webkit-scrollbar-track {
    background: transparent;
}

.sp-summary-column::-webkit-scrollbar-thumb {
    background: var(--sp-gray-border);
    border-radius: 4px;
}


/* ============================================
   GALLERY: Desktop - Stacked Full-Width Images
   ============================================ */
.sp-gallery-desktop {
    display: flex;
    flex-direction: column;
    gap: var(--sp-gallery-gap);
}

.sp-gallery-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--sp-alabaster);
}

.sp-gallery-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sp-gallery-image-wrapper:hover .sp-gallery-image {
    transform: scale(1.03);
}

/* Sale Badge */
.sp-sale-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--sp-red);
    color: var(--sp-white);
    font-family: var(--sp-font);
    font-size: var(--sp-font-size);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    z-index: 2;
    line-height: 1;
}

/* Mobile gallery hidden on desktop */
.sp-gallery-mobile {
    display: none;
}


/* ============================================
   GALLERY: Tablet & Mobile - Carousel Slider
   ============================================ */
@media (max-width: 1024px) {
    .sp-gallery-desktop {
        display: none;
    }

    .sp-gallery-mobile {
        display: block;
        position: relative;
        width: 100%;
        overflow: hidden;
        background: var(--sp-alabaster);
    }

    .sp-mobile-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .sp-mobile-slider::-webkit-scrollbar {
        display: none;
    }

    .sp-mobile-slide {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: center;
    }

    .sp-mobile-slide .sp-gallery-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* Pagination - Bottom Left */
    .sp-mobile-pagination {
        position: absolute;
        bottom: 16px;
        left: 16px;
        display: flex;
        align-items: center;
        gap: 3px;
        font-family: var(--sp-font);
        font-size: var(--sp-font-size);
        font-weight: 400;
        letter-spacing: 1px;
        color: var(--sp-coffee);
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: var(--sp-glass-blur);
        -webkit-backdrop-filter: var(--sp-glass-blur);
        padding: 6px 12px;
        border-radius: 4px;
        z-index: 5;
        line-height: 1;
    }

    .sp-pagination-current {
        color: var(--sp-black);
        font-weight: 400;
    }

    .sp-pagination-separator {
        color: var(--sp-gray-mid);
        margin: 0 1px;
    }

    .sp-pagination-total {
        color: var(--sp-gray-mid);
    }

    .sp-sale-badge--mobile {
        top: 16px;
        left: 16px;
    }
}


/* ============================================
   PRODUCT SUMMARY
   ============================================ */
.sp-product-summary {
    padding: 40px 32px 60px;
}

/* Category */
.sp-product-category {
    font-family: var(--sp-font);
    font-size: var(--sp-font-size);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sp-gray-mid);
    margin-bottom: 12px;
    line-height: 1;
}

.sp-product-category a {
    color: var(--sp-gray-mid);
    text-decoration: none;
    transition: color var(--sp-transition);
}

.sp-product-category a:hover {
    color: var(--sp-red);
}

/* Product Title */
.sp-product-title {
    font-family: var(--syne-font);
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sp-black);
    margin: 0 0 16px 0;
    padding: 0;
    line-height: 1.3;
}

/* Price */
.sp-product-price {
    font-family: var(--sp-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--sp-black);
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: 0.5px;
}

.sp-product-price del {
    color: var(--sp-gray-mid);
    margin-right: 8px;
    font-size: 13px;
}

.sp-product-price ins {
    text-decoration: none;
    color: var(--sp-red);
}

/* Short Description */
.sp-product-short-desc {
    font-family: var(--syne-font);
    font-size: var(--sp-font-body);
    color: var(--sp-coffee);
    line-height: 1.7;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.sp-product-short-desc p {
    margin: 0 0 8px;
}


/* ============================================
   VARIATION SELECTOR
   ============================================ */
.sp-variations-wrapper {
    margin-bottom: 24px;
}

.sp-variation-group {
    margin-bottom: 20px;
}

.sp-variation-label {
    display: block;
    font-family: var(--sp-font);
    font-size: var(--sp-font-size);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sp-coffee);
    margin-bottom: 10px;
    line-height: 1;
}

.sp-variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Variation Button - Star Animation + Glassmorphism */
.sp-variation-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0);
    border-radius: 6px;
    font-family: var(--sp-font);
    font-size: var(--sp-font-size);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sp-white);
    cursor: pointer;
    transition: all var(--sp-transition);
    outline: none;
    line-height: 1;
    min-width: 48px;
    overflow: hidden;
    z-index: 1;
}

/* Spinning shine - visible by default at low opacity */
.sp-variation-btn::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -150%;
    width: 400%;
    height: 400%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 70%,
        rgba(255, 255, 255, 0.4) 80%,
        transparent 90%
    );
    animation: sp-star-spin 4s linear infinite;
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.3s, background 0.3s;
}

.sp-variation-btn:hover {
    background: var(--sp-red);
    border-color: rgba(255, 255, 255, 0.3);
}

.sp-variation-btn:hover::before {
    opacity: 1;
}

.sp-variation-btn .sp-variation-btn-text {
    position: relative;
    z-index: 2;
}

/* Variation Button - Active/Selected */
.sp-variation-btn.sp-selected {
    background: var(--sp-red);
    border-color: var(--sp-red);
    box-shadow: 0 0 15px rgba(225, 47, 47, 0.4);
}

.sp-variation-btn.sp-selected::before {
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 70%,
        rgba(247, 201, 201, 0.5) 80%,
        transparent 90%
    );
}

/* Variation Button - Disabled */
.sp-variation-btn.sp-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.sp-variation-btn.sp-disabled::before {
    animation: none;
    background: transparent;
}

@keyframes sp-star-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Color Swatch Buttons */
.sp-variation-btn--color {
    padding: 6px;
    min-width: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.sp-variation-btn--color .sp-variation-btn-text {
    display: none;
}

.sp-color-swatch {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.sp-variation-btn--color.sp-selected {
    border-color: var(--sp-black);
    box-shadow: 0 0 0 2px var(--sp-white), 0 0 0 4px var(--sp-black);
    background: transparent;
}

/* Variation Price Update */
.sp-variation-price {
    font-family: var(--sp-font);
    font-size: 16px;
    color: var(--sp-black);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* Variation Description */
.sp-variation-description {
    font-family: var(--sp-font);
    font-size: var(--sp-font-body);
    color: var(--sp-coffee);
    line-height: 1.6;
    margin-bottom: 16px;
}


/* ============================================
   QUANTITY & ADD TO CART
   ============================================ */
.sp-add-to-cart-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* Quantity Wrapper - Spinning Border + Dark Fill */
.sp-quantity-wrapper {
    display: flex;
    align-items: center;
    height: 54px;
    width: 140px;
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    clip-path: polygon(
        10px 0%, 100% 0%,
        100% calc(100% - 10px),
        calc(100% - 10px) 100%,
        0% 100%, 0% 10px
    );
}

/* Spinning border */
.sp-quantity-wrapper::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        from 0deg,
        transparent 70%,
        #fff 80%,
        transparent 90%
    );
    animation: sp-star-spin 3s linear infinite;
}

/* Inner dark fill */
.sp-qty-inner {
    position: absolute;
    inset: 2px;
    background: linear-gradient(180deg, #1a1c22 0%, #111318 100%);
    display: flex;
    align-items: center;
    z-index: 1;
    clip-path: polygon(
        8px 0%, 100% 0%,
        100% calc(100% - 8px),
        calc(100% - 8px) 100%,
        0% 100%, 0% 8px
    );
}

.sp-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 16px;
}

.sp-qty-btn:hover {
    color: var(--sp-white);
}

.sp-qty-input {
    width: 40px;
    height: 100%;
    text-align: center;
    border: none!important;
    font-family: var(--sp-font);
    font-size: 13px;
    font-weight: 400;
    color: var(--sp-white);
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

.sp-qty-input::-webkit-outer-spin-button,
.sp-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to Cart Button - Sci-Fi Clipped Corner */
.sp-add-to-cart-btn {
    flex: 1;
    position: relative;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px!important;
    background: linear-gradient(180deg, #1a1c22 0%, #111318 100%);
    color: #d1d5db;
    border: none;
    font-family: var(--sp-font);
    font-size: var(--sp-font-size);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    line-height: 1;
    min-width: 200px;
    clip-path: polygon(
        12px 0%, 100% 0%,
        100% calc(100% - 12px),
        calc(100% - 12px) 100%,
        0% 100%, 0% 12px
    );
}

/* Border + inner glow */
.sp-add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(148, 163, 184, 0.3);
    pointer-events: none;
    clip-path: inherit;
    box-shadow: inset 0 0 10px rgba(148, 163, 184, 0.05);
}

/* Corner decoration - top right */
.sp-add-to-cart-btn::after {
    content: "::";
    position: absolute;
    top: 6px;
    right: 12px;
    font-size: 10px;
    color: rgba(148, 163, 184, 0.4);
    letter-spacing: 1px;
    line-height: 1;
    transition: color 0.3s ease;
}

/* Button text + left decoration bar */
.sp-add-to-cart-btn .sp-btn-text {
    position: relative;
    z-index: 1;
}

.sp-add-to-cart-btn .sp-btn-text::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 14px;
    background: rgba(148, 163, 184, 0.3);
    transition: background 0.3s ease;
}

/* Hover */
.sp-add-to-cart-btn:hover {
    color: var(--sp-white);
    background: linear-gradient(180deg, #23262d 0%, #16191f 100%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.sp-add-to-cart-btn:hover::before {
    border-color: var(--sp-red);
}

.sp-add-to-cart-btn:hover::after {
    color: var(--sp-red);
}

.sp-add-to-cart-btn:hover .sp-btn-text::before {
    background: var(--sp-red);
}

/* Active */
.sp-add-to-cart-btn:active {
    transform: scale(0.98);
    background: #000;
}

/* Disabled */
.sp-add-to-cart-btn:disabled {
    opacity: 1;
    cursor: not-allowed;
}

.sp-add-to-cart-btn:disabled:hover {
    color: #d1d5db;
    background: linear-gradient(180deg, #1a1c22 0%, #111318 100%);
    box-shadow: none;
    transform: none;
}

.sp-add-to-cart-btn:disabled:hover::before {
    border-color: rgba(100, 116, 139, 0.4);
}

.sp-add-to-cart-btn:disabled:hover::after {
    color: rgba(148, 163, 184, 0.4);
}

.sp-add-to-cart-btn:disabled:hover .sp-btn-text::before {
    background: rgba(148, 163, 184, 0.3);
}


/* ============================================
   STOCK STATUS
   ============================================ */
.sp-stock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sp-font);
    font-size: var(--sp-font-size);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    line-height: 1;
}

.sp-stock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.sp-stock-instock {
    color: var(--sp-green);
}

.sp-stock-instock .sp-stock-dot {
    background: var(--sp-green);
}

.sp-stock-outofstock {
    color: var(--sp-red);
}

.sp-stock-outofstock .sp-stock-dot {
    background: var(--sp-red);
}

.sp-stock-onbackorder {
    color: var(--sp-orange);
}

.sp-stock-onbackorder .sp-stock-dot {
    background: var(--sp-orange);
}


/* ============================================
   SKU
   ============================================ */
.sp-product-sku {
    font-family: var(--sp-font);
    font-size: var(--sp-font-size);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sp-gray-mid);
    margin-bottom: 28px;
    line-height: 1;
}


/* ============================================
   ACCORDIONS
   ============================================ */
.sp-product-accordions {
    border-top: 1px solid var(--sp-gray-border);
}

.sp-accordion {
    border-bottom: 1px solid var(--sp-gray-border);
}

.sp-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sp-font);
    font-size: var(--sp-font-size);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sp-black);
    outline: none;
    transition: color var(--sp-transition);
    line-height: 1;
}

.sp-accordion-trigger:hover {
    color: var(--sp-red);
}

.sp-accordion-icon {
    transition: transform var(--sp-transition);
    flex-shrink: 0;
}

.sp-accordion-trigger[aria-expanded="true"] .sp-accordion-icon {
    transform: rotate(45deg);
}

.sp-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sp-accordion-content.sp-accordion-open {
    max-height: 600px;
}

.sp-accordion-inner {
    padding: 0 0 20px;
    font-family: var(--sp-font);
    font-size: var(--sp-font-body);
    color: var(--sp-coffee);
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.sp-accordion-inner p {
    margin: 0 0 10px;
}

.sp-accordion-inner table {
    width: 100%;
    border-collapse: collapse;
}

.sp-accordion-inner table th,
.sp-accordion-inner table td {
    font-family: var(--sp-font);
    font-size: var(--sp-font-size);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-bottom: 1px solid var(--sp-gray-border);
    text-align: left;
}

.sp-accordion-inner table th {
    color: var(--sp-gray-mid);
    font-weight: 400;
    width: 40%;
}

.sp-accordion-inner table td {
    color: var(--sp-coffee);
}


/* ============================================
   RESPONSIVE: Tablet
   ============================================ */
@media (max-width: 1024px) {
    .sp-product-layout {
        flex-direction: column !important;
    }

    .sp-gallery-column {
        width: 100%;
        flex: 0 0 100%;
    }

    .sp-summary-column {
        width: 100%;
        flex: 0 0 100%;
        position: relative;
        top: auto;
        height: auto;
        overflow-y: visible;
    }

    .sp-product-summary {
        padding: 32px 24px 48px;
    }

    .sp-product-title {
        font-family: var(--syne-font);
        font-size: 25px;
        font-weight: 800;
    }
}


/* ============================================
   RESPONSIVE: Mobile
   ============================================ */
@media (max-width: 768px) {
    .sp-product-layout {
        flex-direction: column;
    }

    .sp-gallery-column {
        width: 100%;
    }

    .sp-summary-column {
        width: 100%;
        min-width: 100%;
        position: relative;
        top: auto;
        height: auto;
        overflow-y: visible;
    }

    .sp-product-summary {
        padding: 24px 16px 40px;
    }

    .sp-product-title {
        font-family: var(--syne-font);
        font-size: 20px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .sp-product-price {
        font-size: 14px;
    }

    .sp-add-to-cart-row {
        flex-direction: column;
    }

    .sp-quantity-wrapper {
        width: 100%;
        justify-content: center;
    }

    .sp-qty-input {
        flex: 1;
    }

    .sp-add-to-cart-btn {
        width: 100%;
        padding: 30px!important;
    }

    .sp-sale-badge {
        top: 12px;
        left: 12px;
        padding: 5px 10px;
        font-size: 10px;
    }
}


/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.sp-single-product .woocommerce-product-gallery {
    display: none !important;
}

.sp-single-product .woocommerce-breadcrumb {
    display: none;
}

.sp-single-product .woocommerce-tabs {
    display: none !important;
}

.sp-single-product img {
    margin: 0;
    padding: 0;
}
/* ============================================
   WOOCOMMERCE BUTTON COLOR OVERRIDES
   ============================================ */

/* Quantity +/- buttons */
.sp-qty-btn:hover {
    color: var(--sp-red) !important;
}

/* Accordion trigger hover */
.sp-accordion-trigger:hover {
    color: var(--sp-red) !important;
}

/* Any WooCommerce default button inside single product */
.sp-single-product .button:hover,
.sp-single-product button:hover,
.sp-single-product input[type="button"]:hover,
.sp-single-product input[type="submit"]:hover {
    background-color: var(--sp-red) !important;
    color: var(--sp-white) !important;
    border-color: var(--sp-red) !important;
}

/* WooCommerce quantity input buttons specifically */
.sp-single-product .quantity .plus:hover,
.sp-single-product .quantity .minus:hover {
    background-color: var(--sp-red) !important;
    color: var(--sp-white) !important;
    border-color: var(--sp-red) !important;
}

/* WooCommerce default variation/attribute select hover */
.sp-single-product .variations td ul.variable-items-wrapper li.variable-item:not(.disabled):hover,
.sp-single-product .variations td ul.variable-items-wrapper li.variable-item.selected {
    border-color: var(--sp-red) !important;
    color: var(--sp-red) !important;
}

/* Focus ring override - replaces default blue outline with red */
.sp-single-product button:focus,
.sp-single-product .button:focus,
.sp-single-product input:focus {
    outline-color: var(--sp-red) !important;
    box-shadow: 0 0 0 2px rgba(225, 47, 47, 0.3) !important;
}


/* ============================================
   RELATED PRODUCTS SECTION
   ============================================ */
.sp-related-products {
    width: 100%;
    padding: 60px 0 80px;
    border-top: 1px solid var(--sp-gray-border);
    overflow: hidden;
}

.sp-related-header {
    padding: 0 40px 30px;
}

.sp-related-title {
    font-family: var(--sp-font);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sp-black);
    margin: 0;
    line-height: 1;
}

.sp-related-slider-wrap {
    width: 100%;
}

@media (max-width: 1024px) {
    .sp-related-products {
        padding: 40px 0 60px;
    }

    .sp-related-header {
        padding: 0 24px 24px;
    }

    .sp-related-title {
        font-size: 12px;
        letter-spacing: 2.5px;
    }
}

@media (max-width: 768px) {
    .sp-related-products {
        padding: 32px 0 48px;
    }

    .sp-related-header {
        padding: 0 16px 20px;
    }
}

.woocommerce span.onsale{
    display: none!important;
}












