/**
 * SmartWave — Components
 */

/* ─── Buttons ─── */
.btn {
    font-weight: var(--swb-weight-semibold);
    border-radius: var(--swb-radius-btn);
    padding: 0.625rem 1.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform var(--swb-duration) var(--swb-ease),
        box-shadow var(--swb-duration) var(--swb-ease),
        background var(--swb-duration) var(--swb-ease),
        border-color var(--swb-duration) var(--swb-ease);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: var(--swb-text-base);
    min-height: 52px;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: var(--swb-text-sm);
    min-height: 36px;
}

.btn-swb-primary {
    background: var(--swb-gradient-brand);
    border: none;
    color: var(--swb-white);
    box-shadow: var(--swb-shadow-sm);
}

.btn-swb-primary:hover {
    color: var(--swb-white);
    box-shadow: var(--swb-shadow-md);
}

.btn-swb-outline {
    --bs-btn-color: var(--swb-primary);
    --bs-btn-border-color: var(--swb-primary);
    --bs-btn-hover-bg: var(--swb-primary);
    --bs-btn-hover-border-color: var(--swb-primary);
    --bs-btn-hover-color: var(--swb-white);
    background: transparent;
}

.btn-swb-accent {
    background: var(--swb-gradient-brand);
    border: none;
    color: var(--swb-white);
    box-shadow: var(--swb-shadow-glow);
}

.btn-swb-accent:hover {
    color: var(--swb-white);
    box-shadow: 0 20px 44px rgba(25, 194, 240, 0.4);
}

.btn-hero-primary {
    background: var(--swb-white);
    color: var(--swb-primary);
    border: none;
    font-weight: var(--swb-weight-bold);
    box-shadow: var(--swb-shadow-glow);
}

.btn-hero-primary:hover {
    background: var(--swb-accent);
    color: var(--swb-dark);
}

.btn-hero-outline {
    background: transparent;
    color: var(--swb-white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--swb-glass-blur);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--swb-white);
    color: var(--swb-white);
}

.btn-hero-light {
    background: var(--swb-white);
    color: var(--swb-primary);
    border: none;
    font-weight: var(--swb-weight-bold);
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    height: var(--swb-header-h);
    overflow: visible;
    transition: background var(--swb-duration-slow) var(--swb-ease),
        box-shadow var(--swb-duration-slow) var(--swb-ease),
        backdrop-filter var(--swb-duration-slow) var(--swb-ease),
        border-color var(--swb-duration-slow) var(--swb-ease);
}

.site-header.mobile-menu-open {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(42, 57, 190, 0.08);
    box-shadow: 0 4px 20px rgba(42, 57, 190, 0.06);
    z-index: 1041;
}

body.mobile-nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.35);
    z-index: 1035;
    pointer-events: none;
    animation: mobileMenuBackdropIn 0.25s var(--swb-ease-out);
}

@keyframes mobileMenuBackdropIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body.page-home .site-header.mobile-menu-open .site-logo-text,
body.page-home .site-header.mobile-menu-open .nav-cart-btn {
    color: var(--swb-primary);
}

body.page-home .site-header.mobile-menu-open .site-logo-text span {
    color: var(--swb-secondary);
}

body.page-home .site-header.mobile-menu-open .nav-cart-btn {
    border-color: rgba(42, 57, 190, 0.12);
    background: #FFFFFF;
    color: var(--swb-primary);
}

body.page-home .site-header.mobile-menu-open .mobile-menu-toggle {
    border-color: rgba(42, 57, 190, 0.12);
    background: #FFFFFF;
}

body.page-home .site-header.mobile-menu-open .mobile-menu-toggle span {
    background: var(--swb-primary);
}

.site-header .navbar {
    height: var(--swb-header-h);
    padding: 0;
}

.site-header .container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-header .navbar > .container {
    flex-wrap: nowrap;
}

body.page-home .site-header:not(.is-scrolled) {
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

body.page-home .site-header:not(.is-scrolled) .nav-link-swb {
    color: rgba(255, 255, 255, 0.9);
}

body.page-home .site-header:not(.is-scrolled) .nav-link-swb:hover,
body.page-home .site-header:not(.is-scrolled) .nav-link-swb.active {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.14);
}

body.page-home .site-header:not(.is-scrolled) .site-logo-text {
    color: var(--swb-white);
}

