/* ═══════════════════════════════════════════
           SWZ — SWIZER DESIGN SYSTEM
           All classes prefixed with swz- to prevent
           any conflicts with Tailwind or 3rd-party libs
        ═══════════════════════════════════════════ */

:root {
    --swz-black: #111111;
    --swz-off: #f6f5f2;
    --swz-gray: #767676;
    --swz-lgray: #b0b0b0;
    --swz-accent: #c9a96e;
    --swz-red: #d63333;
    --swz-white: #ffffff;
    --swz-green: #2a7a4a;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    background: #fff;
    color: var(--swz-black);
    overflow-x: hidden;
    /* Space for mobile bottom nav */
    padding-bottom: 0;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 68px;
    }
}

.pro-fa {
    font-family: "Manrope", sans-serif;
}

/* ── UTILITY ── */
.swz-fp {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.5px;
}

/* Alignment Fixes */
.swz-header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    height: 70px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.swz-header-left,
.swz-header-right {
    display: flex;
    align-items: center;
}

.swz-logo img {
    height: 45px; /* Fixed height for better alignment */
    width: auto;
    object-fit: contain;
}

/* Desktop Nav More Logic */
.swz-nav-more-wrap {
    position: relative;
    display: inline-block;
}

.swz-more-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
}

.swz-more-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    z-index: 100;
}

.swz-nav-more-wrap:hover .swz-more-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Drawer Styling */
.swz-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.swz-mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.swz-mobile-drawer.active {
    left: 0;
}
.swz-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.swz-mobile-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.swz-mobile-logo {
    height: 35px;
}

.swz-mobile-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.swz-mobile-search {
    display: flex;
    background: #f4f4f4;
    border-radius: 8px;
    padding: 2px 10px;
    margin-bottom: 25px;
}

.swz-mobile-search input {
    background: none;
    border: none;
    padding: 10px;
    flex: 1;
    font-size: 14px;
    outline: none;
}

.swz-nav-heading {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.swz-m-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #f9f9f9;
}

.swz-m-secondary {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.swz-mobile-footer {
    padding: 20px;
    background: #fcfcfc;
    font-size: 12px;
    color: #888;
}

/* Cart Badge Fix */
.swz-cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #000;
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ═══════════════════════════════════════════
           MOBILE BOTTOM NAVIGATION BAR
        ═══════════════════════════════════════════ */
.swz-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    height: 68px;
    padding: 0 4px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .swz-bottom-nav {
        display: flex;
        align-items: stretch;
    }
}

.swz-bnav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: var(--swz-gray);
    transition: color 0.2s;
    padding: 8px 4px;
    -webkit-tap-highlight-color: transparent;
}

.swz-bnav-item:hover,
.swz-bnav-item.swz-bnav-active {
    color: var(--swz-black);
}

.swz-bnav-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.swz-bnav-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
}

.swz-bnav-cart-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swz-bnav-badge {
    position: absolute;
    top: 8px;
    right: 15px;
    background: var(--swz-black);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    min-width: 15px;
    height: 15px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    font-family: "Manrope", sans-serif;
}

.swz-bnav-item--cart {
    color: var(--swz-black);
}

