/* Logo: fixed height, width auto */
.site-logo {
    height: 36px;
    width: auto;
    transform: translateY(3px);
}

/* Shop badge: Bestseller */
.badge-product-flash.on-bestseller {
    background-color: #3b855e;
    color: #fff;
    --bs-badge-font-size: 13px;
    --bs-badge-padding-x: 9px;
    --bs-badge-padding-y: 7px;
    font-weight: 500;
    min-width: auto;
}

/* Mobile/tablet header badge: pull left so it sits closer to the icon */
@media (max-width: 1199.98px) {
    #fav-badge-mobile,
    #cart-badge-mobile {
        left: 26px !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* ── Wishlist inline hint ── */
.wishlist-hint {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%) translateY(0);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 99999;
}
.wishlist-hint.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-100%);
}
.wishlist-hint svg {
    flex-shrink: 0;
}

/* ── Toast notifications ── */
#toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}
.site-toast {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    font-size: 14px;
    font-weight: 500;
    color: #222;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: auto;
}
.site-toast.show {
    opacity: 1;
    transform: translateY(0);
}
.site-toast.hide {
    opacity: 0;
    transform: translateY(-12px);
}
.site-toast svg {
    flex-shrink: 0;
}

/* ── Favourites dropdown (desktop) ── */
.fav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 1000;
    margin-top: 8px;
    overflow: hidden;
}
.fav-dropdown-caret {
    position: absolute;
    top: -6px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0,0,0,0.04);
}
.fav-dropdown-body {
    padding: 12px;
    max-height: 320px;
    overflow-y: auto;
}
.fav-dropdown-empty {
    text-align: center;
    color: #999;
    padding: 24px 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.fav-dropdown-empty p {
    font-size: 14px;
    margin: 0;
    color: #888;
}
.fav-dropdown-browse {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.fav-dropdown-browse:hover { color: #000; }
.fav-dropdown-header-row {
    font-size: 12px;
    color: #999;
    padding: 0 4px 8px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 8px;
}
.fav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 6px 4px;
    border-radius: 8px;
    transition: background 0.15s;
    position: relative;
}
.fav-dropdown-item:hover { background: #f7f7f7; }
.fav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
}
.fav-dropdown-item img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.fav-dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.fav-dropdown-name {
    font-size: 13px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fav-dropdown-price {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}
.fav-dropdown-remove {
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    color: #bbb;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
    flex-shrink: 0;
}
.fav-dropdown-remove:hover {
    color: #e53935;
    background: #fef0f0;
}
.fav-dropdown-footer {
    display: block;
    text-align: center;
    padding: 9px 0;
    margin: 8px 12px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #222;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.fav-dropdown-footer:hover { background: #000; color: #fff; }

/* ── Cart dropdown extras ── */
.fav-dropdown-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-dropdown-total {
    font-size: 13px;
    font-weight: 700;
    color: #222;
}
.cart-dropdown-size {
    font-size: 11px;
    color: #999;
}
.cart-dropdown-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 8px;
}
.cart-qty-btn {
    background: none;
    border: none;
    width: 26px;
    height: 26px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.cart-qty-btn:hover { background: #f0f0f0; }
.cart-qty-val {
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    color: #222;
}

/* Sticky header fix: prevent right-side clipping on fixed position */
.sticky-area-wrap.sticky > .sticky-area {
    left: 0;
    right: 0;
    width: auto;
}

/* Sticky header: nudge mobile header content down for vertical balance */
@media (max-width: 1199.98px) {
    .sticky-area-wrap.sticky .main-header {
        padding-top: 8px !important;
        padding-bottom: 2px !important;
    }
}

/* PonderGift - Shared Styles (loaded after theme.css to override Bootstrap) */
:root {
    --promo-section-max-width: 1180px;
    --promo-section-padding-top: 15px;
    --promo-section-padding-sides: 0;
    --promo-section-padding-bottom: 30px;
    --promo-cards-gap: 20px;
    --promo-card-image-height: 130px;
    --promo-card-content-padding: 15px; 
    --promo-cards-columns: 3;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    padding: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.hero {
    display: flex; align-items: center; padding: 0; width: 1180px; height: 410px;
    margin: 0 auto; gap: 30px; box-sizing: border-box; position: relative;
}
.hero-content { 
    flex: 1; padding-left: 40px; position: relative; z-index: 2;
    padding: 80px;
    text-align: left;
}
.hero-content h1 { font-size: 42px; font-weight: 700; line-height: 1.15; margin-bottom: 15px; color: #000; letter-spacing: -0.02em; }
.hero-content h1 .line2 { display: block; font-size: 45px; }
.hero-content p { font-size: 15px; color: #555; margin-bottom: 0; line-height: 1.6; }
.hero-content p .desc-line1 { display: block; }
.hero-content p .desc-line2 { display: block; }
.hero-content .price { font-size: 16px; font-weight: 600; color: #333; margin-top: 12px; }
.hero-image { 
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.hero-img-mobile { display: none; }
.hero-img-desktop { display: block; }
.mobile-br { display: none; }
.promo-section {
    padding: var(--promo-section-padding-top) var(--promo-section-padding-sides) var(--promo-section-padding-bottom);
    max-width: var(--promo-section-max-width); height: 345px; margin: 0 auto;
    display: flex; flex-direction: column; box-sizing: border-box;
}
.promo-cards {
    display: grid; grid-template-columns: repeat(var(--promo-cards-columns), 1fr);
    gap: var(--promo-cards-gap); align-items: stretch; height: 100%;
}
.promo-card {
    background-color: #fff; border-radius: 0; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%; display: flex; flex-direction: column; border: 1px solid #eee;
    position: relative;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.promo-card-image {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.promo-card-image img { width: 100%; height: 100%; object-fit: cover; }
.promo-card-content { 
    padding: var(--promo-card-content-padding); 
    position: relative; z-index: 2; 
    margin-bottom: auto;
    padding: 10px 15px;
}
.promo-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 5px; color: #000; }
.promo-card .subtitle { font-size: 14px; color: #555; margin-bottom: 12px; }
.promo-card .cta { color: #000; text-decoration: none; font-weight: 600; font-size: 14px; display: inline-block; }
.promo-card .cta:hover { text-decoration: underline; }
.promo-card .cta::after { content: ' \2192'; }
.promo-card-cta {
    position: absolute;
    bottom: 20px;
    left: 15px;
    z-index: 2;
}

@media (max-width: 1280px) {
    body { padding: 0 20px; overflow-x: hidden; }
    .hero { width: 100%; max-width: 1180px; }

    /* Full-width backgrounds: break out of body padding */
    #header,
    .site-footer,
    .full-width-strip {
        margin-left: -20px;
        margin-right: -20px;
    }
    .site-footer,
    .full-width-strip {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    #header .container {
        padding-left: 22px;
        padding-right: 22px;
    }
    .promo-section.container {
        max-width: 1180px !important;
        width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
@media (max-width: 1024px) {
    .header-row { flex-wrap: wrap; gap: 16px; }
    .header-left { width: auto; flex: none; order: 1; }
    .header-logo { order: 2; margin: 0 auto; }
    .header-right.icons-actions { width: auto; flex: none; order: 3; justify-content: flex-end; }
    .main-header.header-nav-row { flex-wrap: wrap; justify-content: center; }
    .header-nav-center { flex-wrap: wrap; justify-content: center; }
    .hero-content { padding: 40px 30px; }
    .hero-content h1 { font-size: 36px; }
    .hero-content h1 .line2 { font-size: 40px; }

    .featured-card .hover-zoom-in { height: 400px !important; }

    /* Special Offer section: fluid 1024→769 */
    .special-offer-section {
        height: clamp(360px, calc(178.9px + 23.53vw), 420px) !important;
    }
    .special-offer-content {
        width: 45% !important;
    }
    .special-offer-section h2 {
        font-size: clamp(20px, calc(7.9px + 1.57vw), 24px) !important;
    }
    .special-offer-section .fs-15px {
        font-size: clamp(11px, calc(5px + 0.78vw), 13px) !important;
    }
    .special-offer-section .fs-18px {
        font-size: clamp(12px, calc(6px + 0.78vw), 14px) !important;
    }
    .special-offer-section .countdown-item,
    .special-offer-section .separate {
        font-size: clamp(22px, calc(3.9px + 2.35vw), 28px) !important;
        padding: 0 4px !important;
    }
    .special-offer-section .countdown-item {
        padding: 0 clamp(4px, calc(1px + 0.4vw), 8px) !important;
    }
    .special-offer-section #daily-countdown {
        margin-left: 0 !important;
    }
    .special-offer-badge {
        width: clamp(65px, calc(34.8px + 3.92vw), 75px) !important;
        height: clamp(65px, calc(34.8px + 3.92vw), 75px) !important;
        min-width: clamp(65px, calc(34.8px + 3.92vw), 75px) !important;
        min-height: clamp(65px, calc(34.8px + 3.92vw), 75px) !important;
        font-size: clamp(11px, calc(5px + 0.78vw), 13px) !important;
    }

    .follow-newsletter-section .row { flex-direction: column !important; }
    .follow-newsletter-section .col-lg-6 { border-right: none !important; border-bottom: 1px solid #eee; padding-bottom: 32px !important; margin-bottom: 32px !important; }
    .follow-newsletter-section .col-lg-6:last-child { border-bottom: none; margin-bottom: 0 !important; }
    
    .site-footer .row { flex-direction: column; }
    .site-footer .col-lg-5 { max-width: 100% !important; flex: 1 !important; }
    .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
}

@media (max-width: 1199px) {
    /* Compact header when hamburger menu is active */
    .main-header.navbar { padding-top: 4px !important; padding-bottom: 4px !important; }
    .navbar-brand { padding: 2px 8px !important; }
}

@media (max-width: 768px) {
    .topbar { display: none !important; }

    /* Hero section: mobile tweaks */
    .hero { margin-top: 0px !important; }
    .hero-content h1 { font-size: 28px !important; }
    .hero-content h1 .line2 { font-size: 26px !important; }
    .hero-content p { font-size: 13px !important; font-weight: 600 !important; }
    .hero-content .price { font-size: 18px !important; font-weight: 700 !important; }
    .hero .btn-hero-cta {
        padding: 10px 24px !important;
        font-size: 14px !important;
        margin-top: 20px !important;
    }


    /* Bestseller discount badges: pill/capsule (mobile only) */
    .badge-product-flash {
        border-radius: 20px !important;
        padding: 4px 10px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    /* Special Offer section: mobile layout */
    .special-offer-section {
        background-image: url('/data/images/Countdown/countdown-05-mobile.png') !important;
        background-size: cover !important;
        background-position: left center !important;
        height: 450px !important;
        margin: 30px auto !important;
    }
    .special-offer-content {
        width: 38% !important;
        right: 0 !important;
        top: 0 !important;
    }
    .special-offer-inner {
        padding: 0 10px !important;
    }
    .special-offer-section .btn-hero-cta {
        margin-top: 20px !important;
    }
    .mobile-br { display: block; }
    .special-offer-section h2 {
        font-size: 22px !important;
        margin-bottom: 8px !important;
    }
    .special-offer-section .fs-15px { font-size: 12px !important; }
    .special-offer-section .fs-18px { font-size: 13px !important; }
    .special-offer-section .countdown-item,
    .special-offer-section .separate {
        font-size: 22px !important;
        padding: 0 4px !important;
    }
    .special-offer-section #daily-countdown {
        margin-left: 0 !important;
    }
    .special-offer-badge {
        display: none !important;
    }

    /* Breadcrumb: reduce padding only */
    .bg-body-secondary { margin-bottom: 0 !important; }
    .bg-body-secondary nav.py-4 { padding-top: 6px !important; padding-bottom: 6px !important; }

    /* Reduce gap between breadcrumb and product image */
    section.pb-3.mb-8 { margin-bottom: 8px !important; padding-bottom: 0 !important; }

    .tabs-reviews-wrapper {
        display: flex;
        flex-direction: column;
    }
    .tabs-reviews-wrapper #reviews-section {
        order: -1;
    }
    #reviews-section .d-flex.flex-wrap.align-items-center.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
    }
    #reviews-section .d-flex.flex-wrap.gap-3 {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        scrollbar-width: none;
        width: 100%;
    }
    #reviews-section .d-flex.flex-wrap.gap-3::-webkit-scrollbar { display: none; }
    #reviews-section .d-flex.flex-wrap.gap-3 .badge {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .hero { height: 410px; }
    .hero-img-desktop { display: none !important; }
    .hero-img-mobile { display: block !important; }
    .hero-content h1 { font-size: 30px; }
    .hero-content h1 .line2 { font-size: 36px; }
    .promo-section { height: auto; padding-bottom: 25px; }
    .promo-section.container {
        height: auto !important;
    }
    .promo-cards {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        overflow: visible;
        padding-bottom: 0;
    }
    .promo-card {
        height: 170px;
    }
    .promo-card .subtitle {
        display: none;
    }
    .promo-card h3 {
        font-size: 13px !important;
        margin-bottom: 0 !important;
        line-height: 1.3;
    }
    .promo-card-content {
        padding: 8px 10px !important;
    }
    .promo-card-cta {
        display: none !important;
    }
    #bestsellers {
        margin-top: 28px !important;
    }
    #bestsellers .mb-13 {
        margin-bottom: 1.5rem !important;
    }

    .featured-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px !important;
    }
    .featured-grid::-webkit-scrollbar { display: none; }
    .featured-grid { scrollbar-width: none; }
    .featured-card {
        flex: 0 0 calc(46% - 8px);
        min-width: calc(46% - 8px);
        scroll-snap-align: start;
    }
}

/* Footer link hover underline */
.site-footer ul li a:hover {
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.site-footer .col-lg-5 > a:hover .workshop-text {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.see-all-reviews-link:hover .see-all-reviews-text {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Shine effect */
.hero.hero-hover-shine,
.promo-card.hero-hover-shine,
.featured-card .hero-hover-shine {
    position: relative;
    overflow: hidden;
}
.hero.hero-hover-shine::before,
.promo-card.hero-hover-shine::before,
.featured-card .hero-hover-shine::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}
.hero.hero-hover-shine:hover::before,
.promo-card.hero-hover-shine:hover::before,
.featured-card .hero-hover-shine:hover::before {
    animation: hover-shine 1s;
}
@keyframes hover-shine {
    0% { left: -100%; }
    100% { left: 120%; }
}

/* Hero CTA Button */
.btn-hero-cta {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-hero-cta:hover {
    background: #ff7e00;
    color: #fff;
    border-color: #ff7e00;
}

/* Homepage buttons: soft rounded */
.btn-outline-dark {
    border-radius: 8px;
}


/* Star icon - outline style (all instances) */
.icon.icon-star-light,
svg.icon-star-light {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

/* Reviews Slider */
.reviews-slider-wrapper {
    position: relative;
}
.review-slide {
    flex: 0 0 calc(25% - 12px);
    min-width: calc(25% - 12px);
}
@media (max-width: 1199px) {
    .review-slide {
        flex: 0 0 calc(33.333% - 11px);
        min-width: calc(33.333% - 11px);
    }
}
@media (max-width: 991px) {
    .review-slide {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }
}
@media (max-width: 575px) {
    .review-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
}
.review-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
    z-index: 10;
}
.reviews-slider-wrapper:hover .review-nav-btn {
    opacity: 1;
}
.review-nav-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}
.review-nav-prev {
    left: -20px;
}
.review-nav-next {
    right: -20px;
}
@media (max-width: 992px) {
    .review-nav-prev { left: 5px; }
    .review-nav-next { right: 5px; }
    .review-nav-btn { opacity: 0.7; }
}
.btn-reviews-cta {
    background: #f5f5f5;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}
.btn-reviews-cta:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}
.review-card {
    transition: transform 0.3s ease;
}
.review-card:hover {
    transform: scale(1.03);
}

/* Bestsellers Slider */
.bestseller-slider-wrapper {
    position: relative;
}
.bestseller-slide {
    flex: 0 0 calc(25% - 12px);
    min-width: calc(25% - 12px);
}
@media (max-width: 1024px) {
    .bestseller-slide {
        flex: 0 0 calc(30% - 11px);
        min-width: calc(30% - 11px);
    }
}
@media (max-width: 768px) {
    .bestseller-slide {
        flex: 0 0 calc(46% - 8px);
        min-width: calc(46% - 8px);
    }
    .bestseller-nav-btn { display: none !important; }
    #bestsellersSlider {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    #bestsellersSlider::-webkit-scrollbar { display: none; }
}
.bestseller-nav-btn {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
    z-index: 10;
}
.bestseller-slider-wrapper:hover .bestseller-nav-btn {
    opacity: 1;
}
.bestseller-nav-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}
.bestseller-nav-prev {
    left: -20px;
}
.bestseller-nav-next {
    right: -20px;
}
@media (max-width: 992px) {
    .bestseller-nav-prev { left: 5px; }
    .bestseller-nav-next { right: 5px; }
    .bestseller-nav-btn { opacity: 0.7; }
}

/* === Product Gallery - Thumbnails === */
.product-thumbs-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.product-thumbs-container::-webkit-scrollbar {
    display: none;
}
.product-thumb-item {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    position: relative;
    flex-shrink: 0;
}
.product-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-thumb-item:hover,
.product-thumb-item.active {
    border-color: #222;
}
.thumb-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    color: #333;
}

/* === Product Gallery - Responsive (thumbnails vertical→horizontal) === */
@media (max-width: 1199px) {
    #product-thumbs {
        flex-direction: row !important;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none !important;
        max-width: 100% !important;
        gap: 8px;
        padding-top: 0;
        margin-top: 0 !important;
    }
    #product-thumbs.product-thumbs-container {
        margin-top: 0 !important;
    }
    .order-1.mt-5 {
        margin-top: 0 !important;
    }
    #product-thumbs .product-thumb-item {
        width: 80px;
        min-width: 80px;
        aspect-ratio: 1;
    }
    #product-thumbs::-webkit-scrollbar { display: none; }
    #product-thumbs { scrollbar-width: none; }
    #vertical-slider-slides img {
        height: 450px !important;
    }
}

/* === Product Gallery - Slick Dots (disabled) === */
#vertical-slider-slides .slick-dots {
    display: none !important;
}

/* === Product Gallery - Custom overlay arrows === */
.product-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.0);
    color: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s, color 0.3s;
    font-size: 16px;
}
.position-relative:hover > .product-gallery-nav {
    opacity: 1;
}
.product-gallery-nav:hover {
    background: rgba(255,255,255,0.85);
    color: #000;
}
.product-gallery-nav.nav-prev {
    left: 12px;
}
.product-gallery-nav.nav-next {
    right: 12px;
}

/* Fix FOUC: Hide slides until Slick initializes */
#vertical-slider-slides:not(.slick-initialized) > *:not(:first-child) {
    display: none !important;
}

/* Product gallery image size control */
#vertical-slider-slides img {
    width: 100% !important;
    height: 640px !important;
    object-fit: cover;
}
@media (max-width: 1199px) {
    #vertical-slider-slides img {
        height: 580px !important;
    }
}
@media (max-width: 768px) {
    #vertical-slider-slides img {
        height: 450px !important;
    }
}

