﻿/* ===========================================
   SOCKERBIT / FERRARA - WEBFLOW STYLESHEET
   Global + Header + Hero
   With Vendor Prefixes for Browser Compatibility
   =========================================== */


/* ===========================================
   CSS VARIABLES (Global Theme)
   Converted from oklch to hex for broader support
   =========================================== */
:root {
    /* Core Colors */
    --color-background: #fdfcfa;
    --color-foreground: #1a1a1a;
    --color-border: #e8e4df;
    /* Brand Colors */
    --color-candy-orange: #ff8533;
    --color-candy-red: #FBC02D;
    --color-candy-pink: #FFCA28;
    --color-candy-beige: #f5ebe0;
    /* UI Colors */
    --color-card: #ffffff;
    --color-card-foreground: #1a1a1a;
    --color-muted: #f5f3f0;
    --color-muted-foreground: #737373;
    --color-primary: #FBC02D;
    --color-primary-foreground: #ffffff;
    --color-secondary: #f0ebe5;
    --color-secondary-foreground: #1a1a1a;
    --color-accent: #FFCA28;
    --color-accent-foreground: #ffffff;
    /* Radius */
    --radius: 20px;
    --radius-sm: 16px;
    --radius-md: 18px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    /* Typography */
    --font-sans: 'Fugaz One', cursive;
    --font-mono: 'Fugaz One', cursive;
    --candy-pink: #EAB308;
    --candy-pink-dark: #CA8A04;
    --candy-orange: #E8C600;
    --candy-orange-dark: #C99700;
    --candy-green: #10b981;
    --candy-green-dark: #059669;
    --candy-purple: #DEAD00;
    --candy-purple-dark: #C9A800;
    --candy-warm-bg: #FDF6F0;
    --candy-cream: #FFF8F0;
    --candy-title: #2d2a26;
    --candy-text: #696158;
    --candy-red: #FBC02D;
    --candy-yellow: #FECA57;
    --carousel-primary-light: #ff6b7a;
    --carousel-title: #2d2a26;
    --carousel-text: #696158;
    --carousel-bg: linear-gradient(180deg, #FFFDE7 0%, #fef5f0 30%, #FFF8E1 60%, #fef9f5 100%);
    --carousel-card-bg: #ffffff;
    --carousel-border: #e8e4df;
    /* Card colors */
    --card-pink: linear-gradient(160deg, #EAB308 0%, #CA8A04 100%);
    --card-orange: linear-gradient(160deg, #E8C600 0%, #C99700 100%);
    --card-green: linear-gradient(160deg, #10b981 0%, #059669 100%);
    --card-purple: linear-gradient(160deg, #DEAD00 0%, #C9A800 100%);
    --primary: #F9A825; /* strong candy pink */
    --primary-dark: #C99700;
    --accent: #F0C800; /* warm orange */
    --light: #FFFDE7;
    --dark: #1a1a1a;
    --gray: #555;
    --contact-primary: #F9A825;
    --contact-primary-light: #FFE082;
    --contact-primary-dark: #C99700;
    --contact-accent: #E6B800;
    --contact-accent-light: #FFD54F;
    --contact-secondary: #C99700;
    --contact-secondary-light: #ce93d8;
    --contact-dark: #2d2d2d;
    --contact-gray: #666;
    --contact-gray-light: #999;
    --contact-light: #f8f8f8;
    --contact-white: #fff;
    --contact-success: #4caf50;
    --contact-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --contact-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --contact-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
    --contact-shadow-glow: 0 0 30px rgba(249, 168, 37, 0.2);
    --contact-border-radius: 16px;
    --contact-border-radius-sm: 10px;
    --contact-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ===========================================
   GLOBAL RESET & BASE STYLES
   =========================================== */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-foreground);
    background-color: var(--color-background);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Webflow utility */
.w-inline-block {
    display: inline-block;
}


/* ===========================================
   PAGE WRAPPER
   =========================================== */
.page-wrapper {
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}



/* ===========================================
   INDEX CITA - HERO BANNER COMPONENT
   Full-width + Big image + centered title + subtitle
   Using Heritage section typography style
   =========================================== */

/* =========================================
   FORCE FULL WIDTH - Override parent containers
   ========================================= */

/* Target parent containers to remove constraints */
.container:has(.index_cita),
.container_row:has(.index_cita),
.container_cell:has(.index_cita) {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* =========================================
   MAIN CONTAINER - Full viewport width
   ========================================= */

.index_cita {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    min-height: 700px;
    overflow: hidden;
    /* Flex container to center content */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12rem 2rem;
    box-sizing: border-box;
}

    /* =========================================
   BACKGROUND IMAGE - Absolute, covers all
   ========================================= */

    .index_cita .blog_home_foto {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

        /* Light overlay for text readability */
        .index_cita .blog_home_foto::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.25);
            z-index: 2;
        }

    /* =========================================
   CONTENT WRAPPER - Flatten nested structure
   ========================================= */

    .index_cita > .container,
    .index_cita .container {
        display: contents;
    }

    .index_cita .container_row {
        display: contents;
    }

    .index_cita .container_cell,
    .index_cita .container_cell_col8 {
        display: contents;
    }

    .index_cita .blog_home {
        display: contents;
    }

    .index_cita .blog_home_item {
        display: contents;
    }

    /* =========================================
   TITLE - Heritage style: Playfair Display, italic, gradient
   ========================================= */

    .index_cita .contacto_tit {
        position: relative;
        z-index: 10;
        text-align: center;
        margin-bottom: 1.5rem;
    }

        .index_cita .contacto_tit h1 {
            font-family: 'Fugaz One', cursive;
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 700;
            font-style: italic;
            line-height: 1.1;
            margin: 0;
            letter-spacing: -0.02em;
            /* Gradient text like heritage section */
            background: linear-gradient(135deg, #D4A017 0%, #FBC02D 25%, #D4A017 50%, #9b1b30 75%, #D4A017 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGradientShift 6s ease-in-out infinite;
            filter: drop-shadow(0 2px 4px rgba(212, 160, 23, 0.15));
        }

@keyframes titleGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Decorative underline */
.index_cita .contacto_tit h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #D4A017, #FBC02D, #FFD740);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* =========================================
   SUBTITLE - Clean, elegant
   ========================================= */

.index_cita .blog_home_intro {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
    max-width: 700px;
    margin-top: 0.5rem;
}

    .index_cita .blog_home_intro p {
        font-family: 'Fugaz One', cursive;
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        font-weight: 400;
        color: #444444;
        margin: 0;
        line-height: 1.6;
        letter-spacing: 0.02em;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }


/* ===========================================
   VARIANTS
   =========================================== */

/* No overlay */
.index_cita.no-overlay .blog_home_foto::after {
    display: none;
}

/* Stronger overlay */
.index_cita.overlay-strong .blog_home_foto::after {
    background: rgba(255, 255, 255, 0.5);
}

/* Dark overlay for light images */
.index_cita.overlay-dark .blog_home_foto::after {
    background: rgba(0, 0, 0, 0.3);
}

/* Taller */
.index_cita.is-tall {
    min-height: 85vh;
    padding: 14rem 2rem;
}

/* Fullscreen */
.index_cita.is-fullscreen {
    min-height: 100vh;
    padding: 16rem 2rem;
}

/* Light text for dark images */
.index_cita.text-light .contacto_tit h1 {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3));
}

.index_cita.text-light .blog_home_intro p {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.index_cita.text-light .contacto_tit h1::after {
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.6));
}

/* No underline */
.index_cita.no-underline .contacto_tit h1::after {
    display: none;
}

/* Non-italic title */
.index_cita.title-normal .contacto_tit h1 {
    font-style: normal;
}


/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 768px) {
    .index_cita {
        min-height: 550px;
        padding: 9rem 1.5rem;
    }

        .index_cita .contacto_tit h1 {
            font-size: 2.5rem;
        }

            .index_cita .contacto_tit h1::after {
                width: 80px;
                height: 3px;
                margin-top: 1rem;
            }

        .index_cita .blog_home_intro p {
            font-size: 1.1rem;
        }

        .index_cita.is-tall {
            min-height: 65vh;
        }
}

@media (max-width: 480px) {
    .index_cita {
        min-height: 500px;
        padding: 7rem 1rem;
    }

        .index_cita .contacto_tit h1 {
            font-size: 2rem;
        }

            .index_cita .contacto_tit h1::after {
                width: 60px;
            }

        .index_cita .blog_home_intro p {
            font-size: 1rem;
            padding: 0 1rem;
        }
}



/* ===========================================
   FOOTER COMPONENT
   =========================================== */
.footer {
    background-color: var(--color-candy-beige);
    padding-top: 64px;
    padding-bottom: 64px;
}

.footer_container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.footer_grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 48px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 48px;
    grid-row-gap: 48px;
}

/* Footer Column */
.footer_column {
    display: block;
}

.footer_heading {
    margin: 0 0 24px 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--color-foreground);
}