.swz-bnav-item--cart .swz-bnav-icon-bg {
    background: var(--swz-black);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.swz-bnav-item--cart:hover .swz-bnav-icon-bg {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.swz-bnav-item--cart .swz-bnav-icon {
    color: #fff;
    width: 20px;
    height: 20px;
}

/* ═══════════════════════════════════════════
           HERO SECTION
        ═══════════════════════════════════════════ */
.swz-hero-wrap {
    position: relative;
    height: 90vh;
    min-height: 560px;
    overflow: hidden;
    background: #111;
}

.swz-hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.swz-hero-slide.swz-active {
    opacity: 1;
}

.swz-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* .swz-hero-grad {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        115deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.44) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
} */

.swz-hero-content {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6%;
}

.swz-hero-tag {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.swz-hero-title {
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: clamp(50px, 8.5vw, 118px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 20px;
    font-style: italic;
}

.swz-hero-sub {
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 36px;
}

.swz-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Hero Controls */
.swz-hero-ctrl {
    position: absolute;
    z-index: 20;
}

.swz-hero-ctrl--arrows {
    bottom: 36px;
    right: 6%;
    display: flex;
    align-items: center;
    gap: 18px;
}

.swz-hero-arrows-btns {
    display: none;
    gap: 8px;
}

@media (min-width: 768px) {
    .swz-hero-arrows-btns {
        display: flex;
    }
}

.swz-hero-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.swz-hero-nav-btn:hover {
    background: #fff;
    color: #000;
}

.swz-hero-counter {
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.swz-hero-counter-num {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1;
    font-style: italic;
}

.swz-hero-counter-total {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

.swz-hero-ctrl--dots {
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.swz-hdot {
    display: inline-block;
    height: 2px;
    width: 8px;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.32);
    transition: all 0.35s;
    border-radius: 2px;
}

.swz-hdot.swz-on {
    width: 28px;
    background: #fff;
}

.swz-hero-ctrl--scroll {
    bottom: 36px;
    left: 6%;
    color: rgba(255, 255, 255, 0.4);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .swz-hero-ctrl--scroll {
        display: flex;
    }
}

.swz-hero-scroll-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.swz-hero-scroll-track {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

@keyframes swzScrl {
    0% {
        top: 0;
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.swz-scrl-inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 38%;
    background: rgba(255, 255, 255, 0.7);
    animation: swzScrl 1.8s ease-in-out infinite;
}

/* ── BUTTONS ── */
.swz-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 15px 34px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.swz-btn-outline-white:hover {
    background: #fff;
    color: var(--swz-black);
    border-color: #fff;
}

.swz-btn-outline-white--dim {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.28);
}

/* Round Button */
.swz-rnd-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    background: transparent;
    flex-shrink: 0;
}

.swz-rnd-btn--light {
    border-color: #ccc;
    color: var(--swz-black);
}

.swz-rnd-btn--light:hover {
    background: var(--swz-black);
    color: #fff;
    border-color: var(--swz-black);
}

.swz-rnd-btn--outline {
    border-color: #e0e0e0;
    color: var(--swz-black);
}

.swz-rnd-btn--outline:hover {
    background: var(--swz-black);
    color: #fff;
    border-color: var(--swz-black);
}

/* ═══════════════════════════════════════════
        HERO MOBILE OPTIMIZATION
═══════════════════════════════════════════ */

/* 📱 MOBILE (0 – 520px) */
@media (max-width: 520px) {
    .swz-hero-wrap {
        height: auto;
        min-height: 220px;
    }

    .swz-hero-content {
        padding: 60px 16px 40px;
    }

    .swz-hero-title {
        font-size: 24px;
    }

    .swz-hero-sub {
        display: none; /* optional for tight mobile */
    }
}


/* 📲 TABLET / LARGE MOBILE (521px – 768px) */
@media (min-width: 521px) and (max-width: 768px) {

    .swz-hero-wrap {
        height: auto;
        min-height: 520px;
    }

    .swz-hero-slide img {
        object-fit: cover;
        object-position: center;
    }

    /* CONTENT */
    .swz-hero-content {
        padding: 80px 20px 60px;
        justify-content: flex-end;
        text-align: center;
        align-items: center;
    }

    .swz-hero-tag {
        font-size: 9px;
        letter-spacing: 0.35em;
        margin-bottom: 10px;
    }

    .swz-hero-title {
        font-size: clamp(28px, 7vw, 42px);
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .swz-hero-sub {
        font-size: 13px;
        line-height: 1.6;
        max-width: 90%;
        margin-bottom: 22px;
    }

    /* BUTTON */
    .swz-hero-btns {
        justify-content: center;
    }

    .swz-btn-outline-white {
        padding: 12px 22px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    /* CONTROLS SIMPLIFY */
    .swz-hero-ctrl--arrows,
    .swz-hero-ctrl--scroll {
        display: none;
    }

    /* DOTS */
    .swz-hero-ctrl--dots {
        bottom: 18px;
        gap: 6px;
    }

    .swz-hdot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
    }

    .swz-hdot.swz-on {
        width: 18px;
        border-radius: 10px;
    }

    /* COUNTER */
    .swz-hero-counter {
        position: absolute;
        top: 18px;
        right: 16px;
    }

    .swz-hero-counter-num {
        font-size: 22px;
    }

    .swz-hero-counter-total {
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════════
           SECTION HELPERS
        ═══════════════════════════════════════════ */
.swz-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--swz-gray);
    margin-bottom: 10px;
}

.swz-sec-title {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: clamp(26px, 3.8vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.swz-sec-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--swz-gray);
    margin-top: 6px;
}

.swz-divider {
    width: 40px;
    height: 2px;
    background: var(--swz-accent);
    margin: 14px auto 0;
    display: block; /* important for centering */
}

/* ═══════════════════════════════════════════
           STATS SECTION
        ═══════════════════════════════════════════ */
.swz-stats-section {
    padding: 56px 0;
    background: var(--swz-black);
}

.swz-stat-num {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1;
}

.swz-stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--swz-gray);
    margin-top: 8px;
}

/* ═══════════════════════════════════════════
           CATEGORIES SECTION
        ═══════════════════════════════════════════ */
.swz-categories-section {
    padding: 80px 0;
    background: #fff;
}

.swz-cat-bubble {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: var(--swz-off);
}

.swz-cat-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.swz-cat-item:hover .swz-cat-bubble img {
    transform: scale(1.1);
}

.swz-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.swz-cat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════
           PRODUCT CARD
        ═══════════════════════════════════════════ */
.swz-prod-card {
    position: relative;
    background: #fff;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s;
    padding: 10px;
}

.swz-prod-card:hover {
    border-color: var(--swz-black);
}

.swz-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--swz-off);
}

.swz-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.swz-prod-card:hover .swz-card-img-wrap img {
    transform: scale(1.08);
}

.swz-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 6;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 10px;
    font-family: "Manrope", sans-serif;
}

.swz-card-action-btns {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateX(52px);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.swz-prod-card:hover .swz-card-action-btns {
    transform: translateX(0);
}

.swz-card-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
    transition: all 0.22s;
    color: var(--swz-gray);
}

.swz-card-icon-btn:hover {
    background: var(--swz-black);
    color: #fff;
}

.swz-card-icon-btn.swz-wished {
    color: var(--swz-red);
}

.swz-card-icon-btn.swz-wished svg {
    fill: var(--swz-red);
    stroke: var(--swz-red);
}

.swz-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px 12px 14px;
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 5;
}