/* Thumbnail container height - match main image */
#product-thumbs {
    max-height: 640px !important;
    max-width: 100px;
}
@media (max-width: 1199px) {
    #product-thumbs {
        max-height: none !important;
        max-width: 100% !important;
        flex-direction: row !important;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px;
        padding-top: 10px;
        scrollbar-width: none;
    }
    #product-thumbs::-webkit-scrollbar { display: none; }
    #product-thumbs .product-thumb-item {
        width: 80px !important;
        min-width: 80px !important;
        aspect-ratio: 1;
    }
}

/* === Block Quantity Toggle System === */
.qty-mode-toggle {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.qty-mode-toggle label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: color 0.2s;
}
.qty-mode-toggle input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #000;
}
.qty-mode-toggle input[type="radio"]:checked + span {
    color: #000;
    font-weight: 600;
}

/* Collapsible containers */
.qty-section-wrapper {
    overflow: hidden;
    transition: max-height 0.28s ease-out, opacity 0.25s ease-out;
    opacity: 1;
}
.qty-section-wrapper.collapsed {
    max-height: 0 !important;
    opacity: 0;
    pointer-events: none;
}

/* Recommended Sets */
.recommended-sets-container {
    padding-bottom: 8px;
    padding-left: 4px;
}

/* Expand trigger (when in custom mode) */
.expand-trigger {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: color 0.2s;
}
.expand-trigger:hover {
    color: #000;
}
.expand-trigger .arrow {
    font-size: 10px;
    transition: transform 0.25s;
}
.expand-trigger.active {
    display: flex;
}