.footer_links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_link-item {
    margin-bottom: 12px;
}

    .footer_link-item:last-child {
        margin-bottom: 0;
    }

.footer_link {
    font-size: 14px;
    color: var(--color-muted-foreground);
    text-decoration: none;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

    .footer_link:hover {
        color: var(--color-foreground);
    }

/* Footer Bottom */
.footer_bottom {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.footer_bottom-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer_logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-foreground);
}

.footer_copyright {
    margin: 0;
    font-size: 14px;
    color: var(--color-muted-foreground);
}


/* ===========================================
   TABLET BREAKPOINT (991px and below)
   =========================================== */
@media screen and (max-width: 991px) {
    /* Header */
    .header_nav-wrapper {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
    }

    .header_nav-link {
        font-size: 13px;
    }

    /* Product Detail */
    .product-detail_grid {
        grid-column-gap: 32px;
    }

    .product-detail_title {
        font-size: 40px;
    }

    .product-detail_price {
        font-size: 40px;
    }

    .product-detail_description {
        font-size: 16px;
    }

    /* Related Products */
    .related-products_title {
        font-size: 30px;
    }

    .related-products_grid {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
    }

    .related-products_card {
        border-radius: 20px;
    }

    .related-products_card-title {
        font-size: 14px;
    }

    .related-products_card-price {
        font-size: 14px;
    }
}


/* ===========================================
   MOBILE LANDSCAPE (767px and below)
   =========================================== */
@media screen and (max-width: 767px) {
    /* Visibility */
    .is-desktop {
        display: none;
    }

    .is-mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    /* Header */
    .header_hamburger.is-mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .header_inner-wrapper {
        height: 64px;
    }

    .header_logo-text {
        font-size: 24px;
    }

    .header_promo-text {
        font-size: 12px;
    }

    /* Breadcrumb */
    .breadcrumb_container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .breadcrumb_nav {
        font-size: 13px;
    }

    /* Product Detail */
    .product-detail_container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .product-detail_grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-row-gap: 32px;
    }

    .product-detail_main-image-wrapper {
        border-radius: 20px;
    }

    .product-detail_thumbnails {
        grid-column-gap: 8px;
    }

    .product-detail_thumbnail {
        border-radius: 12px;
    }

    .product-detail_title {
        font-size: 32px;
    }

    .product-detail_price {
        font-size: 36px;
    }

    .product-detail_description {
        font-size: 15px;
    }

    .product-detail_quantity-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        grid-row-gap: 12px;
    }

    .product-detail_quantity {
        width: 100%;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .product-detail_add-cart-btn {
        width: 100%;
        padding: 18px 24px;
        font-size: 16px;
    }

    .product-detail_favorite-btn {
        padding: 16px 20px;
        font-size: 14px;
    }

    .product-detail_share-btn {
        width: 52px;
        height: 52px;
    }

    .product-detail_details-card {
        border-radius: 20px;
        padding: 20px;
    }

    /* Related Products */
    .related-products {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .related-products_container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .related-products_header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        grid-row-gap: 16px;
    }

    .related-products_title {
        font-size: 26px;
    }

    .related-products_grid {
        -ms-grid-columns: 1fr 12px 1fr;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 12px;
        grid-row-gap: 12px;
    }

    .related-products_card {
        border-radius: 16px;
    }

    .related-products_card-content {
        padding: 12px;
    }

    .related-products_card-title {
        font-size: 13px;
    }

    .related-products_card-price {
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .footer_grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-column-gap: 32px;
        grid-row-gap: 32px;
    }

    .footer_heading {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer_bottom-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        grid-row-gap: 16px;
        text-align: center;
    }

    .footer_logo {
        font-size: 22px;
    }
}


/* ===========================================
   MOBILE PORTRAIT (478px and below)
   =========================================== */