.swz-prod-card:hover .swz-quick-add {
    transform: none;
}

.swz-qa-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--swz-gray);
    text-align: center;
    margin-bottom: 8px;
}

.swz-size-btns-row {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swz-size-btn {
    width: 34px;
    height: 34px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.swz-size-btn:hover {
    background: var(--swz-black);
    color: #fff;
    border-color: var(--swz-black);
}

.swz-add-to-bag-btn {
    width: 100%;
    margin-top: 9px;
    background: var(--swz-black);
    color: #fff;
    border: none;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 11px;
    cursor: pointer;
    transition: background 0.2s;
}

.swz-add-to-bag-btn:hover {
    background: #333;
}

.swz-card-info {
    padding: 14px 2px 8px;
}

.swz-card-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--swz-lgray);
    margin-bottom: 4px;
}

.swz-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--swz-black);
    margin-bottom: 6px;
    /* font-family: "Manrope", sans-serif; */
}

.swz-card-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.swz-price-now {
    font-size: 15px;
    font-weight: 700;
}

.swz-price-was {
    font-size: 13px;
    font-weight: 300;
    color: var(--swz-lgray);
    text-decoration: line-through;
}

.swz-price-off {
    font-size: 10px;
    font-weight: 700;
    color: var(--swz-red);
    margin-left: auto;
}