body.page-home .site-header:not(.is-scrolled) .site-logo-text span {
    color: var(--swb-accent);
}

body.page-home .site-header:not(.is-scrolled) .nav-cart-btn {
    color: var(--swb-white);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

body.page-home .site-header:not(.is-scrolled) .nav-cart-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
}

body.page-home .site-header:not(.is-scrolled) .nav-order-btn {
    background: #FFFFFF;
    color: var(--swb-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body.page-home .site-header:not(.is-scrolled) .nav-order-btn:hover {
    background: var(--swb-accent);
    color: var(--swb-dark);
}

body.page-home .site-header:not(.is-scrolled) .mobile-menu-toggle {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

body.page-home .site-header:not(.is-scrolled) .mobile-menu-toggle span {
    background: #FFFFFF;
}

.site-header.is-scrolled,
body:not(.page-home) .site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid rgba(42, 57, 190, 0.1);
    box-shadow: 0 8px 32px rgba(42, 57, 190, 0.08);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo-img {
    display: block;
    width: auto;
    height: 42px;
    max-width: min(193px, 52vw);
    object-fit: contain;
    object-position: left center;
}

.site-logo-img--dark {
    display: none;
}

body.page-home .site-header:not(.is-scrolled):not(.mobile-menu-open) .site-logo-img--light {
    display: none;
}

body.page-home .site-header:not(.is-scrolled):not(.mobile-menu-open) .site-logo-img--dark {
    display: block;
}

body.page-home .site-header.mobile-menu-open .site-logo-img--light {
    display: block;
}

body.page-home .site-header.mobile-menu-open .site-logo-img--dark {
    display: none;
}

.site-logo-img--footer {
    height: 52px;
    max-width: min(240px, 70vw);
}

.site-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--swb-gradient-brand);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 14px rgba(42, 57, 190, 0.28);
}

.site-logo-text {
    font-size: 1.25rem;
    font-weight: var(--swb-weight-extrabold);
    color: var(--swb-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.site-logo-text span {
    color: var(--swb-secondary);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.125rem;
    margin: 0 auto;
    list-style: none;
    padding: 0.25rem;
    border-radius: 50px;
    background: rgba(42, 57, 190, 0.04);
    border: 1px solid rgba(42, 57, 190, 0.06);
}

body.page-home .site-header:not(.is-scrolled) .nav-desktop {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
}

.nav-link-swb {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: var(--swb-weight-semibold);
    color: var(--swb-text);
    text-decoration: none;
    min-height: 40px;
    border-radius: 50px;
    white-space: nowrap;
    transition: color var(--swb-duration) var(--swb-ease),
        background var(--swb-duration) var(--swb-ease),
        box-shadow var(--swb-duration) var(--swb-ease);
}

.nav-link-swb::after {
    display: none;
}

.nav-link-swb:hover {
    color: var(--swb-primary);
    background: rgba(42, 57, 190, 0.08);
}

.nav-link-swb.active {
    color: #FFFFFF;
    background: var(--swb-gradient-brand);
    box-shadow: 0 4px 14px rgba(42, 57, 190, 0.22);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    border: 1px solid rgba(42, 57, 190, 0.12);
    background: #FFFFFF;
    color: var(--swb-primary);
    cursor: pointer;
    transition: transform var(--swb-duration) var(--swb-ease),
        box-shadow var(--swb-duration) var(--swb-ease),
        background var(--swb-duration) var(--swb-ease),
        border-color var(--swb-duration) var(--swb-ease);
}

.nav-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 57, 190, 0.14);
    border-color: rgba(42, 57, 190, 0.22);
    background: #F8F9FF;
}

.nav-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0 1.25rem;
    border-radius: 50px;
    border: none;
    background: var(--swb-gradient-brand);
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: var(--swb-weight-bold);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(42, 57, 190, 0.28);
    transition: transform var(--swb-duration) var(--swb-ease),
        box-shadow var(--swb-duration) var(--swb-ease),
        background var(--swb-duration) var(--swb-ease);
}

.nav-order-btn:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(42, 57, 190, 0.32);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 0.6875rem;
    font-weight: var(--swb-weight-bold);
    line-height: 20px;
    text-align: center;
    color: var(--swb-white);
    background: linear-gradient(135deg, #FF6B6B, #EE5A24);
    border: 2px solid #FFFFFF;
    border-radius: var(--swb-radius-full);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity var(--swb-duration) var(--swb-ease), transform var(--swb-duration) var(--swb-ease);
}