@media screen and (max-width: 478px) {
    /* Header */
    .header_container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header_logo-text {
        font-size: 20px;
    }

    .header_left-wrapper {
        grid-column-gap: 12px;
        grid-row-gap: 12px;
    }

    .header_right-wrapper {
        grid-column-gap: 8px;
        grid-row-gap: 8px;
    }

    a.header_icon-button {
        width: 36px;
        height: 36px;
    }

    .header_promo-text {
        font-size: 11px;
    }

    /* Mobile Menu */
    .mobile-menu_content {
        padding: 80px 20px;
    }

    .mobile-menu_search-wrapper {
        margin-bottom: 32px;
    }

    .mobile-menu_nav-link {
        font-size: 28px;
        padding: 10px 0;
    }

    .mobile-menu_bottom-link {
        font-size: 16px;
    }

    .mobile-menu_shape.is-1 {
        width: 60px;
        height: 60px;
        top: 60px;
        right: 20px;
    }

    .mobile-menu_shape.is-2 {
        width: 48px;
        height: 48px;
        bottom: 100px;
        left: 20px;
    }

    /* Product Detail */
    .product-detail_badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .product-detail_title {
        font-size: 28px;
    }

    .product-detail_rating {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        grid-row-gap: 8px;
    }

    .product-detail_star {
        width: 18px;
        height: 18px;
    }

    .product-detail_rating-text {
        font-size: 13px;
    }

    .product-detail_price {
        font-size: 32px;
    }

    .product-detail_description {
        font-size: 14px;
    }

    .product-detail_quantity-btn {
        width: 36px;
        height: 36px;
    }

    .product-detail_quantity-value {
        font-size: 18px;
        min-width: 40px;
    }

    .product-detail_add-cart-btn {
        padding: 16px 20px;
        font-size: 15px;
    }

    .product-detail_cart-icon {
        width: 18px;
        height: 18px;
    }

    .product-detail_favorite-btn {
        padding: 14px 16px;
        font-size: 13px;
    }

    .product-detail_share-btn {
        width: 48px;
        height: 48px;
    }

    .product-detail_details-card {
        padding: 16px;
    }

    .product-detail_details-title {
        font-size: 18px;
    }

    .product-detail_details-row {
        padding: 10px 0;
        font-size: 13px;
    }

    /* Related Products */
    .related-products_title {
        font-size: 22px;
    }

    .related-products_view-all {
        padding: 10px 20px;
        font-size: 13px;
    }

    .related-products_grid {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }

    .related-products_card-content {
        padding: 10px;
    }

    .related-products_card-title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .related-products_card-price {
        font-size: 12px;
    }

    .related-products_badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 10px;
    }

    /* Footer */
    .footer_container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer_heading {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer_link {
        font-size: 13px;
    }

    .footer_link-item {
        margin-bottom: 10px;
    }

    .footer_bottom {
        margin-top: 32px;
        padding-top: 24px;
    }

    .footer_logo {
        font-size: 20px;
    }

    .footer_copyright {
        font-size: 12px;
    }
}


.img-fluid {
    height: 40px;
}




/* ===== CSS VARIABLES ===== */
:root {
    --candy-red: #F9A825;
    --candy-pink: #FBC02D;
    --candy-orange: #FFC830;
    --candy-beige: #fff8e1;
    --background: #ffffff;
    --foreground: #1a1a1a;
    --muted-foreground: #6b7280;
    --border: #e5e7eb;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Fugaz One', cursive;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
}

.min-h-screen {
    min-height: 100vh;
    background: var(--background);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 8s ease-in-out infinite;
    animation-delay: 1s;
}

/* Fade-in animations */
.fade-up {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

.fade-left {
    opacity: 0;
    transform: translateX(-3rem);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.fade-right {
    opacity: 0;
    transform: translateX(3rem);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--candy-orange), var(--candy-red), var(--candy-pink));
}

.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bubble {
    position: absolute;
    border-radius: 50%;
}

.hero-bubble-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(250, 204, 21, 0.3);
}

.hero-bubble-2 {
    top: 8rem;
    right: 5rem;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
}

.hero-bubble-3 {
    bottom: 5rem;
    left: 25%;
    width: 5rem;
    height: 5rem;
    background: rgba(244, 114, 182, 0.3);
}

.hero-bubble-4 {
    bottom: 8rem;
    right: 33%;
    width: 3rem;
    height: 3rem;
    background: rgba(251, 146, 60, 0.4);
}

.hero-bubble-5 {
    top: 50%;
    left: 4rem;
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.3);
}

.hero-content {
    padding: 5rem 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-wrap: balance;
}

    .hero-title span {
        color: var(--candy-beige);
    }

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.75;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

    .hero-wave svg {
        display: block;
        width: 100%;
        height: auto;
    }

/* ===== STORY SECTION ===== */
.story {
    padding: 5rem 0;
    background: var(--background);
}

@media (min-width: 768px) {
    .story {
        padding: 8rem 0;
    }
}

.story-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.story-image-wrapper {
    position: relative;
}

.story-image {
    aspect-ratio: 4 / 3;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--candy-beige);
}

    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.story-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--candy-red);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.story-badge-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    display: block;
}

.story-badge-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.story-content .label {
    color: var(--candy-red);
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.story-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

    .story-content h2 span {
        color: var(--candy-red);
    }

.story-content p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline-line {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--candy-beige);
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .timeline-line {
        display: block;
    }
}

.timeline-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .timeline-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.timeline-item {
    position: relative;
    text-align: center;
}

.timeline-card {
    position: relative;
    z-index: 10;
    background: var(--background);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .timeline-card:hover {
        border-color: rgba(249, 168, 37, 0.5);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.timeline-year {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--candy-orange), var(--candy-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.125rem;
}

.timeline-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.timeline-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ===== VALUES SECTION ===== */
.values {
    padding: 5rem 0;
    background: var(--candy-beige);
}

@media (min-width: 768px) {
    .values {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header .label {
        color: var(--candy-red);
        font-weight: 700;
        letter-spacing: 0.2em;
        font-size: 0.875rem;
        text-transform: uppercase;
        margin-bottom: 1rem;
        display: block;
    }

    .section-header h2 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 900;
        color: var(--foreground);
        margin-bottom: 1.5rem;
        text-wrap: balance;
    }

        .section-header h2 span {
            color: var(--candy-red);
        }

    .section-header p {
        color: var(--muted-foreground);
        font-size: 1.125rem;
        max-width: 42rem;
        margin: 0 auto;
    }

.values-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: var(--background);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: box-shadow 0.5s, transform 0.5s;
}

    .value-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

        .value-card:hover .value-icon {
            transform: scale(1.1);
        }

.value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

    .value-icon svg {
        width: 2rem;
        height: 2rem;
        color: white;
    }

    .value-icon.red-pink {
        background: linear-gradient(135deg, var(--candy-red), var(--candy-pink));
    }

    .value-icon.orange-yellow {
        background: linear-gradient(135deg, var(--candy-orange), #eab308);
    }

    .value-icon.green {
        background: linear-gradient(135deg, #22c55e, #059669);
    }

    .value-icon.pink-purple {
        background: linear-gradient(135deg, var(--candy-pink), #DEAD00);
    }

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--muted-foreground);
    line-height: 1.75;
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 5rem 0;
    background: var(--background);
}

@media (min-width: 768px) {
    .team {
        padding: 8rem 0;
    }
}

.team-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-member {
    transition: transform 0.5s;
}

.team-member-image {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
}

    .team-member-image .aspect {
        aspect-ratio: 1 / 1;
        background: var(--candy-beige);
    }

    .team-member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.team-member:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(249, 168, 37, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
}

.team-member:hover .team-member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

    .social-link:hover {
        background: rgba(255, 255, 255, 0.4);
    }

    .social-link svg {
        width: 1.25rem;
        height: 1.25rem;
        color: white;
    }

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.team-member p {
    color: var(--candy-red);
    font-weight: 500;
}

/* CTA Banner */
.cta-banner {
    margin-top: 5rem;
    background: linear-gradient(90deg, var(--candy-orange), var(--candy-red), var(--candy-pink));
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 4rem;
    }
}

.cta-banner h3 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--candy-red);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 9999px;
    transition: background 0.3s;
}

    .cta-button:hover {
        background: var(--candy-beige);
    }