/* ═══════════════════════════════════════════
           PRODUCT SLIDER SECTIONS
        ═══════════════════════════════════════════ */
.swz-prod-slider-section {
    padding: 80px 0;
}

.swz-prod-slider-section--off {
    background: var(--swz-off);
}

.swz-prod-slider-section--white {
    background: var(--swz-off);
    border-top: 1px solid #f3f4f6;
}

.swz-slider-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 16px;
}

@media (min-width: 640px) {
    .swz-slider-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.swz-slider-nav-btns {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* Swiper override — clip container */
.swz-swiper-clip {
    overflow: hidden;
}

.swz-swiper-instance {
    width: 100%;
}

/* ═══════════════════════════════════════════
           LOOKBOOK SECTION
        ═══════════════════════════════════════════ */
.swz-lookbook-section {
    padding: 80px 0;
    background: #fff;
}

.swz-lb-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.swz-lb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.85s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.swz-lb-card:hover img {
    transform: scale(1.06);
}

.swz-lb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        transparent 55%
    );
    pointer-events: none;
}

.swz-lb-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 32px;
    color: white;
    z-index: 2;
}

.swz-lb-content--sm {
    padding: 24px;
}

.swz-lb-chapter {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.swz-lb-chapter--sm {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.swz-lb-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.1;
    font-style: italic;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.swz-lb-title--sm {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 24px;
    font-style: italic;
    letter-spacing: 0.5px;
}

.swz-lb-explore-btn {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding-bottom: 4px;
    cursor: pointer;
}

/* ═══════════════════════════════════════════
           FEATURES SECTION
        ═══════════════════════════════════════════ */
.swz-features-section {
    padding: 64px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    background: var(--swz-white);
}

.swz-feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--swz-black);
}

.swz-feature-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.swz-feature-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--swz-gray);
}

/* ═══════════════════════════════════════════
           BRAND STORY SECTION
        ═══════════════════════════════════════════ */
.swz-brand-story-section {
    overflow: hidden;
    background: var(--swz-black);
}

.swz-brand-story-img {
    position: relative;
    overflow: hidden;
    height: 560px;
    min-height: 320px;
}

.swz-brand-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
}

.swz-brand-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 32px;
    color: white;
}

@media (min-width: 768px) {
    .swz-brand-story-content {
        padding: 64px;
    }
}

.swz-brand-eyebrow {
    color: var(--swz-gray);
}

.swz-brand-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 800;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.05;
    font-style: italic;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.swz-brand-desc {
    color: #9a9a9a;
    font-size: 15px;
    font-weight: 300;
    max-width: 420px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.swz-brand-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.swz-brand-stat-num {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 36px;
    font-style: italic;
    letter-spacing: 0.5px;
}

.swz-brand-stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--swz-gray);
    margin-top: 4px;
}

.swz-brand-stat-sep {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ═══════════════════════════════════════════
           TESTIMONIALS SECTION
        ═══════════════════════════════════════════ */
.swz-testimonials-section {
    padding: 80px 0;
    background: white;
}

.swz-t-slide {
    display: none;
}

.swz-t-slide.swz-active {
    display: block;
    animation: swzFadeUp 0.5s ease;
}

@keyframes swzFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.swz-t-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--swz-accent);
    font-size: 20px;
    letter-spacing: 0.18em;
}

.swz-t-quote {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: clamp(20px, 3.2vw, 34px);
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--swz-black);
    letter-spacing: 0.5px;
}

.swz-t-author-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.swz-t-author-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.swz-t-author-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.swz-t-author-role {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--swz-gray);
    margin-top: 2px;
}

.swz-t-nav-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.swz-t-dot {
    height: 5px;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s;
}