.cart-badge.is-visible {
    opacity: 1;
    transform: scale(1);
}

.cart-badge.is-pulse {
    animation: badgePulse 0.5s var(--swb-ease);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.35); }
}

.mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(42, 57, 190, 0.12);
    border-radius: 50px;
    background: #FFFFFF;
    cursor: pointer;
    transition: background var(--swb-duration) var(--swb-ease),
        border-color var(--swb-duration) var(--swb-ease),
        box-shadow var(--swb-duration) var(--swb-ease);
}

.mobile-menu-toggle:hover {
    background: #F8F9FF;
    box-shadow: 0 4px 14px rgba(42, 57, 190, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--swb-primary);
    border-radius: 2px;
    transition: transform var(--swb-duration) var(--swb-ease), opacity var(--swb-duration) var(--swb-ease);
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-panel {
    position: fixed;
    top: var(--swb-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1038;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.28s var(--swb-ease-out),
        visibility 0.28s var(--swb-ease-out),
        transform 0.28s var(--swb-ease-out);
}

.site-header.mobile-menu-open .mobile-menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-panel__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    padding: 0.5rem 0;
    margin: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: var(--swb-weight-semibold);
    color: var(--swb-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(42, 57, 190, 0.06);
    transition: background var(--swb-duration) var(--swb-ease), color var(--swb-duration) var(--swb-ease);
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus-visible {
    background: rgba(42, 57, 190, 0.04);
    color: var(--swb-primary);
}

.mobile-menu-link.active {
    color: var(--swb-primary);
    background: rgba(42, 57, 190, 0.07);
    box-shadow: inset 3px 0 0 var(--swb-primary);
}

.mobile-menu-panel__footer {
    flex-shrink: 0;
    padding: 1rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(42, 57, 190, 0.08);
    background: #F8F9FF;
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 50px;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    background: var(--swb-gradient-brand);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: var(--swb-weight-bold);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(42, 57, 190, 0.22);
    transition: transform var(--swb-duration) var(--swb-ease), box-shadow var(--swb-duration) var(--swb-ease);
}

.mobile-menu-cta:hover,
.mobile-menu-cta:focus-visible {
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(42, 57, 190, 0.28);
}

@media (min-width: 1200px) {
    .nav-desktop {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

@media (min-width: 1400px) {
    .nav-link-swb {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* ─── Hero ─── */
.swb-hero {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--swb-gradient-hero);
    color: var(--swb-white);
    overflow: visible;
    margin-top: calc(var(--swb-header-h) * -1);
    padding-top: var(--swb-header-h);
    padding-bottom: 80px;
    box-sizing: border-box;
    min-height: 100svh;
    min-height: 100dvh;
}

.swb-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2;
    color: #F8F9FF;
    transform: translateY(1px);
    pointer-events: none;
}

.swb-hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
    vertical-align: bottom;
}

.swb-hero + .home-categories {
    margin-top: -1px;
}

.swb-hero .container {
    position: relative;
    z-index: 3;
    padding-top: var(--swb-space-2);
    padding-bottom: 0;
    width: 100%;
}

.swb-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--swb-space-4);
    align-items: center;
    min-height: 0;
}

.swb-hero-col--text {
    max-width: 560px;
}

.swb-hero-eyebrow {
    display: inline-block;
    font-size: var(--swb-text-xs);
    font-weight: var(--swb-weight-bold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--swb-accent);
    margin-bottom: var(--swb-space-3);
    padding: 0.4rem 1rem;
    border-radius: var(--swb-radius-pill);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swb-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: var(--swb-weight-extrabold);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--swb-space-3);
    color: var(--swb-white);
}

.swb-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    max-width: 32rem;
    margin-bottom: var(--swb-space-5);
    font-weight: var(--swb-weight-medium);
}

.swb-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--swb-space-2);
}

.swb-hero-cta .btn {
    flex: 0 1 auto;
}

.swb-hero-bottle-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    height: 100%;
}

.swb-hero-bottle-glow {
    position: absolute;
    inset: 10% 5% 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.25), transparent 65%);
    pointer-events: none;
}

.swb-hero-bottle {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: auto;
    animation: bottleFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.22));
}