/* ===== DELAY UTILITIES ===== */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-450 {
    transition-delay: 450ms;
}

.delay-500 {
    transition-delay: 500ms;
}

.delay-600 {
    transition-delay: 600ms;
}

.delay-750 {
    transition-delay: 750ms;
}


/* ===========================================
   iPOS CART OVERLAY - CANDY THEME
   Targets exact iPOS class structure
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Fugaz One:wght@400;500;600;700&display=swap');

/* ===========================================
   CSS VARIABLES
   =========================================== */

:root {
    --cart-primary: #FFD54F;
    --cart-primary-dark: #E6B800;
    --cart-primary-light: #fff5f5;
    --cart-bg: #faf8f6;
    --cart-white: #ffffff;
    --cart-cream: #f5f2ef;
    --cart-text: #1a1a1a;
    --cart-text-muted: #666666;
    --cart-text-light: #999999;
    --cart-border: #e5e5e5;
    --cart-border-light: #f0f0f0;
    --cart-shadow: rgba(0, 0, 0, 0.08);
    --cart-radius: 12px;
    --cart-font: 'Fugaz One', cursive;
}

/* ===========================================
   CART OVERLAY CONTAINER
   =========================================== */

#cart,
#wishlist,
.cart-overlay-content,
.wishlist-overlay-content {
    font-family: var(--cart-font);
    background: var(--cart-white);
}

/* ===========================================
   HEADER - .title
   =========================================== */

.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: var(--cart-white);
    border-bottom: 1px solid var(--cart-border-light);
}

    .title h2 {
        margin: 0;
        font-family: var(--cart-font);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--cart-text);
    }

    /* Close button */
    .title #cross-icon2 {
        background: var(--cart-cream);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        cursor: pointer;
    }

        .title #cross-icon2:hover {
            background: var(--cart-border);
            transform: scale(1.05);
        }

    .title .cx-icon.close-cart {
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* ===========================================
   PROMOTIONS BAR
   =========================================== */

ci-promotions .ci-promotions {
    padding: 0;
}

/* ===========================================
   ITEMS CONTAINER
   =========================================== */

.items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: var(--cart-bg);
}

/* ===========================================
   INDIVIDUAL CART ITEM
   =========================================== */

.cx-item-list-row {
    margin-bottom: 12px;
}

.cx-item-list-items {
    background: var(--cart-white);
    border-radius: var(--cart-radius);
    box-shadow: 0 2px 8px var(--cart-shadow);
    border: 1px solid var(--cart-border-light);
    overflow: hidden;
}

.ci-cart-item {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px;
    padding: 16px;
    position: relative;
    align-items: flex-start;
}

/* ===========================================
   PRODUCT IMAGE
   =========================================== */

.cx-image-container {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
}

    .cx-image-container a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .cx-image-container cx-media,
    .cx-image-container .is-initialized {
        display: block;
        width: 100%;
        height: 100%;
    }

    .cx-image-container img {
        width: 90px !important;
        height: 90px !important;
        object-fit: cover;
        border-radius: 10px;
        background: var(--cart-cream);
    }

/* ===========================================
   PRODUCT INFO
   =========================================== */

.cx-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.cx-info-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Product Name */
.cx-description {
    margin-bottom: 4px;
}

.cx-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cart-text);
    line-height: 1.4;
}

    .cx-name a,
    .cx-name .cx-link {
        color: var(--cart-text);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .cx-name a:hover,
        .cx-name .cx-link:hover {
            color: var(--cart-primary);
        }

/* ===========================================
   PRODUCT PRICE
   =========================================== */

.cx-price {
    margin: 4px 0;
}

.ci-product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .ci-product-price .price {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--cart-primary);
    }

    .ci-product-price .discount-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }

        .ci-product-price .discount-row .price {
            font-size: 0.85rem;
            color: var(--cart-text-light);
            text-decoration: line-through;
            font-weight: 400;
        }

    .ci-product-price .price-discount {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--cart-primary);
    }

    .ci-product-price .discount-description {
        font-size: 0.75rem;
        color: #16a34a;
        font-weight: 600;
    }

/* ===========================================
   QUANTITY CONTROLS - CRITICAL FIX
   =========================================== */

.cx-quantity {
    margin-top: 8px;
}

.cx-value {
    display: inline-block;
}

cx-item-counter {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
    background: var(--cart-cream);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--cart-border-light);
}