.swz-t-dot--active {
    width: 24px;
    background: var(--swz-black);
}

.swz-t-dot--inactive {
    width: 8px;
}
/* ═══════════════════════════════════════════
           INSTAGRAM SECTION
═══════════════════════════════════════════ */
.swz-insta-section {
    padding: 50px 16px;
}

/* Header */
.swz-insta-header {
    text-align: center;
    margin-bottom: 24px;
}

.swz-insta-handle {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 24px;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
           GRID (MOBILE FIRST)
═══════════════════════════════════════════ */
.swz-insta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* Tablet */
@media (min-width: 600px) {
    .swz-insta-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .swz-insta-grid {
        max-width: 1440px;
        margin: 0 auto;
    }

    .swz-insta-handle {
        font-size: 28px;
    }
    .swz-insta-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }
}

/* ═══════════════════════════════════════════
           IMAGE CELL
═══════════════════════════════════════════ */
.swz-insta-cell {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}

/* Image */
.swz-insta-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Hover zoom (desktop only) */
@media (hover: hover) {
    .swz-insta-cell:hover img {
        transform: scale(1.08);
    }
}

/* ═══════════════════════════════════════════
           OVERLAY
═══════════════════════════════════════════ */
.swz-insta-cell-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

/* Hover overlay */
@media (hover: hover) {
    .swz-insta-cell:hover .swz-insta-cell-overlay {
        background: rgba(0, 0, 0, 0.35);
    }
}

/* Link (important fix) */
.swz-insta-cell-overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═══════════════════════════════════════════
           ICON FIX (MAIN)
═══════════════════════════════════════════ */
.swz-shop-icon,
.swz-insta-ig-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;

    color: #fff;
    opacity: 0;
    transform: scale(0.8);

    transition: all 0.3s ease;

    display: block;
}

/* Hover icon */
@media (hover: hover) {
    .swz-insta-cell:hover .swz-shop-icon,
    .swz-insta-cell:hover .swz-insta-ig-icon {
        opacity: 1;
        transform: scale(1);
    }
}

/* ═══════════════════════════════════════════
           MOBILE FIX (NO HOVER DEVICES)
═══════════════════════════════════════════ */
@media (hover: none) {
    .swz-insta-cell-overlay {
        background: rgba(0, 0, 0, 0.2);
    }

    .swz-shop-icon,
    .swz-insta-ig-icon {
        opacity: 1;
        transform: scale(1);
    }
}

/* ═══════════════════════════════════════════
           OPTIONAL PREMIUM TOUCH
═══════════════════════════════════════════ */
.swz-shop-icon,
.swz-insta-ig-icon {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

/* ═══════════════════════════════════════════
           NEWSLETTER SECTION
        ═══════════════════════════════════════════ */
.swz-newsletter-section {
    padding: 80px 0;
    text-align: center;
    background: var(--swz-black);
    color: white;
}

.swz-nl-eyebrow {
    color: var(--swz-gray);
}

.swz-nl-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 800;
    font-size: clamp(34px, 5vw, 54px);
    font-style: italic;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.swz-nl-desc {
    color: #9a9a9a;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 40px;
}

.swz-nl-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .swz-nl-form {
        flex-direction: row;
    }
}

.swz-nl-input {
    flex: 1;
    background: transparent;
    border: 1.5px solid #2a2a2a;
    color: #fff;
    padding: 15px 18px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s;
}

.swz-nl-input:focus {
    border-color: #555;
}

.swz-nl-input::placeholder {
    color: #555;
}