@keyframes bottleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Category cards */
.swb-cat-scroll {
    display: flex;
    gap: var(--swb-space-2);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: var(--swb-space-2);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.swb-cat-scroll::-webkit-scrollbar {
    display: none;
}

.swb-cat-card {
    flex: 0 0 min(280px, 80vw);
    scroll-snap-align: start;
    padding: var(--swb-space-4);
    border-radius: var(--swb-radius-card);
    background: var(--swb-white);
    border: 1px solid var(--swb-border);
    box-shadow: var(--swb-shadow-sm);
    transition: transform var(--swb-duration) var(--swb-ease), box-shadow var(--swb-duration) var(--swb-ease);
    text-decoration: none;
    color: inherit;
}

.swb-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--swb-shadow-card-hover);
    border-color: rgba(29, 134, 232, 0.3);
}

.swb-cat-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    padding: var(--swb-space-3);
    border-radius: var(--swb-radius-card);
    background: var(--swb-gradient-brand);
    color: var(--swb-white);
    text-decoration: none;
    font-weight: var(--swb-weight-semibold);
    transition: transform var(--swb-duration) var(--swb-ease), box-shadow var(--swb-duration) var(--swb-ease);
}

.swb-cat-pill:hover {
    transform: translateY(-8px);
    box-shadow: var(--swb-shadow-card-hover);
    color: var(--swb-white);
}

.swb-cat-pill-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--swb-radius-full);
    background: rgba(255, 255, 255, 0.2);
    font-size: 1.25rem;
    font-weight: var(--swb-weight-extrabold);
}

@media (min-width: 992px) {
    .swb-cat-scroll {
        flex-wrap: wrap;
        justify-content: center;
        overflow: visible;
    }
}

.swb-cat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--swb-radius-btn);
    background: var(--swb-gradient-brand);
    color: var(--swb-white);
    font-weight: var(--swb-weight-extrabold);
    font-size: 1.25rem;
    margin-bottom: var(--swb-space-2);
}

@media (min-width: 992px) {
    .swb-cat-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--swb-space-3);
    }

    .swb-cat-scroll {
        display: contents;
    }

    .swb-cat-card {
        flex: unset;
    }
}

/* Feature cards */
.swb-feature-card {
    padding: var(--swb-space-4);
    border-radius: var(--swb-radius-card);
    background: var(--swb-white);
    border: 1px solid var(--swb-border);
    box-shadow: var(--swb-shadow-xs);
    height: 100%;
    transition: transform var(--swb-duration) var(--swb-ease), box-shadow var(--swb-duration) var(--swb-ease);
}

.swb-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--swb-shadow-md);
}

.swb-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--swb-radius-btn);
    background: rgba(42, 57, 190, 0.08);
    color: var(--swb-primary);
    margin-bottom: var(--swb-space-2);
}

.swb-feature-icon svg {
    width: 24px;
    height: 24px;
}

/* Conversion blocks */
.swb-conversion {
    padding: var(--swb-space-6);
    border-radius: var(--swb-radius-card);
    background: var(--swb-gradient-dark);
    color: var(--swb-white);
    box-shadow: var(--swb-shadow-lg);
}

.swb-sustain-teaser {
    border-radius: var(--swb-radius-card);
    background: var(--swb-gradient-sustain);
    color: var(--swb-white);
    padding: var(--swb-space-6);
    overflow: hidden;
    position: relative;
}

.swb-sustain-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(circle at 20% 50%, white 1px, transparent 1px);
    background-size: 24px 24px;
}

.swb-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--swb-space-4);
    justify-content: center;
}

.swb-contact-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--swb-radius-pill);
    background: var(--swb-white);
    border: 1px solid var(--swb-border);
    box-shadow: var(--swb-shadow-sm);
    text-decoration: none;
    color: var(--swb-text);
    min-height: 44px;
    transition: transform var(--swb-duration) var(--swb-ease), box-shadow var(--swb-duration) var(--swb-ease);
}

.swb-contact-chip:hover {
    transform: translateY(-2px);
    box-shadow: var(--swb-shadow-md);
    color: var(--swb-primary);
}

.swb-contact-chip-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--swb-radius-full);
    background: rgba(42, 57, 190, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swb-primary);
}

/* Cards */
.swb-card {
    background: var(--swb-white);
    border: 1px solid var(--swb-border);
    border-radius: var(--swb-radius-card);
    box-shadow: var(--swb-shadow-sm);
}