/* Quantity Buttons (+/-) */
.btn-quantity {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border: none !important;
    background: transparent !important;
    color: var(--cart-text-muted);
    font-size: 1.25rem !important;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .btn-quantity:hover {
        background: var(--cart-primary) !important;
        color: #fff !important;
    }

/* Quantity Input */
cx-item-counter input,
cx-item-counter input.input-value {
    width: 48px !important;
    min-width: 48px !important;
    height: 36px !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: var(--cart-text) !important;
    background: var(--cart-white) !important;
    border: none !important;
    border-left: 1px solid var(--cart-border-light) !important;
    border-right: 1px solid var(--cart-border-light) !important;
    padding: 0 !important;
    margin: 0 !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    flex-shrink: 0;
}

    cx-item-counter input::-webkit-outer-spin-button,
    cx-item-counter input::-webkit-inner-spin-button {
        -webkit-appearance: none !important;
        margin: 0 !important;
    }

/* ===========================================
   REMOVE/DELETE BUTTON
   =========================================== */

.cx-actions {
    position: absolute;
    top: 12px;
    right: 12px;
}

.cx-remove-btn {
    display: flex;
}

    .cx-remove-btn .link,
    .cx-remove-btn .cx-action-link {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--cart-cream);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .cx-remove-btn .link:hover,
        .cx-remove-btn .cx-action-link:hover {
            background: #fee2e2;
        }

.cx-icon.trash {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cx-icon.trash svg {
        width: 20px;
        height: 20px;
    }

/* ===========================================
   CART FOOTER / TOTALS
   =========================================== */

.total {
    padding: 0;
    background: var(--cart-white);
    border-top: 1px solid var(--cart-border-light);
    box-shadow: 0 -4px 16px var(--cart-shadow);
}

ci-order-summary {
    display: block;
}

.cart-totals {
    padding: 20px 24px 24px;
}

    /* Totals Rows */
    .cart-totals .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        font-size: 0.9rem;
        color: var(--cart-text-muted);
        gap: 8px;
    }

        .cart-totals .row > span {
            flex: 0 0 auto;
        }

            .cart-totals .row > span:nth-child(odd) {
                flex: 1;
                text-align: left;
            }

            .cart-totals .row > span:nth-child(even) {
                text-align: right;
                font-weight: 600;
                color: var(--cart-text);
            }

        /* Fix: Make Subtotal and Envío on separate lines */
        .cart-totals .row:not(.total) {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 4px 16px;
        }

        .cart-totals .row .value {
            font-weight: 600;
            color: var(--cart-text);
            text-align: right;
        }

        /* Total Row */
        .cart-totals .row.total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            margin-top: 12px;
            border-top: 2px solid var(--cart-border);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--cart-text);
        }

            .cart-totals .row.total .value {
                color: var(--cart-primary);
                font-size: 1.35rem;
                font-weight: 700;
            }

/* ===========================================
   COUPON SECTION
   =========================================== */

ci-cart-coupon {
    display: block;
    margin: 12px 0;
}

.ci-cart-coupon {
    /* Style if needed */
}

/* ===========================================
   CHECKOUT BUTTON
   =========================================== */

.cart-totals .btn,
.cart-totals .btn-primary,
.cart-totals .btn-block {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    padding: 16px 24px !important;
    margin-top: 16px;
    border: none !important;
    border-radius: var(--cart-radius) !important;
    background: var(--cart-primary) !important;
    color: #fff !important;
    font-family: var(--cart-font);
    font-size: 1rem !important;
    font-weight: 700 !important;
    cursor: pointer;
    text-decoration: none !important;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 213, 79, 0.3);
    transition: all 0.25s ease;
}

    .cart-totals .btn:hover,
    .cart-totals .btn-primary:hover {
        background: var(--cart-primary-dark) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 213, 79, 0.4);
    }

    .cart-totals .btn a,
    .cart-totals .btn-primary a {
        color: #fff !important;
        text-decoration: none !important;
        font-weight: 700;
    }

/* ===========================================
   EMPTY CART STATE
   =========================================== */

.CartSidebarView_cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 32px;
    min-height: 400px;
    background: var(--cart-bg);
}

    .CartSidebarView_cart-empty .empty-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 120px;
        margin-bottom: 28px;
        background: linear-gradient(145deg, var(--cart-white) 0%, var(--cart-cream) 100%);
        border-radius: 50%;
        border: 2px dashed var(--cart-border);
        box-shadow: 0 8px 24px var(--cart-shadow);
    }

        .CartSidebarView_cart-empty .empty-icon svg {
            width: 50px;
            height: 50px;
            color: var(--cart-primary);
        }

    .CartSidebarView_cart-empty .h2 {
        font-family: var(--cart-font);
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--cart-text);
        margin: 0 0 16px 0;
    }

    .CartSidebarView_cart-empty .cart-empty-text {
        margin-bottom: 28px;
        max-width: 280px;
    }

        .CartSidebarView_cart-empty .cart-empty-text p {
            margin: 0 0 8px 0;
            font-size: 0.95rem;
            color: var(--cart-text-muted);
            line-height: 1.6;
        }

    /* Empty Cart Buttons */
    .CartSidebarView_cart-empty .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        border-radius: var(--cart-radius);
        font-family: var(--cart-font);
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.25s ease;
        text-decoration: none;
        border: none;
        margin-bottom: 12px;
    }

    .CartSidebarView_cart-empty .btn-wishlist {
        background: var(--cart-primary);
        color: #fff;
        box-shadow: 0 4px 12px rgba(255, 213, 79, 0.3);
    }

        .CartSidebarView_cart-empty .btn-wishlist:hover {
            background: var(--cart-primary-dark);
            transform: translateY(-2px);
        }

    .CartSidebarView_cart-empty .btn-continue-shopping {
        background: transparent;
        color: var(--cart-text);
        border: 2px solid var(--cart-border);
    }

        .CartSidebarView_cart-empty .btn-continue-shopping:hover {
            background: var(--cart-cream);
            border-color: var(--cart-text-light);
        }

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 480px) {
    .title {
        padding: 20px;
    }

        .title h2 {
            font-size: 1.3rem;
        }

    .items {
        padding: 12px;
    }

    .ci-cart-item {
        padding: 14px;
        gap: 12px;
    }

    .cx-image-container,
    .cx-image-container img {
        width: 80px !important;
        height: 80px !important;
    }

    .cart-totals {
        padding: 16px 20px 20px;
    }

        .cart-totals .btn,
        .cart-totals .btn-primary {
            padding: 14px 20px !important;
        }

    .CartSidebarView_cart-empty {
        padding: 48px 24px;
    }
}

/* ===========================================
   EMPTY WISHLIST STYLES
   Clean, minimal design matching Sockerbit aesthetic
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Fugaz One:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --wishlist-primary: #CCAD00;
    --wishlist-primary-dark: #B8960F;
    --wishlist-text: #1a1a1a;
    --wishlist-text-muted: #6b6b6b;
    --wishlist-text-light: #999;
    --wishlist-bg: #FFFEF5;
    --wishlist-white: #fff;
    --wishlist-cream: #FFFDE7;
    --wishlist-border: #e8e0dc;
    --wishlist-border-light: #f0e8e4;
    --wishlist-shadow: rgba(0, 0, 0, 0.06);
    --wishlist-radius: 12px;
    --wishlist-font: 'Fugaz One', cursive;
    --wishlist-font-display: 'Fugaz One', cursive;
}

/* ===========================================
   TITLE BAR
   =========================================== */