.swz-nl-submit-btn {
    background: #fff;
    color: var(--swz-black);
    padding: 15px 30px;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.swz-nl-submit-btn:hover {
    background: #e8e8e8;
}

.swz-nl-note {
    margin-top: 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #3a3a3a;
}

/* ═══════════════════════════════════════════
           FOOTER
═══════════════════════════════════════════ */ /* ═══ FOOTER ═══ */
.swz-footer {
    background: var(--swz-black);
    color: var(--swz-white);

    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.swz-footer-inner {
    max-width: 1400px;
    margin: auto;
    padding: 80px 24px 40px;
}

/* TOP GRID */
.swz-footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

@media (max-width: 1024px) {
    .swz-footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .swz-footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .swz-footer-brand {
        grid-column: span 2;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .swz-footer-top {
        grid-template-columns: 1fr;
    }
    .swz-footer-brand {
        grid-column: span 1;
    }
}

/* BRAND */
.swz-footer-brand .swz-footer-logo {
    font-size: 32px;
    font-weight: 800;
    font-family: "Playfair Display", serif;
    font-style: italic;
    text-decoration: none;
    color: var(--swz-white);
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.swz-footer-brand p {
    font-size: 14px;
    color: var(--swz-lgray);
    line-height: 1.8;
    max-width: 320px;
    margin-bottom: 30px;
}

/* SOCIAL ICONS */
.swz-social-container {
    display: flex;
    gap: 15px;
}

.swz-social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--swz-white);
}

.swz-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.swz-social-link:hover {
    background: var(--swz-accent);
    border-color: var(--swz-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* COLUMN HEADINGS */
.swz-footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--swz-white);
    position: relative;
}

.swz-footer-col h4::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--swz-accent);
    margin-top: 10px;
}

/* LINKS */
.swz-footer-col a {
    display: block;
    font-size: 14px;
    color: var(--swz-lgray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.swz-footer-col a:hover {
    color: var(--swz-white) !important;
    padding-left: 5px;
}

/* BOTTOM SECTION */
.swz-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.swz-footer-bottom p {
    font-size: 12px;
    color: var(--swz-gray);
    font-weight: 400;
}

.swz-footer-bottom-links {
    display: flex;
    gap: 24px;
}

.swz-footer-bottom-links a {
    font-size: 12px;
    color: var(--swz-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.swz-footer-bottom-links a:hover {
    color: var(--swz-white);
}

/* ═══ ACCESSIBILITY ═══ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
/* ═══════════════════════════════════════════
           CART OVERLAY + DRAWER
        ═══════════════════════════════════════════ */
.swz-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
    z-index: 9998;
}

.swz-cart-overlay.swz-open {
    opacity: 1;
    pointer-events: auto;
}

.swz-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 460px;
    max-width: 100vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 9999;
    box-shadow: -16px 0 60px rgba(0, 0, 0, 0.14);
}

@media (max-width: 767px) {
    .swz-cart-drawer {
        width: 100vw;
    }
}

.swz-cart-drawer.swz-open {
    transform: none;
}

.swz-cart-drawer-head {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.swz-cart-drawer-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.swz-cart-drawer-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 20px;
    font-style: italic;
}

.swz-cart-items-count-badge {
    background: var(--swz-black);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    font-family: "Manrope", sans-serif;
}

.swz-cart-close-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.swz-cart-close-btn:hover {
    background: #f3f3f3;
}

.swz-cart-progress-strip {
    padding: 14px 24px;
    background: #f8f8f6;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.swz-cart-progress-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.swz-cart-progress-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--swz-gray);
}

.swz-cart-progress-val {
    font-size: 11px;
    font-weight: 700;
}

.swz-progress-bar-track {
    height: 3px;
    background: #ebebeb;
    border-radius: 2px;
    overflow: hidden;
}

.swz-progress-bar-fill {
    height: 100%;
    background: var(--swz-black);
    border-radius: 2px;
    transition: width 0.4s;
}

.swz-cart-progress-msg {
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
    color: var(--swz-green);
}

.swz-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px;
}

.swz-cart-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.swz-cart-item-thumb {
    width: 84px;
    height: 104px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 1px;
}

.swz-cart-item-info {
    flex: 1;
    min-width: 0;
}

.swz-cart-item-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--swz-gray);
    margin-bottom: 3px;
}