.checkout-card {
    background: var(--swb-white);
    border: 1px solid var(--swb-border);
    border-radius: var(--swb-radius-card);
    box-shadow: var(--swb-shadow-sm);
}

/* Product cards */
.product-card-premium {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #FFFFFF;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(42, 57, 190, 0.15);
}

.product-card-premium .card-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    background: #F8F9FF;
    padding: 24px;
    overflow: hidden;
    text-decoration: none;
}

.product-card-premium .product-card-img {
    width: auto;
    max-width: 100%;
    max-height: 180px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s var(--swb-ease);
}

.product-card-premium:hover .product-card-img {
    transform: scale(1.04);
}

.product-card-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2A39BE, #19C2F0);
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.product-card-premium .card-img-wrap.is-fallback .product-card-fallback {
    display: flex;
}

.product-card-premium .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
    padding: 20px;
}

.product-card-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    background: #E8F4FF;
    color: #1D86E8;
    align-self: flex-start;
    margin-bottom: 4px;
}

.product-card-name {
    font-size: 1rem;
    font-weight: 600;
    color: #0D1117;
    margin: 8px 0;
    line-height: var(--swb-leading-tight);
}

.product-card-name a {
    color: var(--swb-text);
    text-decoration: none;
}

.product-card-name a:hover {
    color: var(--swb-primary);
}

.product-card-premium .product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2A39BE;
    margin-bottom: 12px !important;
}

.product-card-premium .btn-add-cart {
    flex: 1;
    min-width: 0;
    min-height: 40px;
    border-radius: var(--swb-radius-btn);
    background: linear-gradient(135deg, #2A39BE, #1D86E8) !important;
    border: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.8125rem;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    white-space: nowrap;
}

.product-card-premium .card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.product-price {
    font-size: var(--swb-text-xl);
    font-weight: var(--swb-weight-extrabold);
    color: var(--swb-primary);
}

/* Qty stepper */
.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--swb-border);
    border-radius: var(--swb-radius-pill);
    overflow: hidden;
    background: var(--swb-white);
    align-self: flex-start;
}

.qty-stepper button {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--swb-gray-light);
    color: var(--swb-text);
    font-size: 1.1rem;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
}

.qty-stepper input {
    width: 44px;
    border: none;
    text-align: center;
    font-weight: var(--swb-weight-semibold);
    background: transparent;
}

/* Products page */
.category-pills {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    margin-bottom: var(--swb-space-3);
}

.category-pills::-webkit-scrollbar {
    display: none;
}

.category-pill {
    flex-shrink: 0;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: #6C757D;
    background: #FFFFFF;
    border: 2px solid #F0F4FF;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(42, 57, 190, 0.06);
    transition: all 0.25s ease;
}

.category-pill:hover,
.category-pill.active {
    background: linear-gradient(135deg, #2A39BE, #1D86E8);
    border-color: transparent;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(42, 57, 190, 0.2);
}

.search-bar-wrap {
    position: relative;
}

.search-bar-wrap svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--swb-gray-mid);
    pointer-events: none;
}

.search-bar-wrap .form-control {
    padding-left: 2.75rem;
    border-radius: var(--swb-radius-pill);
    min-height: 52px;
    border: 1px solid var(--swb-border);
}

.search-bar-wrap .form-control:focus {
    border-color: var(--swb-secondary);
    box-shadow: 0 0 0 3px rgba(29, 134, 232, 0.15);
}

.filter-sidebar .filter-link {
    display: block;
    padding: 0.625rem 1rem;
    border-radius: var(--swb-radius-btn);
    color: var(--swb-text-muted);
    text-decoration: none;
    font-weight: var(--swb-weight-medium);
    transition: all var(--swb-duration) var(--swb-ease);
}

.filter-sidebar .filter-link:hover,
.filter-sidebar .filter-link.active {
    background: rgba(42, 57, 190, 0.08);
    color: var(--swb-primary);
    font-weight: var(--swb-weight-semibold);
}

/* Product detail */
.product-gallery-main {
    border-radius: var(--swb-radius-card);
    background: var(--swb-gray-light);
    padding: var(--swb-space-6);
    overflow: hidden;
}

.product-gallery-main img {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    margin: 0 auto;
    transition: transform 0.5s var(--swb-ease);
}