/* Divider - hidden when custom mode active */
.qty-divider {
    height: 1px;
    background: #eee;
    margin: 12px 0;
    transition: margin 0.25s, opacity 0.25s;
}
.qty-divider.hidden {
    opacity: 0;
    margin: 0;
    height: 0;
}

/* Custom Quantity Section */
.custom-quantity-section {
    background: #f8f6f2;
    border-radius: 10px;
    padding: 16px;
    margin-top: 4px;
}
.custom-quantity-section .section-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}
.quantity-stepper {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.quantity-stepper .quantity-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.15s ease;
}
.quantity-stepper .quantity-btn:hover:not(:disabled) {
    background: #000;
    color: #fff;
    border-color: #000;
}
.quantity-stepper .quantity-btn:active:not(:disabled) {
    transform: scale(1.05);
}
.quantity-stepper .quantity-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.quantity-stepper #custom-quantity {
    width: 54px;
    height: 38px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border: none;
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
}
.quantity-stepper #custom-quantity::-webkit-outer-spin-button,
.quantity-stepper #custom-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.custom-price-display {
    margin-top: 14px;
}
.custom-price-display .price-main {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.custom-price-display .price-breakdown {
    font-size: 13px;
    color: #666;
    margin-left: 8px;
}
.custom-price-display .discount-note {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

/* === Etsy-Style Reviews Section === */
.reviews-list .review-item {
    transition: background-color 0.2s;
}

/* Photos from Reviews Carousel */
.photos-from-reviews {
    position: relative;
}
.review-photos-container {
    overflow: hidden;
    position: relative;
}
.review-photos-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}
.review-photo-item {
    flex: 0 0 calc(25% - 12px);
    min-width: calc(25% - 12px);
    aspect-ratio: 1;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
}
.review-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.review-photo-item:hover img {
    transform: scale(1.05);
}
.review-photos-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.review-photos-nav:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.05);
}
.review-photos-prev {
    left: -22px;
}
.review-photos-next {
    right: -22px;
}