.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px 24px;
    background: var(--wishlist-white);
    border-bottom: 1px solid var(--wishlist-border-light);
}

    .title h2 {
        margin: 0;
        font-family: var(--wishlist-font-display);
        font-size: 1.65rem;
        font-weight: 700;
        color: var(--wishlist-text);
        letter-spacing: -0.02em;
    }

    /* Close button */
    .title #cross-icon2 {
        background: var(--wishlist-cream);
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        cursor: pointer;
    }

        .title #cross-icon2:hover {
            background: var(--wishlist-border);
            transform: scale(1.05);
        }

        .title #cross-icon2 svg {
            width: 18px;
            height: 18px;
        }

    .title .cx-icon.close-cart {
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* ===========================================
   EMPTY STATE CONTAINER
   =========================================== */

.CartSidebarView_cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 48px;
    min-height: 450px;
    background: var(--wishlist-bg);
}

    /* ===========================================
   EMPTY ICON
   =========================================== */

    .CartSidebarView_cart-empty .empty-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 140px;
        height: 140px;
        margin-bottom: 36px;
        background: linear-gradient(145deg, var(--wishlist-white) 0%, var(--wishlist-cream) 100%);
        border-radius: 50%;
        border: 2px dashed var(--wishlist-border);
        box-shadow: 0 8px 32px var(--wishlist-shadow), inset 0 2px 8px rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
    }

        .CartSidebarView_cart-empty .empty-icon:hover {
            transform: scale(1.03);
            border-color: var(--wishlist-primary);
        }

        .CartSidebarView_cart-empty .empty-icon .cx-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .CartSidebarView_cart-empty .empty-icon svg {
            width: 60px;
            height: 60px;
            color: var(--wishlist-primary);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .CartSidebarView_cart-empty .empty-icon:hover svg {
            opacity: 1;
            transform: scale(1.05);
        }

    /* ===========================================
   EMPTY TEXT
   =========================================== */

    .CartSidebarView_cart-empty .cart-empty-text {
        margin-bottom: 40px;
        max-width: 320px;
    }

        .CartSidebarView_cart-empty .cart-empty-text p {
            margin: 0;
            font-family: var(--wishlist-font);
            font-size: 1.05rem;
            color: var(--wishlist-text-muted);
            line-height: 1.7;
        }

    /* ===========================================
   BUTTONS
   =========================================== */

    .CartSidebarView_cart-empty .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 320px;
        padding: 18px 32px;
        border-radius: var(--wishlist-radius);
        font-family: var(--wishlist-font);
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        border: none;
    }

        .CartSidebarView_cart-empty .btn span {
            display: inline-block;
        }

    /* Continue Shopping Button */
    .CartSidebarView_cart-empty .btn-continue-shopping {
        background: var(--wishlist-primary);
        color: #fff;
        box-shadow: 0 4px 16px rgba(204, 173, 0, 0.3), 0 2px 4px rgba(204, 173, 0, 0.2);
    }

        .CartSidebarView_cart-empty .btn-continue-shopping:hover {
            background: var(--wishlist-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(204, 173, 0, 0.4), 0 4px 8px rgba(204, 173, 0, 0.25);
        }

        .CartSidebarView_cart-empty .btn-continue-shopping:active {
            transform: translateY(-1px);
        }

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 480px) {
    .title {
        padding: 20px 24px;
    }

        .title h2 {
            font-size: 1.4rem;
        }

    .CartSidebarView_cart-empty {
        padding: 60px 28px;
        min-height: 380px;
    }

        .CartSidebarView_cart-empty .empty-icon {
            width: 120px;
            height: 120px;
            margin-bottom: 28px;
        }

            .CartSidebarView_cart-empty .empty-icon svg {
                width: 50px;
                height: 50px;
            }

        .CartSidebarView_cart-empty .cart-empty-text p {
            font-size: 0.95rem;
        }

        .CartSidebarView_cart-empty .btn {
            padding: 16px 28px;
            font-size: 0.95rem;
        }
}

/* ===========================================
   EMPTY CART STYLES
   Clean, minimal design matching Sockerbit aesthetic
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Fugaz One:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --cart-primary: #CCAD00;
    --cart-primary-dark: #B8960F;
    --cart-text: #1a1a1a;
    --cart-text-muted: #6b6b6b;
    --cart-text-light: #999;
    --cart-bg: #FFFEF5;
    --cart-white: #fff;
    --cart-cream: #FFFDE7;
    --cart-border: #e8e0dc;
    --cart-border-light: #f0e8e4;
    --cart-shadow: rgba(0, 0, 0, 0.06);
    --cart-radius: 12px;
    --cart-font: 'Fugaz One', cursive;
    --cart-font-display: 'Fugaz One', cursive;
}

/* ===========================================
   TITLE BAR
   =========================================== */