.product-gallery-main:hover img {
    transform: scale(1.04);
}

/* Cart */
.cart-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1030;
    width: 56px;
    height: 56px;
    border-radius: var(--swb-radius-full);
    border: none;
    background: var(--swb-gradient-brand);
    color: var(--swb-white);
    box-shadow: var(--swb-shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--swb-duration) var(--swb-ease);
}

.cart-fab:hover {
    transform: scale(1.06);
}

.cart-drawer {
    width: min(100%, 420px);
    border-left: 1px solid var(--swb-border);
}

.store-cart-drawer {
    width: min(100%, 580px);
}

.cart-drawer .offcanvas-header {
    border-bottom: 1px solid var(--swb-border);
    padding: var(--swb-space-3);
}

.cart-drawer-footer {
    padding: var(--swb-space-3);
    border-top: 1px solid var(--swb-border);
    background: #FFFFFF;
}

.cart-drawer-item {
    display: flex;
    gap: var(--swb-space-2);
    padding: var(--swb-space-2) var(--swb-space-3);
    border-bottom: 1px solid var(--swb-border);
    align-items: flex-start;
}

.cart-drawer-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: var(--swb-radius-btn);
    background: var(--swb-gray-light);
    flex-shrink: 0;
}

.cart-drawer-empty {
    text-align: center;
    padding: var(--swb-space-8) var(--swb-space-3);
    color: var(--swb-text-muted);
}

/* Forms */
.form-floating-swb {
    position: relative;
    margin-bottom: var(--swb-space-2);
}

.form-floating-swb .form-control {
    border-radius: var(--swb-radius-btn);
    border: 1px solid var(--swb-border);
    min-height: 52px;
    padding: 1rem 1rem 0.5rem;
    transition: border-color var(--swb-duration) var(--swb-ease), box-shadow var(--swb-duration) var(--swb-ease);
}

.form-floating-swb .form-control:focus {
    border-color: var(--swb-secondary);
    box-shadow: 0 0 0 3px rgba(29, 134, 232, 0.12);
}

.form-floating-swb label {
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: var(--swb-text-xs);
    font-weight: var(--swb-weight-semibold);
    color: var(--swb-gray-mid);
    pointer-events: none;
}

.payment-method-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-method-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 2px solid var(--swb-border);
    border-radius: var(--swb-radius-card);
    cursor: pointer;
    transition: border-color var(--swb-duration) var(--swb-ease), background var(--swb-duration) var(--swb-ease);
}

.payment-method-card:has(input:checked) {
    border-color: var(--swb-primary);
    background: rgba(42, 57, 190, 0.04);
}

.payment-method-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-info-box {
    padding: var(--swb-space-3);
    border-radius: var(--swb-radius-card);
    background: rgba(25, 194, 240, 0.08);
    border: 1px solid rgba(25, 194, 240, 0.2);
}

.payment-copy-row strong {
    margin-right: 0.25rem;
}

.payment-copy-value {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.payment-copy-text {
    word-break: break-all;
}

.payment-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid rgba(42, 57, 190, 0.15);
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--swb-primary);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.payment-copy-btn:hover {
    background: rgba(42, 57, 190, 0.08);
    border-color: rgba(42, 57, 190, 0.28);
}

.payment-copy-btn.is-copied {
    color: #198754;
    border-color: rgba(25, 135, 84, 0.35);
    background: rgba(25, 135, 84, 0.1);
}

.payment-copy-feedback {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    color: #198754;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.payment-copy-btn.is-copied .payment-copy-feedback {
    opacity: 1;
}

.upload-zone {
    border: 2px dashed var(--swb-border);
    border-radius: var(--swb-radius-card);
    padding: var(--swb-space-4);
    text-align: center;
    background: var(--swb-gray-light);
    transition: border-color var(--swb-duration) var(--swb-ease);
    cursor: pointer;
}

.upload-zone:hover,
.upload-zone.is-dragover {
    border-color: var(--swb-secondary);
    background: rgba(29, 134, 232, 0.04);
}

.upload-zone input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.order-summary-sticky {
    position: sticky;
    top: calc(var(--swb-header-h) + 1rem);
}

/* Footer */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #0A1628 0%, #060d18 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 4.5rem 0 1.5rem;
    margin-top: var(--swb-space-8);
}

.site-footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    transform: translateY(-99%);
    line-height: 0;
}