/* Photo Modal */
.review-photo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
}
.review-photo-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-photo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}
.review-photo-modal.closing .review-photo-modal-overlay {
    animation: fadeOut 0.3s ease forwards;
}
.review-photo-modal-wrapper {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(3%) scale(1.02);
    animation: modalSlideIn 0.3s ease forwards;
}
.review-photo-modal.closing .review-photo-modal-wrapper {
    animation: modalSlideOut 0.3s ease forwards;
}
.review-photo-modal-content {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 940px;
    height: 580px;
    background: #fff;
    border-radius: 0;
}
.review-photo-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: #fff;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.review-photo-modal-body {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.review-photo-modal-image {
    flex: 0 0 580px;
    width: 580px;
    height: 580px;
    background: #f5f5f5;
    overflow: hidden;
}
.review-photo-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-photo-modal-details {
    flex: 0 0 360px;
    width: 360px;
    padding: 24px;
    overflow-y: auto;
}
.review-photo-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.review-photo-modal-nav:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.modal-nav-prev {
    left: -20px;
}
.modal-nav-next {
    right: -20px;
}

/* All Reviews Modal */
.all-reviews-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.all-reviews-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.all-reviews-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}
.all-reviews-modal.closing .all-reviews-modal-overlay {
    animation: fadeOut 0.3s ease forwards;
}
.all-reviews-modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(3%) scale(1.02);
    animation: modalSlideIn 0.3s ease forwards;
}
.all-reviews-modal.closing .all-reviews-modal-content {
    animation: modalSlideOut 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(3%) scale(1.02); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes modalSlideOut {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(3%) scale(1.02); }
}
.all-reviews-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}
.all-reviews-modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}
.all-reviews-modal-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
}

/* Modal Review Stars - Black color and spacing */
.all-reviews-modal .modal-review-item .d-flex.text-warning,
.review-photo-modal .review-photo-modal-details .d-flex.text-warning {
    color: #222 !important;
    gap: 2px;
}
.all-reviews-modal .modal-review-item .d-flex.text-warning i,
.review-photo-modal .review-photo-modal-details .d-flex.text-warning i {
    font-size: 12px;
}

/* Modal Review Items - Better spacing and typography */
.all-reviews-modal .modal-review-item {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #ddd !important;
    margin-left: 20px;
    margin-right: 20px;
}
.all-reviews-modal .modal-review-item:first-child {
    padding-top: 0 !important;
}
.all-reviews-modal .modal-review-item .fs-14px {
    font-size: 15px !important;
    line-height: 1.7;
}
.all-reviews-modal .modal-review-item .fs-13px {
    font-size: 13px !important;
}
.all-reviews-modal .modal-review-item .fw-medium {
    font-size: 14px;
}
/* Stars to avatar spacing */
.all-reviews-modal .modal-review-item .d-flex.text-warning {
    margin-bottom: 12px !important;
}
/* Recommends styling */
.all-reviews-modal .modal-review-item .recommends-badge {
    color: #222 !important;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
}
.all-reviews-modal .modal-review-item .recommends-badge .recommends-check {
    color: #4e7661;
    margin-right: 2px;
}
/* Purchase options styling */
.all-reviews-modal .modal-review-item .purchase-options {
    color: #595959 !important;
    font-size: 13px !important;
    margin-top: 1px;
}
.all-reviews-modal .modal-review-item .purchase-options strong {
    color: #222;
    font-weight: 500;
}
/* Review date styling */
.all-reviews-modal .modal-review-item .review-date-separator {
    color: #999;
    font-size: 13px;
}
.all-reviews-modal .modal-review-item .review-date {
    color: #666;
    font-size: 13px;
}

.all-reviews-modal .pagination {
    gap: 8px;
    justify-content: center;
}
.all-reviews-modal .pagination .page-item .page-link {
    border: none;
    color: #333;
    background: #f0f0f0;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    font-size: 14px;
}
.all-reviews-modal .pagination .page-item .page-link:hover {
    background: #e5e5e5;
}
.all-reviews-modal .pagination .page-item.active .page-link {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    border-radius: 50% !important;
}

/* View All Reviews Button */
.view-all-reviews-btn {
    transition: all 0.3s ease;
}
.view-all-reviews-btn:hover {
    background-color: #4e7661 !important;
    border-color: #4e7661 !important;
    color: #fff !important;
}

/* Modal Photo Strip */
#modalPhotoStrip {
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}
#modalPhotoStrip img {
    scroll-snap-align: start;
}
.modal-photo-nav {
    z-index: 10;
}
.modal-photo-nav:hover {
    background: #f5f5f5 !important;
}

/* Body Reviews Section */
#bodyPhotoStrip {
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}
#bodyPhotoStrip img {
    scroll-snap-align: start;
}