.swz-cart-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.swz-cart-item-variant {
    font-size: 13px;
    font-weight: 300;
    color: var(--swz-gray);
    margin-bottom: 14px;
}

.swz-cart-item-row-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swz-qty-controls {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
}

.swz-qty-btn {
    width: 33px;
    height: 33px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-family: "Manrope", sans-serif;
    flex-shrink: 0;
}

.swz-qty-btn:hover {
    background: var(--swz-black);
    color: #fff;
}

.swz-qty-display {
    width: 38px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.swz-cart-item-price {
    font-size: 15px;
    font-weight: 700;
}

.swz-cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    align-self: flex-start;
    margin-top: 2px;
    flex-shrink: 0;
    transition: color 0.2s;
}

.swz-cart-item-remove:hover {
    color: var(--swz-red);
}

.swz-cart-footer-wrap {
    flex-shrink: 0;
    border-top: 1px solid #f0f0f0;
}

.swz-cart-totals-wrap {
    padding: 20px 24px;
}

.swz-cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.swz-cart-subtotal-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--swz-gray);
}

.swz-cart-subtotal-val {
    font-size: 18px;
    font-weight: 700;
}

.swz-cart-shipping-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.swz-cart-shipping-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--swz-gray);
}

.swz-cart-shipping-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--swz-green);
}

.swz-cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
}

.swz-cart-total-label {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 18px;
    font-style: italic;
}

.swz-cart-total-val {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 24px;
}

.swz-cart-action-btns {
    padding: 0 24px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.swz-cart-view-btn {
    padding: 15px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.swz-cart-view-btn:hover {
    background: #f7f7f7;
}

.swz-cart-checkout-btn {
    padding: 15px;
    background: var(--swz-black);
    color: #fff;
    border: none;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}

.swz-cart-checkout-btn:hover {
    opacity: 0.85;
}

/* ═══════════════════════════════════════════
           QUICK VIEW MODAL
        ═══════════════════════════════════════════ */
.swz-qv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 9996;
}

.swz-qv-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 90%;
    max-width: 480px;
    background: #fff;
    z-index: 9997;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 32px;
}

.swz-qv-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--swz-gray);
}

.swz-qv-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--swz-gray);
    margin-bottom: 4px;
}

.swz-qv-name {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 8px;
}

.swz-qv-price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.swz-qv-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--swz-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.swz-qv-add-btn {
    width: 100%;
    background: var(--swz-black);
    color: #fff;
    border: none;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.swz-qv-add-btn:hover {
    background: #333;
}

/* ═══════════════════════════════════════════
           RESPONSIVE TWEAKS
        ═══════════════════════════════════════════ */
@media (max-width: 640px) {
    .swz-hero-content {
        padding: 0 5%;
    }
    .fx-search {
        display: none;
    }

    .swz-btn-outline-white {
        padding: 13px 22px;
        font-size: 11px;
    }

    .swz-hero-sub {
        font-size: 13px;
    }

    .swz-hero-title {
        font-size: clamp(44px, 13vw, 68px);
    }
}
/* ===== WRAPPER ===== */
.fx-search {
    position: relative;
    width: 240px;
    font-family: "DM Sans", system-ui, sans-serif;
}

/* ===== SEARCH BOX ===== */
.fx-search-box {
    position: relative;
    display: block; /* default desktop */
}

.fx-search-box input {
    width: 100%;
    height: 38px;
    padding: 0 38px 0 14px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    font-size: 13px;
    transition: all 0.25s ease;
}

.fx-search-box input:focus {
    background: #fff;
    border-color: #111;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
    outline: none;
}

/* ===== ICON ===== */
.fx-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666;
    pointer-events: none;
}

/* ===== DROPDOWN ===== */
.fx-search-dropdown {
    position: absolute;
    top: 46px;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: none;
    z-index: 999;
    border: 1px solid #f1f1f1;
}