.site-footer-wave svg {
    width: 100%;
    height: 72px;
    display: block;
}

.site-footer-main {
    padding-bottom: 0.5rem;
}

.site-logo--footer .site-logo-text {
    color: #FFFFFF;
    font-size: 1.35rem;
}

.site-logo--footer .site-logo-text span {
    color: var(--swb-accent);
}

.site-footer-about {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 22rem;
}

.site-footer-heading {
    color: #FFFFFF;
    font-weight: var(--swb-weight-bold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.site-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.site-footer-nav a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.875rem;
    transition: color var(--swb-duration) var(--swb-ease), transform var(--swb-duration) var(--swb-ease);
}

.site-footer-nav a:hover {
    color: var(--swb-accent);
    transform: translateX(3px);
}

.site-footer-location {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8125rem;
    margin: 0.5rem 0 0;
}

.footer-newsletter-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-newsletter-input {
    flex: 1 1 160px;
    min-height: 46px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(25, 194, 240, 0.55);
    box-shadow: 0 0 0 3px rgba(25, 194, 240, 0.15);
    color: #FFFFFF;
}

.footer-newsletter-btn {
    min-height: 46px;
    padding: 0 1.25rem;
    border-radius: 50px;
    border: none;
    background: var(--swb-gradient-brand);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(42, 57, 190, 0.35);
    transition: transform var(--swb-duration) var(--swb-ease), box-shadow var(--swb-duration) var(--swb-ease);
}

.footer-newsletter-btn:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(42, 57, 190, 0.45);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 1rem 1.5rem;
}

.footer-bottom-inner .footer-copyright {
    justify-self: start;
}

.footer-bottom-inner .footer-credit {
    justify-self: center;
    text-align: center;
}

.footer-bottom-inner .footer-legal {
    justify-self: end;
}

.footer-copyright,
.footer-credit {
    line-height: 1.6;
}

.footer-credit a {
    color: var(--swb-accent);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--swb-duration) var(--swb-ease);
}

.footer-credit a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.25rem;
    justify-content: flex-end;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color var(--swb-duration) var(--swb-ease);
}

.footer-legal a:hover {
    color: var(--swb-accent);
}

@media (max-width: 767.98px) {
    .site-footer {
        padding: 2rem 0 1.25rem;
        margin-top: var(--swb-space-6);
    }

    .site-footer-main {
        padding-bottom: 0;
        row-gap: 1.25rem !important;
    }

    .site-footer-about {
        font-size: 0.875rem;
        max-width: none;
    }

    .site-footer-links-col .site-footer-heading {
        margin-bottom: 0.75rem;
        font-size: 0.7rem;
    }

    .site-footer-links-col .site-footer-nav a {
        font-size: 0.8125rem;
        padding: 0.2rem 0;
    }

    .footer-bottom {
        margin-top: 1.25rem;
        padding-top: 1rem;
    }

    .footer-bottom-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 0.65rem;
    }

    .footer-bottom-inner .footer-copyright,
    .footer-bottom-inner .footer-credit,
    .footer-bottom-inner .footer-legal {
        justify-self: center;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.75rem;
        line-height: 1.5;
        max-width: 20rem;
    }

    .footer-credit {
        font-size: 0.8125rem;
    }

    .footer-legal {
        justify-content: center;
        gap: 0.5rem 1.5rem;
        padding-top: 0.25rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .footer-bottom-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-bottom-inner .footer-copyright,
    .footer-bottom-inner .footer-credit,
    .footer-bottom-inner .footer-legal {
        justify-self: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Stats / counters */
.stat-counter {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--swb-weight-extrabold);
    color: var(--swb-primary);
    line-height: 1;
}

/* Timeline */
.swb-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--swb-border);
}

.swb-timeline-item {
    position: relative;
    padding-bottom: var(--swb-space-4);
}

.swb-timeline-item::before {
    content: "";
    position: absolute;
    left: -2.45rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--swb-gradient-brand);
    border: 2px solid var(--swb-white);
    box-shadow: var(--swb-shadow-sm);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 48px 32px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 2px dashed #E8ECF4;
    box-shadow: 0 4px 20px rgba(42, 57, 190, 0.06);
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--swb-space-2);
    color: var(--swb-secondary);
}