/* Body Review Items - Same styling as modal review items */
.body-review-item {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #ddd !important;
}
.body-review-item:first-child {
    padding-top: 0 !important;
}
.body-review-item:last-child:not(.d-none) {
    border-bottom: none !important;
}
.body-review-item .fs-14px {
    font-size: 15px !important;
    line-height: 1.7;
}
.body-review-item .fs-13px {
    font-size: 13px !important;
}
.body-review-item .fw-medium {
    font-size: 14px;
}
.body-review-item .d-flex.text-warning {
    color: #222 !important;
    gap: 2px;
    margin-bottom: 12px !important;
}
.body-review-item .d-flex.text-warning i {
    font-size: 12px;
}
.body-review-item .recommends-badge {
    color: #222 !important;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
}
.body-review-item .recommends-badge .recommends-check {
    color: #4e7661;
    margin-right: 2px;
}
.body-review-item .purchase-options {
    color: #595959 !important;
    font-size: 13px !important;
    margin-top: 1px;
}
.body-review-item .purchase-options strong {
    color: #222;
    font-weight: 500;
}
.body-review-item .review-date-separator {
    color: #999;
    font-size: 13px;
}
.body-review-item .review-date {
    color: #666;
    font-size: 13px;
}

/* Body Pagination */
#bodyPagination {
    gap: 8px;
    justify-content: center;
}
#bodyPagination .page-item .page-link {
    border: none;
    color: #333;
    background: #f0f0f0;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    font-size: 14px;
}
#bodyPagination .page-item .page-link:hover {
    background: #e5e5e5;
}
#bodyPagination .page-item.active .page-link {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    border-radius: 50% !important;
}

/* Responsive */
@media (max-width: 768px) {
    .review-photo-item {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }
    .review-photo-modal-body {
        flex-direction: column;
    }
    .review-photo-modal-image {
        flex: none;
        height: 300px;
    }
    .review-photo-modal-nav {
        display: none;
    }
    .review-photos-prev {
        left: 8px;
    }
    .review-photos-next {
        right: 8px;
    }
}

/* === Shop Page === */
.shop-page-header {
    text-align: center;
    padding: 40px 0 36px;
}
.shop-page-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}
.shop-page-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}
.shop-collections {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;
}
.shop-collection-tab {
    padding: 8px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    background: #fff;
    text-align: left;
    width: 100%;
}
.shop-collection-tab:hover {
    border-color: #999;
    color: #000;
}
.shop-collection-tab.active {
    background: #000;
    color: #fff;
    border-color: #000;
}
.shop-sidebar-divider {
    height: 1px;
    background: #eee;
    margin: 16px 0;
}
.shop-layout {
    display: flex;
    gap: 48px;
    padding-bottom: 80px;
}
.shop-sidebar {
    flex: 0 0 200px;
    width: 200px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
.shop-sidebar-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 0.5px;
}
.shop-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.shop-sidebar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0 7px 14px;
    font-size: 15px;
    color: #555;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    border-left: 3px solid transparent;
    user-select: none;
}
.shop-sidebar-item:hover {
    color: #000;
}
.shop-sidebar-item.active {
    color: #000;
    font-weight: 600;
    border-left-color: #000;
}
.shop-sidebar-count {
    font-size: 13px;
    color: #aaa;
    font-weight: 400;
}
.shop-sidebar-item.active .shop-sidebar-count {
    color: #666;
}
.shop-content {
    flex: 1;
    min-width: 0;
    min-height: 800px;
}
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}
.shop-toolbar-count {
    font-size: 15px;
    color: #666;
    margin: 0;
}
.shop-toolbar-count strong {
    color: #000;
    font-weight: 600;
}
.shop-sort-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 9px 38px 9px 14px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    transition: border-color 0.2s;
}
.shop-sort-select:hover {
    border-color: #999;
}
.shop-sort-select:focus {
    outline: none;
    border-color: #000;
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
    min-height: 400px;
}
.shop-grid .card-img-top {
    aspect-ratio: 3/4;
    overflow: hidden;
}
.shop-grid .card-img-top .hover-zoom-in {
    width: 100%;
    height: 100%;
}
.shop-grid .card-img-top img.img-fluid {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
.shop-grid-animate .shop-product-wrapper {
    animation: shopFadeIn 0.45s ease both;
}
@keyframes shopFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.shop-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #999;
    font-size: 16px;
}

/* Hide mobile-only shop elements globally — only shown in mobile media query */
.shop-mobile-collections,
.shop-mobile-bar,
.shop-mobile-count,
.shop-filter-overlay,
.shop-filter-sheet {
    display: none;
}

