
      /* popular category  */
.category-slider-wrapper {
    overflow: hidden;
    width: 100%;
    background: #f9f9f9;
    padding: 20px 0;
}

.category-slider {
    display: flex;
    width: calc(200%); /* double width because we duplicate items */
    animation: scroll-right 20s linear infinite;
}
.category-item {
    flex: 0 0 auto;
    width: 180px; /* adjust width */
    margin-right: 20px;
    text-align: center;
}
@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.category-slider-wrapper:hover .category-slider {
    animation-play-state: paused;
}


      /* Custom Styles */
        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .hide-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .masonry-grid {
            column-count: 2;
            column-gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .masonry-grid {
                column-count: 3;
            }
        }
        @media (min-width: 1024px) {
            .masonry-grid {
                column-count: 4;
            }
        }
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 1.5rem;
        }
        
        /* Custom Form Inputs */
        .radio-card-input:checked + .radio-card {
            border-color: #FF007F;
            background-color: #FFF0F7;
            color: #FF007F;
            box-shadow: 0 4px 12px rgba(255, 0, 127, 0.15);
        }
        .radio-card-input:checked + .radio-card .check-icon {
            opacity: 1;
            transform: scale(1);
        }

        /* Cart Drawer Animation */
        .cart-drawer {
            transition: transform 0.5s ease-in-out;
            transform: translateX(100%);
        }
        .cart-drawer.open {
            transform: translateX(0);
        }

        /* Hero Overlay Gradient */
        .hero-overlay {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
        }

        /* Animation classes */
        .fade-in { animation: fadeIn 0.5s ease-out forwards; }
        .slide-up { animation: slideUp 0.5s ease-out forwards; }
        .pulse-badge { animation: pulseBadge 2s infinite; }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes pulseBadge {
            0% { box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7); }
            70% { box-shadow: 0 0 0 6px rgba(255, 0, 127, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 0, 127, 0); }
        }
    /* popular category slomo */

#autoSlider {
    animation: scrollSlide 25s linear infinite;
}

#autoSlider:hover {
    animation-play-state: paused;
}

@keyframes scrollSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* No scrollbar */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}


.adm-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 24px;
}

/* shared action button shell */
.adm-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 14px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    color: #444;
    transition: background 0.15s, color 0.15s;
    position: relative;
}

    .adm-action-btn:hover {
        background: #fdf2f8;
        color: #EC008C;
    }

    .adm-action-btn i {
        font-size: 20px;
        line-height: 1;
    }

.adm-action-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: inherit;
    line-height: 1;
}

/* Cart badge */
.adm-cart-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #EC008C;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    line-height: 1;
}

/* Divider between actions */
.adm-action-divider {
    width: 1px;
    height: 32px;
    background: #efefef;
    flex-shrink: 0;
    margin: 0 2px;
}

/* Mobile toggle */
.adm-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    font-size: 18px;
    color: #475569;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    margin-left: 8px;
}

    .adm-mobile-toggle:hover {
        background: #fdf2f8;
        color: #EC008C;
    }

@media (max-width: 900px) {
    .adm-action-btn.adm-help {
        display: none;
    }

    .adm-action-divider {
        display: none;
    }

    .adm-mobile-toggle {
        display: flex;
    }
}

/* ── TOP-RIGHT ACTIONS ── */
.adm-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.adm-help {
    text-align: center;
}

.adm-help-link {
    color: #555;
    font-size: 22px;
    display: block;
    transition: color .15s;
}

    .adm-help-link:hover {
        color: #EC008C;
    }

.adm-cart {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    padding: 4px;
    transition: color .15s;
}

    .adm-cart:hover {
        color: #EC008C;
    }

.adm-cart-badge {
    position: absolute;
    top: -7px;
    right: -6px;
    background: #EC008C;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adm-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: #333;
    padding: 4px;
}

.adm-help-label, span.adm-cart-label {
    font-size: 11px;
    color: #999;
    display: block;
    margin-bottom: 3px;
}

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ── TOPBAR ── */
.adm-topbar {
    background: #fff;
    padding: 25px;
    display: flex;
    align-items: center;
}