.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px 24px;
    background: var(--cart-white);
    border-bottom: 1px solid var(--cart-border-light);
}

    .title h2 {
        margin: 0;
        font-family: var(--cart-font-display);
        font-size: 1.65rem;
        font-weight: 700;
        color: var(--cart-text);
        letter-spacing: -0.02em;
    }

    /* Close button */
    .title #cross-icon2 {
        background: var(--cart-cream);
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        cursor: pointer;
    }

        .title #cross-icon2:hover {
            background: var(--cart-border);
            transform: scale(1.05);
        }

        .title #cross-icon2 svg {
            width: 18px;
            height: 18px;
        }

    .title .cx-icon.close-cart {
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* ===========================================
   EMPTY STATE CONTAINER
   =========================================== */

.CartSidebarView_cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 48px;
    min-height: 450px;
    background: var(--cart-bg);
}

    /* ===========================================
   EMPTY ICON
   =========================================== */

    .CartSidebarView_cart-empty .empty-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 140px;
        height: 140px;
        margin-bottom: 36px;
        background: linear-gradient(145deg, var(--cart-white) 0%, var(--cart-cream) 100%);
        border-radius: 50%;
        border: 2px dashed var(--cart-border);
        box-shadow: 0 8px 32px var(--cart-shadow), inset 0 2px 8px rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
    }

        .CartSidebarView_cart-empty .empty-icon:hover {
            transform: scale(1.03);
            border-color: var(--cart-primary);
        }

        .CartSidebarView_cart-empty .empty-icon .cx-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .CartSidebarView_cart-empty .empty-icon svg {
            width: 60px;
            height: 60px;
            color: var(--cart-primary);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .CartSidebarView_cart-empty .empty-icon:hover svg {
            opacity: 1;
            transform: scale(1.05);
        }

    /* ===========================================
   HEADING
   =========================================== */

    .CartSidebarView_cart-empty .h2 {
        font-family: var(--cart-font-display);
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--cart-text);
        margin: 0 0 20px 0;
        letter-spacing: -0.02em;
    }

    /* ===========================================
   EMPTY TEXT
   =========================================== */

    .CartSidebarView_cart-empty .cart-empty-text {
        margin-bottom: 36px;
        max-width: 320px;
    }

        .CartSidebarView_cart-empty .cart-empty-text p {
            margin: 0 0 8px 0;
            font-family: var(--cart-font);
            font-size: 1rem;
            color: var(--cart-text-muted);
            line-height: 1.7;
        }

            .CartSidebarView_cart-empty .cart-empty-text p:last-child {
                margin-bottom: 0;
            }

    /* ===========================================
   BUTTONS
   =========================================== */

    .CartSidebarView_cart-empty .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 320px;
        padding: 18px 32px;
        border-radius: var(--cart-radius);
        font-family: var(--cart-font);
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        border: none;
    }

        .CartSidebarView_cart-empty .btn span {
            display: inline-block;
        }

    /* Wishlist Button (Primary) */
    .CartSidebarView_cart-empty .btn-wishlist {
        background: var(--cart-primary);
        color: #fff;
        margin-bottom: 16px;
        box-shadow: 0 4px 16px rgba(204, 173, 0, 0.3), 0 2px 4px rgba(204, 173, 0, 0.2);
    }

        .CartSidebarView_cart-empty .btn-wishlist:hover {
            background: var(--cart-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(204, 173, 0, 0.4), 0 4px 8px rgba(204, 173, 0, 0.25);
        }

        .CartSidebarView_cart-empty .btn-wishlist:active {
            transform: translateY(-1px);
        }

    /* Continue Shopping Button (Secondary) */
    .CartSidebarView_cart-empty .btn-continue-shopping {
        background: transparent;
        color: var(--cart-text);
        border: 2px solid var(--cart-border);
    }

        .CartSidebarView_cart-empty .btn-continue-shopping:hover {
            background: var(--cart-cream);
            border-color: var(--cart-text-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px var(--cart-shadow);
        }

        .CartSidebarView_cart-empty .btn-continue-shopping:active {
            transform: translateY(0);
        }

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 480px) {
    .title {
        padding: 20px 24px;
    }

        .title h2 {
            font-size: 1.4rem;
        }

    .CartSidebarView_cart-empty {
        padding: 60px 28px;
        min-height: 380px;
    }

        .CartSidebarView_cart-empty .empty-icon {
            width: 120px;
            height: 120px;
            margin-bottom: 28px;
        }

            .CartSidebarView_cart-empty .empty-icon svg {
                width: 50px;
                height: 50px;
            }

        .CartSidebarView_cart-empty .h2 {
            font-size: 1.4rem;
        }

        .CartSidebarView_cart-empty .cart-empty-text p {
            font-size: 0.95rem;
        }

        .CartSidebarView_cart-empty .btn {
            padding: 16px 28px;
            font-size: 0.95rem;
            max-width: 100%;
        }
}

/* ===========================================
   WISHLIST CONTAINER STYLES
   Clean, modern aesthetic matching the brand
   =========================================== */

/* CSS Variables */
:root {
    --wl-primary: #CCAD00;
    --wl-primary-dark: #B8960F;
    --wl-text: #2d2a26;
    --wl-text-muted: #6b6560;
    --wl-text-light: #9a948d;
    --wl-bg: #FFFEF5;
    --wl-white: #ffffff;
    --wl-cream: #FFFCE8;
    --wl-border: #e8e2dd;
    --wl-border-light: #f0ebe7;
    --wl-shadow: rgba(45, 42, 38, 0.06);
    --wl-shadow-md: rgba(45, 42, 38, 0.1);
    --wl-radius: 12px;
    --wl-radius-sm: 8px;
    --wl-font: 'Fugaz One', cursive;
    --wl-font-display: 'Fugaz One', cursive;
}

/* ===========================================
   TITLE BAR
   =========================================== */

.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px 24px;
    background: var(--wl-white);
    border-bottom: 1px solid var(--wl-border-light);
    position: sticky;
    top: 0;
    z-index: 10;
}

    .title h2 {
        margin: 0;
        font-family: var(--wl-font-display);
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--wl-text);
        letter-spacing: -0.02em;
    }

    /* Close button */
    .title #cross-icon2 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--wl-cream);
        border-radius: 50%;
        transition: all 0.2s ease;
    }

        .title #cross-icon2:hover {
            background: var(--wl-border);
            transform: scale(1.05);
        }

        .title #cross-icon2:active {
            transform: scale(0.95);
        }

    .title .cx-icon.close-cart {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .title #cross-icon2 svg {
        width: 16px;
        height: 16px;
        transition: transform 0.2s ease;
    }

    .title #cross-icon2:hover svg {
        transform: rotate(90deg);
    }

/* ===========================================
   PROMOTIONS
   =========================================== */

ci-promotions,
.ci-promotions {
    display: block;
}

    .ci-promotions ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .ci-promotions ul:empty {
            display: none;
        }

    .ci-promotions li {
        padding: 12px 32px;
        background: linear-gradient(135deg, #FFF8E1 0%, #ffeef4 100%);
        border-bottom: 1px solid var(--wl-border-light);
        font-family: var(--wl-font);
        font-size: 0.875rem;
        color: var(--wl-primary);
        font-weight: 500;
    }

/* ===========================================
   ITEMS CONTAINER
   =========================================== */

.items {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 32px;
    background: var(--wl-bg);
}

    /* Custom scrollbar */
    .items::-webkit-scrollbar {
        width: 6px;
    }

    .items::-webkit-scrollbar-track {
        background: transparent;
    }

    .items::-webkit-scrollbar-thumb {
        background: var(--wl-border);
        border-radius: 3px;
    }

        .items::-webkit-scrollbar-thumb:hover {
            background: var(--wl-text-light);
        }

/* Item list wrapper */
ci-cart-item-list {
    display: block;
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 600px) {
    .title {
        padding: 20px 20px 18px;
    }

        .title h2 {
            font-size: 1.5rem;
        }

        .title #cross-icon2 {
            width: 40px;
            height: 40px;
        }

    .items {
        padding: 20px;
    }
}

/* ===========================================
   WISHLIST ITEM STYLES
   Individual item component styling
   =========================================== */