/* ✅ Show dropdown on focus */
.fx-search:focus-within .fx-search-dropdown {
    display: block;
}

/* ===== ITEM ===== */
.fx-search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.fx-search-item:hover {
    background: #f9fafb;
}

/* ===== IMAGE ===== */
.fx-search-item img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 6px;
}

/* ===== TEXT ===== */
.fx-search-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.fx-search-title {
    font-size: 13px;
    font-weight: 500;
    color: #111;
    margin: 0;
}

.fx-search-price {
    font-size: 11px;
    color: #777;
}

/* ===================================================== */
/* 📱 MOBILE + TABLET (0px → 1024px) → HIDE SEARCH */
/* ===================================================== */
@media (max-width: 1024px) {
    .fx-search-box {
        display: none;
    }

    /* optional fullscreen dropdown */
    .fx-search-dropdown {
        display: none;
    }

    .fx-search-item {
        padding: 14px;
        gap: 14px;
    }

    .fx-search-item img {
        width: 52px;
        height: 52px;
    }

    .fx-search-title {
        font-size: 15px;
    }

    .fx-search-price {
        font-size: 13px;
    }
}

/* ===================================================== */
/* 💻 DESKTOP ONLY (1025px+) → SHOW SEARCH */
/* ===================================================== */
@media (min-width: 1025px) {
    .fx-search-box {
        display: block !important;
    }

    .fx-search-dropdown {
        position: absolute;
        height: auto;
    }
}

/* ===== DESCRIPTION BODY ===== */
.swz-desc-body {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin-top: 14px;
}

/* ===== PARAGRAPH ===== */
.swz-desc-body p {
    margin-bottom: 16px;
    color: #444;
}

/* ===== FIRST PARAGRAPH (INTRO STYLE) ===== */
.swz-desc-body p:first-child {
    font-size: 15.5px;
    color: #222;
}

/* ===== STRONG / HIGHLIGHT ===== */
.swz-desc-body strong {
    color: #111;
    font-weight: 600;
}

/* ===== HEADINGS INSIDE CONTENT ===== */
.swz-desc-body h1,
.swz-desc-body h2,
.swz-desc-body h3,
.swz-desc-body h4 {
    font-weight: 600;
    color: #111;
    margin: 18px 0 8px;
    font-size: 16px;
}

/* ===== AUTO SECTION BLOCK (Key Features, Care, etc.) ===== */
.swz-desc-body p:contains("Key Features"),
.swz-desc-body p:contains("Care Instructions"),
.swz-desc-body p:contains("Style Tip") {
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

/* ===== CARD STYLE FOR BULK TEXT (SAFE VERSION) ===== */
.swz-desc-body p + p {
    background: #fafafa;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #f1f1f1;
}

/* ===== LIST STYLE (if <ul> used) ===== */
.swz-desc-body ul {
    margin: 10px 0 16px;
    padding-left: 18px;
}

.swz-desc-body li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 6px;
}

/* ===== CUSTOM BULLETS ===== */
.swz-desc-body li::marker {
    color: #111;
}

/* ===== DASH (-) BASED LIST FIX ===== */
.swz-desc-body p {
    white-space: pre-line; /* supports line breaks */
}

/* ===== LINK STYLE ===== */
.swz-desc-body a {
    color: #111;
    text-decoration: underline;
    transition: 0.2s;
}

.swz-desc-body a:hover {
    opacity: 0.7;
}

/* ===== IMAGE INSIDE DESCRIPTION ===== */
.swz-desc-body img {
    width: 100%;
    border-radius: 10px;
    margin: 12px 0;
}

/* ===== HOVER (SUBTLE PREMIUM EFFECT) ===== */
.swz-desc-body p:hover {
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

/* ===== DIVIDER STYLE (if hr used) ===== */
.swz-desc-body hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
    .swz-desc-body {
        font-size: 14px;
        line-height: 1.7;
    }

    .swz-desc-body p {
        margin-bottom: 14px;
    }
}