/* ── LOGO ── */
.adm-logo {
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.adm-logo-wordmark {
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.adm-logo-text {
    font-size: 30px;
    font-weight: 900;
    color: #222;
    letter-spacing: -1px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.adm-logo-triangle {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 30px solid #EC008C;
    margin: 0 1px -2px;
}

.adm-logo-sub {
    font-size: 8px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
    margin-top: 2px;
}

/* ── SEARCH ── */
.adm-search-wrap {
    flex: 1;
    display: flex;
    max-width: 1080px;
    margin: 0 auto;
}

.adm-search-input {
    flex: 1;
    border: 2px solid #EC008C;
    border-right: none;
    border-radius: 50px 0 0 50px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    outline: none;
    background: #fff;
    transition: box-shadow .2s;
}

    .adm-search-input:focus {
        box-shadow: 0 0 0 4px rgba(236,0,140,.08);
    }

    .adm-search-input::placeholder {
        color: #aaa;
        font-weight: 400;
    }

.adm-search-btn {
    background: #EC008C;
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 12px 36px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}

    .adm-search-btn:hover {
        background: #c2006b;
    }

.fa.fa-headphones {
    font-size: 29px !important;
}

.fas.fa-shopping-cart {
    font-size: 24px !important;
}

/* ── SEARCH DROPDOWN ── */
.adm-search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    z-index: 999;
    overflow: hidden;
    display: none;
    animation: admDropIn .18s ease;
}

    .adm-search-dropdown.open {
        display: block;
    }

@keyframes admDropIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.adm-dd-section {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #94a3b8;
    padding: 12px 16px 6px;
    border-bottom: 1px solid #f8fafc;
}

.adm-dd-category {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    transition: background .12s;
    cursor: pointer;
}

    .adm-dd-category:hover {
        background: #fdf2f8;
    }

.adm-dd-cat-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #fdf2f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adm-dd-cat-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

.adm-dd-cat-arrow {
    margin-left: auto;
    color: #EC008C;
    font-size: 11px;
}

.adm-dd-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    transition: background .12s;
}

    .adm-dd-product:hover {
        background: #f8fafc;
    }

.adm-dd-prod-thumb {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .adm-dd-prod-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.adm-dd-prod-name {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

.adm-dd-prod-price {
    font-size: 11px;
    font-weight: 800;
    color: #EC008C;
    margin-top: 1px;
}

.adm-dd-badge {
    margin-left: auto;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 2px 8px;
    border-radius: 50px;
    background: #fdf2f8;
    color: #EC008C;
    flex-shrink: 0;
}

.adm-dd-loading, .adm-dd-empty {
    padding: 20px 16px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
}

.adm-dd-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #f1f5f9;
    border-top-color: #EC008C;
    border-radius: 50%;
    animation: admSpin .6s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes admSpin {
    to {
        transform: rotate(360deg);
    }
}

.adm-dd-footer {
    border-top: 1px solid #f1f5f9;
    padding: 10px 16px;
    text-align: center;
}

    .adm-dd-footer a {
        font-size: 12px;
        font-weight: 800;
        color: #EC008C;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

        .adm-dd-footer a:hover {
            text-decoration: underline;
        }

.adm-dd-highlight {
    color: #EC008C;
    font-weight: 900;
}

/* ── NAV BAR ── */
.adm-navrow {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
}

.adm-navrow-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

/* ── NAV ITEM ── */
.adm-nav-item {
    position: static;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .adm-nav-item:not(:last-child) {
        /* border-right: 1px solid #efefef; */
    }

.adm-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: #2d2d2d;
    text-align: center;
    line-height: 1.6;
    width: 100%;
    transition: color .15s;
    font-family: inherit;
    white-space: normal;
}

    .adm-nav-btn:hover {
        color: #EC008C;
    }

.adm-nav-item.adm-active .adm-nav-btn {
    color: #EC008C;
}

/* ── MEGA PANEL ── */
.adm-mega-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-top: 3px solid #EC008C;
    box-shadow: 0 20px 60px rgba(0,0,0,.13);
    z-index: 500;
    animation: admMegaIn .18s ease;
}

.adm-nav-item:hover .adm-mega-panel {
    display: block;
}

@keyframes admMegaIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.adm-mega-inner {
    margin: 0 auto;
    padding: 25px 25px 10px;
    display: flex;
    gap: 0;
}

/* ── MEGA COLUMNS ── */
.adm-mega-col {
    flex: 1;
    padding: 0 28px 0 0;
    margin-right: 28px;
}

    .adm-mega-col:last-of-type {
        border-right: none;
        margin-right: 0;
    }

.adm-col-heading {
    font-size: 10.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #EC008C;
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 2px solid #fdf2f8;
    white-space: nowrap;
}

    .adm-col-heading a {
        color: inherit;
        text-decoration: none;
        transition: opacity .15s;
    }

        .adm-col-heading a:hover {
            opacity: .75;
        }

.adm-col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .adm-col-links li a {
        font-size: 13px;
        color: #475569;
        text-decoration: none;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 1px 0;
        transition: all .15s;
    }

        .adm-col-links li a::before {
            content: '';
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #cbd5e1;
            flex-shrink: 0;
            transition: background .15s;
        }

        .adm-col-links li a:hover {
            color: #EC008C;
            padding-left: 4px;
        }

            .adm-col-links li a:hover::before {
                background: #EC008C;
            }

/* ── QUICK LINKS COLUMN ── */
.adm-quick-col {
    flex: 0 0 400px;
    padding: 0 0 0 30px;
}

/* ── PROMO CARD ── */
.adm-promo {
    flex-shrink: 0;
    width: 200px;
    background: #fdf2f8;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: flex-start;
    margin-left: 16px;
}

.adm-promo-tag {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #EC008C;
}

.adm-promo-title {
    font-size: 15px;
    font-weight: 900;
    color: #111;
    line-height: 1.25;
}

.adm-promo-desc {
    font-size: 11.5px;
    color: #666;
    line-height: 1.5;
}

.adm-promo-btn {
    margin-top: 4px;
    background: #EC008C;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    transition: background .15s;
    font-family: inherit;
}

    .adm-promo-btn:hover {
        background: #c2006b;
    }

/* ── MOBILE MENU ── */
.adm-mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 16px 24px 28px;
}

    .adm-mobile-menu.open {
        display: block;
    }

.adm-mob-section-title {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #94a3b8;
    padding: 12px 0 6px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 6px;
}

.adm-mob-link {
    display: block;
    padding: 9px 0;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc;
    transition: color .15s;
}

    .adm-mob-link:hover {
        color: #EC008C;
    }

.adm-mob-sub {
    display: block;
    padding: 7px 0 7px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc;
    transition: color .15s;
}

    .adm-mob-sub:hover {
        color: #EC008C;
    }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .adm-search-wrap {
        max-width: none;
    }

    .adm-help {
        display: none;
    }

    .adm-navrow {
        display: none;
    }

    .adm-mobile-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .adm-topbar {
        padding: 12px 16px;
        gap: 12px;
    }

    .adm-search-btn {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* Track Order */

.track-bg {
    background: linear-gradient(135deg,#f8fafc 0%,#f0f9ff 50%,#fdf4ff 100%);
}

@@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-1 {
    animation: fadeUp 0.4s ease 0.05s both;
}

.anim-2 {
    animation: fadeUp 0.4s ease 0.15s both;
}

.anim-3 {
    animation: fadeUp 0.4s ease 0.25s both;
}

.anim-4 {
    animation: fadeUp 0.4s ease 0.35s both;
}

/* Progress bar */
.progress-track {
    position: relative;
    height: 4px;
    background: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 24px;
}

.progress-fill {
    position: absolute;
    inset-y: 0;
    left: 0;
    background: linear-gradient(90deg,#6366f1,#e91e63);
    border-radius: 99px;
    transition: width 0.8s ease;
}

/* Step dots row */
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.step-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 1;
    position: relative;
    transition: all 0.3s;
}

    .step-dot.done {
        background: #10b981;
        color: #fff;
        box-shadow: 0 4px 12px rgba(16,185,129,0.3);
    }

    .step-dot.active {
        background: #e91e63;
        color: #fff;
        box-shadow: 0 4px 16px rgba(233,30,99,0.35);
    }

    .step-dot.future {
        background: #f1f5f9;
        color: #cbd5e1;
    }

/* Connector line between dots */
.step-col::before {
    content: '';
    position: absolute;
    top: 18px;
    left: calc(-50%);
    width: 100%;
    height: 3px;
    background: #f1f5f9;
    z-index: 0;
}

.step-col:first-child::before {
    display: none;
}

.step-col.done::before {
    background: linear-gradient(90deg,#10b981,#10b981);
}

.step-col.active::before {
    background: linear-gradient(90deg,#10b981,#e91e63);
}

.step-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
    line-height: 1.3;
}

    .step-label.done {
        color: #059669;
    }

    .step-label.active {
        color: #e91e63;
    }

    .step-label.future {
        color: #cbd5e1;
    }

/* Timeline */
.timeline-line {
    position: absolute;
    left: 17px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #f1f5f9;
}

.timeline-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 28px;
}

    .timeline-item:last-child {
        padding-bottom: 0;
    }

.tl-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    position: relative;
    z-index: 1;
}

    .tl-dot.done {
        background: #ecfdf5;
        color: #059669;
        border: 2px solid #d1fae5;
    }

    .tl-dot.active {
        background: #e91e63;
        color: #fff;
        box-shadow: 0 4px 14px rgba(233,30,99,0.3);
    }

    .tl-dot.future {
        background: #f9fafb;
        color: #e2e8f0;
        border: 2px solid #f1f5f9;
    }

.tl-content {
    flex: 1;
    padding-top: 6px;
}

/* Summary card */
.item-thumb {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
    transition: background 0.15s, transform 0.15s;
    text-decoration: none;
}

    .btn-whatsapp:hover {
        background: #22c55e;
        transform: translateY(-1px);
    }

.badge-step {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── Image gallery ───────────────────────────────────── */
#mainImage {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: opacity 0.2s;
}

.thumb-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s;
}

    .thumb-item:hover {
        border-color: #e91e63;
        transform: scale(1.04);
    }

    .thumb-item.active {
        border-color: #e91e63;
    }

    .thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ── Tabs ────────────────────────────────────────────── */
.tab-btn {
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    border-bottom: 2px solid transparent;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

    .tab-btn.active {
        color: #0f172a;
        border-bottom-color: #ff007f;
    }

    .tab-btn:hover:not(.active) {
        color: #475569;
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

    .faq-item summary {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        cursor: pointer;
        background: #fff;
        font-size: 14px;
        font-weight: 700;
        color: #0f172a;
        transition: background 0.12s;
    }

        .faq-item summary:hover {
            background: #f8fafc;
        }

    .faq-item[open] summary {
        border-bottom: 1px solid #f1f5f9;
    }

        .faq-item[open] summary .faq-chevron {
            transform: rotate(180deg);
        }

.faq-chevron {
    transition: transform 0.25s;
    color: #94a3b8;
    flex-shrink: 0;
}

.faq-body {
    padding: 16px 20px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    background: #fafbfc;
}

/* ── Option selects ──────────────────────────────────── */
.opt-select {
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

    .opt-select:focus {
        border-color: #e91e63;
        box-shadow: 0 0 0 3px rgba(233,30,99,0.08);
    }

/* ── Qty stepper ─────────────────────────────────────── */
.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    font-size: 18px;
    font-weight: 800;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    flex-shrink: 0;
}

    .qty-btn:hover {
        background: #e91e63;
        border-color: #e91e63;
        color: #fff;
    }

/* ── Upload box ──────────────────────────────────────── */
.upload-box {
    border: 2px dashed #e2e8f0;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    background: #f8fafc;
    transition: border-color 0.2s, background 0.2s;
}

    .upload-box:hover {
        border-color: #e91e63;
        background: #fff8fc;
    }

    .upload-box.has-file {
        border-color: #10b981;
        background: #f0fdf4;
    }

/* ── Design brief card ───────────────────────────────── */
.design-card-wrap {
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

    .design-card-wrap:hover {
        border-color: #e91e63;
        box-shadow: 0 4px 20px rgba(233,30,99,0.08);
    }

    .design-card-wrap.checked {
        border-color: #e91e63;
    }

.design-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
}

    .design-check.on {
        border-color: #e91e63;
        background: #e91e63;
    }

        .design-check.on i {
            opacity: 1;
        }

    .design-check i {
        font-size: 9px;
        color: #fff;
        opacity: 0;
    }

/* ── Add to cart btn ─────────────────────────────────── */
.btn-cart {
    width: 100%;
    padding: 17px;
    border-radius: 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 28px rgba(233,30,99,0.25);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn-cart:hover {
        background: #c2185b;
        transform: translateY(-1px);
        box-shadow: 0 12px 32px rgba(233,30,99,0.3);
    }

    .btn-cart:active {
        transform: translateY(0);
    }

/* ── Price display ───────────────────────────────────── */
.price-badge {
    background: linear-gradient(135deg,#fff0f6,#fdf4ff);
    border: 1px solid #fce7f3;
    border-radius: 16px;
    padding: 16px 20px;
}

/* ── Sticky sidebar ──────────────────────────────────── */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

/* ── Slider ──────────────────────────────────────────── */
.slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #64748b;
    transition: all 0.15s;
}

    .slider-btn:hover {
        background: #e91e63;
        border-color: #e91e63;
        color: #fff;
    }

/* ── Template download ───────────────────────────────── */
.dl-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 1.5px solid #f1f5f9;
    border-radius: 14px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.15s, background 0.15s;
}

    .dl-btn:hover {
        border-color: #e91e63;
        background: #fff8fc;
    }

/* ── Related product card ────────────────────────────── */
.related-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f1f5f9;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .related-card:hover {
        box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        transform: translateY(-3px);
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim {
    animation: fadeUp 0.4s ease both;
}

/* Drawer shell */
#cartDrawer {
    background: #f8fafc;
    box-shadow: -20px 0 60px rgba(0,0,0,0.12);
}

/* Item card */
.cart-item-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 14px;
    transition: box-shadow 0.15s;
}

    .cart-item-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    }

/* Qty button */
.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

    .qty-btn:hover {
        background: #ff007f;
        border-color: #ff007f;
        color: #fff;
    }

/* Remove btn */
.remove-btn {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #fef2f2;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f87171;
    cursor: pointer;
    transition: background 0.15s;
}

    .remove-btn:hover {
        background: #fee2e2;
        color: #ef4444;
    }

/* Checkout btn */
.checkout-btn {
    display: block;
    width: 100%;
    background: #ff007f;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.03em;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(233,30,99,0.25);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

    .checkout-btn:hover {
        background: #c2185b;
        transform: translateY(-1px);
        box-shadow: 0 12px 28px rgba(233,30,99,0.3);
    }

/* Empty state */
#cartEmpty {
    display: none;
}

    #cartEmpty.show {
        display: flex;
    }

/* Scrollbar */
#cartItems::-webkit-scrollbar {
    width: 4px;
}