/* CSS Variables */
:root {
    --wli-primary: #CCAD00;
    --wli-primary-dark: #B8960F;
    --wli-text: #2d2a26;
    --wli-text-muted: #6b6560;
    --wli-text-light: #9a948d;
    --wli-bg: #FFFEF5;
    --wli-white: #ffffff;
    --wli-cream: #FFFCE8;
    --wli-border: #e8e2dd;
    --wli-border-light: #f0ebe7;
    --wli-shadow: rgba(45, 42, 38, 0.06);
    --wli-shadow-md: rgba(45, 42, 38, 0.1);
    --wli-radius: 12px;
    --wli-radius-sm: 8px;
    --wli-font: 'Fugaz One', cursive;
    --wli-font-display: 'Fugaz One', cursive;
}

/* ===========================================
   ITEM ROW WRAPPER
   =========================================== */

.cx-item-list-row {
    margin-bottom: 16px;
}

    .cx-item-list-row:last-child {
        margin-bottom: 0;
    }

.cx-item-list-items {
    display: block;
}

/* ===========================================
   CART ITEM CARD
   =========================================== */

ci-cart-item {
    display: block;
}

.ci-cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 44px;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background: var(--wli-white);
    border-radius: var(--wli-radius);
    border: 1px solid var(--wli-border-light);
    box-shadow: 0 2px 8px var(--wli-shadow);
    transition: all 0.25s ease;
}

    .ci-cart-item:hover {
        border-color: var(--wli-border);
        box-shadow: 0 4px 16px var(--wli-shadow-md);
        transform: translateY(-2px);
    }

/* ===========================================
   IMAGE CONTAINER
   =========================================== */

.cx-image-container {
    width: 100px;
    height: 100px;
    border-radius: var(--wli-radius-sm);
    overflow: hidden;
    background: var(--wli-cream);
    flex-shrink: 0;
}

    .cx-image-container a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .cx-image-container cx-media {
        display: block;
        width: 100%;
        height: 100%;
    }

    .cx-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.ci-cart-item:hover .cx-image-container img {
    transform: scale(1.05);
}

/* ===========================================
   INFO SECTION
   =========================================== */

.cx-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.cx-info-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ===========================================
   DESCRIPTION BLOCK
   =========================================== */

.cx-description {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Product name */
.cx-name {
    font-family: var(--wli-font);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--wli-text);
    line-height: 1.4;
}

    .cx-name a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .cx-name a:hover {
            color: var(--wli-primary);
        }

    .cx-name div {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 8px;
    }

    .cx-name strong {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--wli-text-light);
        background: var(--wli-cream);
        padding: 2px 8px;
        border-radius: 4px;
    }

/* ===========================================
   PRICE
   =========================================== */

.cx-price {
    margin-top: 4px;
}

ci-product-price,
.ci-product-price {
    display: block;
}

    .ci-product-price .price {
        font-family: var(--wli-font);
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--wli-primary);
        letter-spacing: -0.01em;
    }

/* ===========================================
   MOVE TO CART BUTTON
   =========================================== */

.btn-primary-wishlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    margin-top: 8px;
    background: var(--wli-primary);
    color: #fff;
    border: none;
    border-radius: var(--wli-radius-sm);
    font-family: var(--wli-font);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(204, 173, 0, 0.2);
}

    .btn-primary-wishlist:hover {
        background: var(--wli-primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(204, 173, 0, 0.3);
    }

    .btn-primary-wishlist:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(204, 173, 0, 0.2);
    }

/* ===========================================
   PROMOTIONS (inside item)
   =========================================== */

.cx-info ci-promotions,
.cx-info .ci-promotions {
    margin-top: 8px;
}

    .cx-info .ci-promotions ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .cx-info .ci-promotions ul:empty {
            display: none;
        }

    .cx-info .ci-promotions li {
        font-size: 0.8rem;
        color: var(--wli-primary);
        font-weight: 500;
        padding: 6px 10px;
        background: #FFF8E1;
        border-radius: 6px;
        display: inline-block;
    }

/* ===========================================
   ACTIONS (REMOVE BUTTON)
   =========================================== */

.cx-actions {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.cx-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cx-remove-btn .link,
    .cx-remove-btn .cx-action-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: transparent;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .cx-remove-btn .link:hover,
        .cx-remove-btn .cx-action-link:hover {
            background: #fef2f2;
        }

    .cx-remove-btn .cx-icon.trash {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cx-remove-btn svg {
        width: 24px;
        height: 24px;
        transition: transform 0.2s ease;
    }

    .cx-remove-btn .link:hover svg,
    .cx-remove-btn .cx-action-link:hover svg {
        transform: scale(1.1);
    }

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 500px) {
    .ci-cart-item {
        grid-template-columns: 80px 1fr 40px;
        gap: 14px;
        padding: 16px;
    }

    .cx-image-container {
        width: 80px;
        height: 80px;
    }

    .cx-name {
        font-size: 0.9rem;
    }

    .ci-product-price .price {
        font-size: 1rem;
    }

    .btn-primary-wishlist {
        padding: 10px 16px;
        font-size: 0.8rem;
        width: 100%;
    }

    .cx-remove-btn .link,
    .cx-remove-btn .cx-action-link {
        width: 40px;
        height: 40px;
    }

    .cx-remove-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ===========================================
   VARIANT SELECTORS - Refined
   =========================================== */

#etiqueta_producto {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-candy-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.variant-selector-wrapper {
    padding-top: 10px;
    padding-bottom: 15px;
}

    .variant-selector-wrapper select {
        width: 100%;
        max-width: 240px;
        padding: 10px 36px 10px 14px;
        font-family: var(--font-display);
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--color-foreground);
        background-color: #fff;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F9A825' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        border: 1.5px solid var(--color-border);
        border-radius: var(--radius-full);
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
        transition: all var(--transition-fast);
        box-shadow: var(--shadow-xs);
    }

        .variant-selector-wrapper select:hover {
            border-color: var(--color-candy-orange);
            box-shadow: var(--shadow-sm);
        }

        .variant-selector-wrapper select:focus {
            outline: none;
            border-color: var(--color-candy-red);
            box-shadow: 0 0 0 3px var(--color-candy-red-light);
        }

        .variant-selector-wrapper select:disabled {
            background-color: #fafafa;
            color: var(--color-muted-light);
            border-color: var(--color-border);
            cursor: not-allowed;
            opacity: 0.6;
            box-shadow: none;
        }

        .variant-selector-wrapper select option[value="-1"] {
            color: var(--color-muted-light);
        }