@media (max-width: 1199px) {
    .shop-layout { gap: 32px; }
    .shop-sidebar { flex: 0 0 180px; width: 180px; }
}
@media (max-width: 991px) {
    .shop-layout { gap: 24px; }
    .shop-sidebar { flex: 0 0 160px; width: 160px; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Product card: only wishlist heart icon (all breakpoints) ── */
.product-actions .add_to_cart,
.product-actions .quick-view,
.product-actions .compare {
    display: none !important;
}
.product-actions.horizontal {
    bottom: auto !important;
    top: 18px !important;
    right: 10px !important;
    left: auto !important;
    transform: none !important;
}
.product-actions.horizontal > a.wishlist {
    --square-size: 38px !important;
    transform: translateY(70%);
    opacity: 0;
    transition: opacity .5s cubic-bezier(.05,.7,.2,1), transform .5s cubic-bezier(.05,.7,.2,1), box-shadow 0.12s ease;
    background: #fff !important;
    color: #333 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.product-actions.horizontal > a.wishlist svg {
    width: 18px !important;
    height: 18px !important;
}
.card-product:hover .product-actions.horizontal > a.wishlist {
    opacity: 1;
    transform: translateY(0);
}
.product-actions.horizontal > a.wishlist:hover {
    background: #fff !important;
    color: #333 !important;
    transform: translateY(0) scale(1.12) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.22) !important;
    transition: transform 0.1s cubic-bezier(.2,.8,.3,1), box-shadow 0.1s ease !important;
}
.product-actions .wishlist.is-fav {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.product-actions .wishlist.is-fav:hover {
    transform: scale(1.12) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.22) !important;
    transition: transform 0.1s cubic-bezier(.2,.8,.3,1), box-shadow 0.1s ease !important;
}

/* ── Shop Mobile (<768px) ── */
@media (max-width: 767.98px) {
    .shop-page-header { padding: 24px 0 16px; }
    .shop-page-header h2 { font-size: 22px; }
    .shop-page-header p { font-size: 14px; }

    .shop-layout { padding-bottom: 40px; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
    .shop-grid .card-body .fs-6 { font-size: 14px !important; }
    .shop-grid .product-title { font-size: 13px !important; }
    .shop-grid .card-img-top { margin-bottom: 8px !important; }

    .shop-mobile-count {
        display: block;
        font-size: 13px;
        color: #888;
        margin: 0 0 12px;
        text-align: center;
    }

    /* Collections horizontal pills */
    .shop-mobile-collections {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px 14px;
        scrollbar-width: none;
    }
    .shop-mobile-collections::-webkit-scrollbar { display: none; }
    .shop-mobile-pills {
        display: flex;
        gap: 8px;
        white-space: nowrap;
    }

    /* Shared pill button style */
    .shop-pill {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 8px 16px;
        font-size: 13.5px;
        font-weight: 500;
        color: #444;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 24px;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
        font-family: inherit;
    }
    .shop-pill:hover { border-color: #999; }
    .shop-pill.active {
        background: #222;
        color: #fff;
        border-color: #222;
    }
    .shop-pill-count {
        font-size: 12px;
        color: #999;
        margin-left: 2px;
    }
    .shop-pill.active .shop-pill-count { color: rgba(255,255,255,0.6); }

    /* Mobile filter + sort bar */
    .shop-mobile-bar {
        display: flex;
        gap: 8px;
        margin-bottom: 14px;
        padding: 8px 0;
    }
    .shop-mobile-filter-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 0;
        font-size: 14px;
        font-weight: 500;
        color: #222;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        cursor: pointer;
        font-family: inherit;
        position: relative;
        transition: border-color 0.2s;
    }
    .shop-mobile-filter-btn:hover { border-color: #999; }
    .shop-filter-dot {
        width: 7px;
        height: 7px;
        background: #e53935;
        border-radius: 50%;
        position: absolute;
        top: 8px;
        right: 12px;
    }
    .shop-mobile-sort {
        flex: 1;
        padding: 10px 12px;
        font-size: 14px;
        font-weight: 500;
        color: #222;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        cursor: pointer;
        font-family: inherit;
        -webkit-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 30px;
        text-align: center;
    }

    /* Filter bottom sheet overlay */
    .shop-filter-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1050;
        opacity: 0;
        transition: opacity 0.3s;
    }
    .shop-filter-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Filter bottom sheet */
    .shop-filter-sheet {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 16px 16px 0 0;
        z-index: 1051;
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
        max-height: 80vh;
        display: flex;
        flex-direction: column;
        box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    }
    .shop-filter-sheet.open {
        transform: translateY(0);
    }
    .shop-filter-sheet-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        border-bottom: 1px solid #eee;
    }
    .shop-filter-sheet-title {
        font-size: 17px;
        font-weight: 600;
        color: #222;
    }
    .shop-filter-sheet-close {
        background: none;
        border: none;
        font-size: 28px;
        line-height: 1;
        color: #666;
        cursor: pointer;
        padding: 0;
    }
    .shop-filter-sheet-body {
        padding: 16px 20px;
        overflow-y: auto;
        flex: 1;
    }
    .shop-filter-sheet-section {
        font-size: 14px;
        font-weight: 600;
        color: #222;
        margin: 0 0 10px;
        text-transform: none;
    }
    .shop-filter-sheet-section:not(:first-child) { margin-top: 20px; }
    .shop-filter-sheet-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .shop-filter-sheet-footer {
        padding: 14px 20px;
        border-top: 1px solid #eee;
    }
    .shop-filter-apply-btn {
        width: 100%;
        padding: 13px 0;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        background: #222;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        font-family: inherit;
        transition: background 0.2s;
    }
    .shop-filter-apply-btn:hover { background: #000; }

    /* Mobile: wishlist heart always visible */
    .product-actions {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        top: 12px !important;
        right: 8px !important;
    }
    .product-actions.horizontal > a.wishlist {
        display: flex !important;
        align-items: center;
        justify-content: center;
        --square-size: 34px !important;
        background: rgba(255,255,255,0.5) !important;
        backdrop-filter: blur(4px);
        box-shadow: 0 1px 6px rgba(0,0,0,0.1);
        opacity: 1 !important;
        transform: none !important;
        transition: transform 0.2s ease;
    }
    .product-actions.horizontal > a.wishlist svg {
        width: 16px !important;
        height: 16px !important;
    }
    .product-actions.horizontal > a.wishlist:active {
        transform: scale(0.85) !important;
    }
}

/* lightGallery video thumb play icon */
.lg-thumb-item.lg-video-thumb {
    position: relative;
}
.lg-thumb-item.lg-video-thumb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/12px no-repeat;
    pointer-events: none;
}

/* lightGallery video: hide default play button */
.lg-video-cont .lg-video-play {
    display: none !important;
}

/* lightGallery: slightly transparent backdrop */
.lg-backdrop {
    opacity: 0.9 !important;
}

/* Sticky CTA bar (mobile only) */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 15px 16px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.25s ease;
}
.sticky-cta-bar.visible {
    transform: translateY(0);
}
.sticky-cta-bar .sticky-cta-btn {
    width: 100%;
    height: 48px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
.sticky-cta-bar .sticky-cta-btn:active {
    background: #c96;
}
@media (max-width: 768px) {
    .sticky-cta-bar { display: block; }
}

/* Bestseller badge + sale countdown (mobile only) */
.mobile-bestseller-info {
    display: none;
    margin-bottom: 4px;
}
.mobile-bestseller-info .bestseller-badge {
    display: inline-block;
    background: #f0c14b;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    padding: 1px 8px;
    border-radius: 24px;
    margin-bottom: 2px;
}
.mobile-bestseller-info .sale-countdown {
    font-size: 15px;
    font-weight: 600;
    color: #2a8a2a;
}
.mobile-bestseller-info .sale-countdown .countdown-hours {
    font-weight: 700;
}
@media (max-width: 768px) {
    .mobile-bestseller-info { display: block; margin-top: -20px; margin-bottom: 0; }
    .mobile-bestseller-info .bestseller-badge { margin-bottom: 3px; }

    /* Sale countdown: green, closer to price */
    .mobile-bestseller-info .sale-countdown {
        color: #2a8a2a !important;
        margin-bottom: -3px;
    }

    /* Price reorder: sale price first, then original, then % as text */
    .col-md-5 > p.d-flex.align-items-center.mb-6:first-of-type {
        flex-wrap: wrap;
        margin-bottom: -3px !important;
        margin-top: 0 !important;
        align-items: center !important;
        gap: 6px;
    }
    #display-price-sale {
        order: -1;
        padding-left: 0 !important;
        font-size: 24px !important;
        font-weight: 800 !important;
        color: #1a7a1a !important;
    }
    #display-price-sale::before { content: '$'; }
    #display-price-sale::after { content: '+'; }
    #display-price-original {
        order: 0;
        font-size: 16px;
        font-weight: 600 !important;
        color: #888;
        padding-left: 0 !important;
        margin-left: 2px !important;
    }
    #display-price-original::before { content: '$'; }
    #display-price-original::after { content: '+'; }
    #display-price-badge {
        order: 1;
        background: none !important;
        color: #888 !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        padding: 0 !important;
        margin-left: 2px !important;
    }
    #display-price-badge::before { content: '('; }
    #display-price-badge::after { content: ' off)'; }

    /* Title: tight to price */
    .col-md-5 > h1.mb-4.pb-2 {
        margin-bottom: 2px !important;
        padding-bottom: 0 !important;
        margin-top: -3px !important;
    }

    /* Description: closer to title */
    .col-md-5 > p.fs-15px {
        margin-top: -10px !important;
    }

    /* Mobile: soft/rounded UI (Etsy style) */
    .btn-lg, .btn-dark, .product-cta-btn, .btn-outline-dark, .btn-reviews-cta {
        border-radius: 8px !important;
    }
    .sticky-cta-btn {
        border-radius: 24px !important;
    }
    .bestseller-badge {
        border-radius: 24px !important;
    }
    .mobile-delivery-summary {
        border-radius: 0 !important;
    }
    .form-select, .form-control, select, .product-info-custom select {
        border-radius: 12px !important;
    }
    .product-info-custom .list-inline-item label,
    .product-info-custom .product-info-size + label {
        border-radius: 20px !important;
    }
    .nav-tabs .nav-link {
        border-radius: 20px !important;
    }
    .badge.text-bg-primary {
        border-radius: 12px !important;
    }

    /* Modern accordion description (Etsy style) */
    .tabs-section { padding-top: 0 !important; padding-bottom: 0 !important; }
    .tabs-section .collapse-tabs .tab-content { border: none; }
    .tabs-section .tab-inner .tab-pane { display: block !important; opacity: 1 !important; }

    .tab-pane .card-header.product-tabs-mobile {
        padding: 0 !important;
        border: none !important;
        border-top: 1px solid #ccc !important;
    }
    .tab-inner .tab-pane:last-child .card-header.product-tabs-mobile {
        border-bottom: 1px solid #ccc !important;
    }
    .product-tabs-mobile h5 { margin: 0; }
    .product-tabs-mobile .btn {
        border: none !important;
        border-radius: 0 !important;
        background: none !important;
        color: #000 !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        padding: 14px 0 !important;
        text-align: left !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .product-tabs-mobile .btn::after {
        content: '';
        width: 10px;
        height: 10px;
        border-right: 2px solid #222;
        border-bottom: 2px solid #222;
        transform: rotate(45deg);
        transition: transform 0.25s ease;
        flex-shrink: 0;
        margin-right: 16px;
    }
    .product-tabs-mobile .btn[aria-expanded="true"]::after {
        transform: rotate(-135deg);
    }
    .product-tabs-mobile .btn:focus { box-shadow: none !important; }

    .tab-pane .collapse,
    .tab-pane .collapse.show {
        border: none !important;
        padding: 0 0 16px 0 !important;
    }
    .tab-pane .card { border: none !important; }
    .tab-pane .card-header { border: none !important; }
}