#cartItems::-webkit-scrollbar-track {
    background: transparent;
}

#cartItems::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 99px;
}

/* Open state */
#cartDrawer.open {
    transform: translateX(0);
}

#cartOverlay.open {
    opacity: 1;
}

.cart-bg {
    background: linear-gradient(135deg,#f8fafc 0%,#f0f9ff 100%);
}

/* Item card */
.cart-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 20px;
    transition: box-shadow 0.18s;
}

    .cart-card:hover {
        box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    }

/* Qty buttons */
.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    font-size: 16px;
    font-weight: 800;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    flex-shrink: 0;
}

    .qty-btn:hover {
        background: #ff007f;
        border-color: #ff007f;
        color: #fff;
    }

/* Remove btn */
.remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fef2f2;
    color: red;
    border: none;
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}

    .remove-btn:hover {
        background: #fee2e2;
        color: #ef4444;
    }

/* Edit btn */
.edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #eff6ff;
    color: #3b82f6;
    border: none;
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}

    .edit-btn:hover {
        background: #dbeafe;
    }

/* Summary card */
.summary-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

/* Checkout btn */
.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #ff007f;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.03em;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(233,30,99,0.22);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

    .checkout-btn:hover {
        background: #c2185b;
        transform: translateY(-1px);
        box-shadow: 0 12px 28px rgba(233,30,99,0.28);
    }

.opt-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

/* Edit Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.5);
    backdrop-filter: blur(4px);
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

    .modal-overlay.open {
        display: flex;
    }

.modal-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
    animation: popIn 0.2s ease;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(8px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.15s;
}

    .modal-input:focus {
        border-color: #ff007f;
    }

.modal-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9ca3af;
    margin-bottom: 8px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-card {
    animation: fadeUp 0.3s ease both;
}

    .cart-card:nth-child(2) {
        animation-delay: 0.05s;
    }

    .cart-card:nth-child(3) {
        animation-delay: 0.10s;
    }

    .cart-card:nth-child(4) {
        animation-delay: 0.15s;
    }