/* Toast */
.swb-toast-container {
    position: fixed;
    bottom: calc(72px + var(--swb-space-3));
    right: var(--swb-space-3);
    z-index: 1090;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: min(360px, calc(100vw - 2rem));
    pointer-events: none;
}

body.cart-drawer-open .swb-toast-container {
    top: calc(var(--swb-header-h) + 12px);
    bottom: auto;
    right: auto;
    left: 1.5rem;
    max-width: min(360px, calc(100vw - 620px));
}

@media (max-width: 991.98px) {
    body.cart-drawer-open .swb-toast-container {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

.swb-toast-container .alert {
    pointer-events: auto;
    margin: 0;
    border-radius: var(--swb-radius-card);
    border: none;
    box-shadow: var(--swb-shadow-lg);
}

/* 404 */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--swb-space-8) var(--swb-space-2);
}

.error-page-code {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: var(--swb-weight-extrabold);
    line-height: 1;
    background: var(--swb-gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Map */
.map-embed {
    border-radius: var(--swb-radius-card);
    overflow: hidden;
    border: 1px solid var(--swb-border);
    min-height: 320px;
    background: var(--swb-gray-light);
}

.map-embed iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

/* Value / mission cards */
.value-card {
    padding: var(--swb-space-4);
    border-radius: var(--swb-radius-card);
    background: var(--swb-white);
    border: 1px solid var(--swb-border);
    height: 100%;
    box-shadow: var(--swb-shadow-sm);
    transition: transform var(--swb-duration) var(--swb-ease);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--swb-shadow-md);
}

.value-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--swb-radius-btn);
    background: rgba(42, 57, 190, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swb-primary);
    margin-bottom: var(--swb-space-2);
}

@media (max-width: 991.98px) {
    .swb-hero {
        min-height: auto;
        height: auto;
        max-height: none;
        overflow: visible;
        /* Negative margin pulls hero up; double header offset clears fixed nav */
        padding-top: calc(var(--swb-header-h) * 2 + var(--swb-space-2));
    }

    .swb-hero .container {
        padding-top: 0;
    }
}

@media (max-width: 767.98px) {
    :root {
        --swb-header-h: 72px;
    }

    .site-header .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        gap: 0.75rem;
    }

    .site-logo {
        gap: 0.5rem;
        min-width: 0;
    }

    .site-logo-img {
        height: 71px;
        max-width: min(326px, 48vw);
    }

    .site-logo-mark {
        width: 36px;
        height: 36px;
        font-size: 0.65rem;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .site-logo-text {
        font-size: 1.125rem;
        white-space: nowrap;
    }

    .nav-cta {
        gap: 0.625rem;
    }

    .nav-cart-btn,
    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        margin-left: 0.125rem;
    }

    .swb-hero {
        align-items: flex-start;
        padding-top: calc(var(--swb-header-h) * 2 + var(--swb-space-3));
        padding-bottom: 4.5rem;
    }

    .swb-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--swb-space-3);
        min-height: auto;
        width: 100%;
    }

    .swb-hero-col--visual {
        display: none;
    }

    .swb-hero-col--text {
        text-align: center;
        max-width: none;
        margin: 0 auto;
        padding: 0 0.25rem;
    }

    .swb-hero-eyebrow {
        display: inline-block;
        max-width: 100%;
        font-size: 0.625rem;
        letter-spacing: 0.1em;
        line-height: 1.35;
        padding: 0.35rem 0.85rem;
        margin-bottom: var(--swb-space-3);
        white-space: normal;
    }

    .swb-hero-title {
        font-size: clamp(1.75rem, 7.5vw, 2.35rem);
        line-height: 1.12;
        margin-bottom: var(--swb-space-3);
    }

    .swb-hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.65;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: var(--swb-space-4);
        max-width: 22rem;
    }

    .swb-hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
        max-width: 20rem;
        margin: 0 auto;
    }

    .swb-hero-bottle {
        max-width: 260px;
    }

    .swb-hero-bottle-stage {
        min-height: auto;
    }

    .swb-hero-cta .btn {
        width: 100%;
        padding: 0.8rem 1.25rem;
        font-size: 0.9375rem;
    }

    .swb-hero-wave svg {
        height: 56px;
    }

    .order-summary-sticky {
        position: static;
    }

    .cart-fab {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: inline-flex;
    }
}

@media (min-width: 1200px) {
    .mobile-menu-toggle {
        display: none;
    }
}