/* Get it by + Ratings summary (mobile only, Etsy style) */
.mobile-delivery-summary {
    display: none;
    padding: 6px 0;
    margin-bottom: 12px;
    margin-top: 0;
    line-height: 1.4;
}
.mobile-delivery-summary .delivery-cols {
    display: flex;
    width: fit-content;
}
.mobile-delivery-summary .delivery-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-left: 1px solid #d5d5d5;
    padding-left: 18px;
    padding-right: 30px;
}
.mobile-delivery-summary .col-label {
    color: #595959;
    font-size: 16px;
}
.mobile-delivery-summary .col-label svg {
    display: none;
}
.mobile-delivery-summary .col-value {
    font-weight: 700;
    color: #222;
    font-size: 16px;
}
.mobile-delivery-summary .col-value .star {
    color: #f5a623;
    font-size: 17px;
}
.mobile-delivery-summary .col-value .rating-arrow {
    color: #999;
    margin-left: 3px;
    font-size: 17px;
}
@media (max-width: 768px) {
    .mobile-delivery-summary { display: block; }
    .product-rating-row { display: none !important; }

    .col-md-5.pt-md-0 {
        display: flex;
        flex-direction: column;
    }
    .col-md-5.pt-md-0 > p.fs-15px {
        order: 1;
    }
    .col-md-5.pt-md-0 > .product-info-custom,
    .col-md-5.pt-md-0 > .product-info-custom ~ * {
        order: 2;
    }
}

/* === Footer Accordion (details/summary) === */

/* Desktop footer columns use normal div+h3+ul (no <details>) */

@keyframes accordion-open {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile: collapsible accordion */
@media (max-width: 991.98px) {
    .site-footer {
        padding-top: 40px !important;
        padding-bottom: 48px !important;
    }
    .site-footer .footer-intro-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }
    .site-footer .row {
        gap: 0 !important;
    }
    .site-footer .col-lg.col-12 {
        margin-bottom: 0 !important;
    }
    .site-footer .footer-col-accordion {
        width: 100%;
        border-top: 1px solid #e0e0e0;
    }
    .site-footer .footer-col-accordion:last-of-type {
        border-bottom: 1px solid #e0e0e0;
    }
    .site-footer .footer-col-accordion summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 4px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        list-style: none;
        user-select: none;
    }
    .site-footer .footer-col-accordion summary::-webkit-details-marker { display: none; }
    .site-footer .footer-col-accordion summary::marker { display: none; content: ''; }
    .site-footer .footer-col-accordion summary::after {
        content: '';
        width: 9px;
        height: 9px;
        border-right: 2px solid #888;
        border-bottom: 2px solid #888;
        transform: rotate(45deg);
        transition: transform 0.25s ease;
        flex-shrink: 0;
        margin-right: 4px;
    }
    .site-footer .footer-col-accordion[open] summary::after {
        transform: rotate(-135deg);
    }
    .site-footer .footer-col-accordion ul {
        list-style: none;
        padding: 0 4px 16px;
        margin: 0;
    }
    .site-footer .footer-col-accordion ul li {
        margin-bottom: 10px;
    }
    .site-footer .footer-col-accordion ul a {
        color: #666;
        text-decoration: none;
        font-size: 15px;
    }
    .site-footer .footer-col-accordion[open] > ul {
        animation: accordion-open 0.25s ease;
    }
    .site-footer .footer-col-accordion:nth-of-type(2) {
        animation-delay: 0.15s;
    }
    .site-footer .footer-col-accordion:nth-of-type(3) {
        animation-delay: 0.3s;
    }
    .site-footer .footer-intro-col a {
        color: inherit !important;
    }
    .site-footer .footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        text-align: center;
        border-top: none !important;
        padding-top: 20px !important;
        margin-top: 20px !important;
    }
}

/* ═══ Mobile Drawer ═══ */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 9998;
    pointer-events: none;
    transition: background 0.35s ease;
}
.mobile-drawer-overlay.active {
    background: rgba(0, 0, 0, 0.45);
    pointer-events: auto;
}
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    max-width: 380px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}
.mobile-drawer.open {
    transform: translateX(0);
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}
.drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.15s;
}
.drawer-close:hover {
    color: #000;
}
.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}
.drawer-search {
    padding: 0 24px 16px;
}
.drawer-search form {
    position: relative;
}
.drawer-search input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    background: #f9f9f9;
    transition: border-color 0.2s, background 0.2s;
}
.drawer-search input:focus {
    border-color: #c96;
    background: #fff;
}
.drawer-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.drawer-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 8px;
}
.drawer-nav li a {
    display: block;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.drawer-nav li a:hover {
    background: #f5f5f5;
    color: #c96;
}
.drawer-section {
    padding: 0 0 8px;
}
.drawer-accordion {
    border: none;
}
.drawer-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.15s;
}
.drawer-accordion summary:hover {
    background: #f5f5f5;
}
.drawer-accordion summary::-webkit-details-marker { display: none; }
.drawer-accordion summary::marker { display: none; content: ''; }
.drawer-accordion summary::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #888;
    border-bottom: 2px solid #888;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-right: 4px;
}
.drawer-accordion[open] summary::after {
    transform: rotate(-135deg);
}
.drawer-accordion ul {
    list-style: none;
    margin: 0;
    padding: 0 0 8px;
    animation: drawer-acc-open 0.25s ease;
}
.drawer-accordion ul li a {
    display: block;
    padding: 10px 24px 10px 40px;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.drawer-accordion ul li a:hover {
    background: #f5f5f5;
    color: #c96;
}
@keyframes drawer-acc-open {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.drawer-quick-links {
    border-top: 1px solid #f0f0f0;
    padding-top: 8px;
}
.drawer-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 24px;
}
.drawer-utility li a {
    font-weight: 500 !important;
    color: #444 !important;
    font-size: 14.5px !important;
}
.drawer-account {
    padding: 8px 24px 4px;
}
.drawer-signin-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.drawer-signin-btn:hover {
    border-color: #c96;
    background: #fdf8f4;
    color: #222;
}
.drawer-footer-links {
    padding: 16px 24px 24px;
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 6px;
}
.drawer-footer-links a {
    color: #999;
    text-decoration: none;
}
.drawer-footer-links a:hover {
    color: #666;
    text-decoration: underline;
}
.mobile-drawer.open .drawer-body > * {
    opacity: 0;
    transform: translateY(8px);
    animation: drawer-item-in 0.3s ease forwards;
}
.mobile-drawer.open .drawer-body > *:nth-child(1) { animation-delay: 0.05s; }
.mobile-drawer.open .drawer-body > *:nth-child(2) { animation-delay: 0.1s; }
.mobile-drawer.open .drawer-body > *:nth-child(3) { animation-delay: 0.15s; }
.mobile-drawer.open .drawer-body > *:nth-child(4) { animation-delay: 0.2s; }
.mobile-drawer.open .drawer-body > *:nth-child(5) { animation-delay: 0.25s; }
.mobile-drawer.open .drawer-body > *:nth-child(6) { animation-delay: 0.3s; }
.mobile-drawer.open .drawer-body > *:nth-child(7) { animation-delay: 0.35s; }
.mobile-drawer.open .drawer-body > *:nth-child(8) { animation-delay: 0.4s; }
.mobile-drawer.open .drawer-body > *:nth-child(9) { animation-delay: 0.45s; }
@keyframes drawer-item-in {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Narrow mobile: 570px ── */
@media (max-width: 570px) {
    .hero { height: 350px; }

    .special-offer-section { height: 370px !important; margin: 20px auto !important; }
    .special-offer-content {
        top: -20px !important;
        align-items: flex-start !important;
        padding-top: 50px !important;
    }
    .special-offer-inner {
        text-align: right !important;
        padding: 0 16px 0 0 !important;
    }
    .special-offer-section h2 { font-size: 19px !important; margin-bottom: 5px !important; }
    .special-offer-section .fs-18px { font-size: 12px !important; line-height: 1.4 !important; }
    .special-offer-section #daily-countdown {
        justify-content: flex-end !important;
    }
    .special-offer-section .countdown-item,
    .special-offer-section .separate { font-size: 19px !important; padding: 0 4px !important; }
    .special-offer-section .btn-hero-cta {
        padding: 8px 18px !important;
        font-size: 13px !important;
        margin-top: 14px !important;
        float: right !important;
    }
    .special-offer-badge { display: none !important; }

    .featured-card .hover-zoom-in { height: 300px !important; }
}

/* ── Small mobile: 430px ── */
@media (max-width: 430px) {
    .hero { height: clamp(250px, calc(222.22vw - 665.56px), 290px); }
    .hero-content { padding: 25px 20px !important; }
    .hero-content h1 { font-size: 26px !important; margin-bottom: 8px !important; }
    .hero-content h1 .line2 { font-size: 26px !important; }
    .hero-content p { font-size: 11px !important; line-height: 1.4 !important; max-width: 150px !important; }
    .hero-content p .desc-line1,
    .hero-content p .desc-line2 { display: inline !important; }
    .hero-content .price { font-size: 15px !important; margin-top: 8px !important; }
    .hero .btn-hero-cta { padding: 8px 18px !important; font-size: 13px !important; margin-top: 12px !important; }

    .breadcrumb { font-size: clamp(12px, calc(8.57vw - 20.86px), 16px) !important; }

    .bestseller-slide .product-title,
    .shop-grid .product-title {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .bestseller-slide .reviews,
    .shop-grid .reviews {
        font-size: clamp(10px, calc(5.71vw - 10.57px), 14px) !important;
    }

    .special-offer-section { height: 290px !important; margin: 15px auto !important; }
    .special-offer-content {
        top: 0 !important;
        width: 55% !important;
        right: 0 !important;
        align-items: flex-start !important;
        padding-top: 50px !important;
    }
    .special-offer-inner {
        text-align: right !important;
        padding: 0 22px 0 0 !important;
    }
    .special-offer-section .mobile-br { display: none !important; }
    .special-offer-section .fs-15px { font-size: 10px !important; }
    .special-offer-section h2 { font-size: 16px !important; margin-bottom: 4px !important; }
    .special-offer-section .fs-18px { font-size: 11px !important; line-height: 1.3 !important; margin-bottom: 0 !important; }
    .special-offer-section #daily-countdown {
        justify-content: flex-end !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .special-offer-section .countdown-item,
    .special-offer-section .separate { font-size: 16px !important; padding: 0 3px !important; }
    .special-offer-section .btn-hero-cta {
        padding: 7px 14px !important;
        font-size: 12px !important;
        margin-top: 10px !important;
        float: right !important;
    }

    .featured-card .hover-zoom-in { height: 200px !important; }
    .promo-card { height: 140px !important; }

    .follow-newsletter-section { padding: 30px 0 36px !important; }
    .follow-newsletter-section h3 { font-size: 18px !important; margin-bottom: 10px !important; }
    .follow-newsletter-section p { font-size: 13px !important; margin-bottom: 16px !important; }
    .follow-newsletter-section .col-lg-6 { padding: 0 15px !important; min-width: unset !important; }
    .follow-newsletter-section input[type="email"] { padding: 10px 12px !important; font-size: 13px !important; }
    .follow-newsletter-section button[type="submit"] { padding: 10px 16px !important; font-size: 13px !important; }
    .follow-newsletter-section .social-icons { gap: 24px !important; font-size: 18px !important; }
}

/* ── Extra small mobile: 412px ── */
@media (max-width: 412px) {
    .hero { height: clamp(220px, calc(57.69vw + 12.31px), 250px); }

    #vertical-slider-slides img { height: clamp(380px, calc(134.62vw - 104.62px), 450px) !important; }

    .special-offer-inner {
        padding: 0 16px 0 0 !important;
    }
}

/* ── Smallest mobile: 360px ── */
@media (max-width: 360px) {
    .hero { height: 220px; }
    #vertical-slider-slides img { height: 380px !important; }
}
