@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,600&display=swap");

:root {
    color-scheme: light;
    --primary: #123524;
    /* Luxurious Forest Green */
    --primary-light: #1c4b35;
    --primary-glow: rgba(18, 53, 36, 0.15);
    --gold: #c5a045;
    /* Warm Premium Gold */
    --gold-light: #dfba60;
    --gold-glow: rgba(197, 160, 69, 0.2);
    --highlight: #c0392b;
    /* Pure Coral/Crimson for tags */
    --bg: #fbf9f5;
    /* Warm Sand/Cream background */
    --white: #ffffff;
    --text: #2c3531;
    /* Dark Slate */
    --text-muted: #6b7771;
    --border: rgba(18, 53, 36, 0.08);
    --card-shadow: 0 10px 30px rgba(18, 53, 36, 0.04), 0 1px 3px rgba(18, 53, 36, 0.02);
    --hover-shadow: 0 20px 40px rgba(18, 53, 36, 0.08), 0 4px 10px rgba(18, 53, 36, 0.03);
    --border-radius: 16px;
    --font-heading: "Playfair Display", serif;
    --font-body: "Outfit", sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-pill-space: clamp(76px, 10vh, 104px);
}

/* Global Reset & Base Containment */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #0b0b0b;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* 📲 The Mobile-Centric Containment Frame */
body,
.app-container {
    background: #0b0b0b;
}

.app-container {
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    /* Space for sticky CTAs */
}

/* Premium Headings & Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

/* Offer Ribbon */
.announcement-bar {
    position: relative;
    z-index: 1010;
    width: 100%;
    transform: none;
    color: var(--white);
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.offer-ribbon {
    display: grid;
    justify-items: center;
    width: 100%;
}

.offer-ribbon__teaser {
    pointer-events: auto;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(90deg, rgba(7, 17, 12, 0.94), rgba(18, 53, 36, 0.94)),
        radial-gradient(circle at 20% 50%, rgba(244, 120, 62, 0.34), transparent 24%);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: rgba(255, 255, 255, 0.92);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.offer-ribbon__teaser:hover {
    transform: translateY(2px);
}

.offer-ribbon__teaser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f4783e;
    box-shadow: 0 0 0 0 rgba(244, 120, 62, 0.45);
    animation: offer-pulse 2.2s ease-in-out infinite;
}

.offer-ribbon__teaser-text {
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.offer-ribbon__teaser-badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f8d986, #f4783e);
    color: #111;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
}

.offer-ribbon__panel {
    pointer-events: auto;
    width: min(980px, calc(100vw - 40px));
    padding: 12px;
    border-radius: 24px;
    /* border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(90deg, rgba(7, 17, 12, 0.96), rgba(18, 53, 36, 0.96)),
        radial-gradient(circle at 18% 50%, rgba(244, 120, 62, 0.34), transparent 24%);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08); */
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition:
        opacity 0.28s ease,
        transform 0.32s ease,
        visibility 0.32s ease;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
}

.offer-ribbon:hover .offer-ribbon__panel,
.offer-ribbon.is-open .offer-ribbon__panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.offer-ribbon:hover .offer-ribbon__teaser,
.offer-ribbon.is-open .offer-ribbon__teaser {
    transform: translateY(4px);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.offer-ribbon__track {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}

.offer-ribbon__item {
    min-height: 34px;
    gap: 9px;
    padding: 7px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.offer-ribbon__item,
.offer-ribbon__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.offer-ribbon__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(244, 120, 62, 0.2);
    color: #f4783e;
}

.offer-ribbon__item--code {
    color: #111;
    background: linear-gradient(135deg, #f8d986, #f4783e);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 24px rgba(244, 120, 62, 0.22);
}

.offer-ribbon__item--code strong {
    color: #111;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.offer-ribbon__code-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 17, 17, 0.78);
    font-size: 0.68rem;
    font-weight: 900;
}

@keyframes offer-sheen {

    0%,
    55% {
        transform: translateX(-100%);
    }

    85%,
    100% {
        transform: translateX(100%);
    }
}

@keyframes offer-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(244, 120, 62, 0.45);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(244, 120, 62, 0);
    }
}

@media (max-width: 767px) {
    .offer-ribbon {
        justify-items: stretch;
    }

    .offer-ribbon__teaser {
        justify-content: center;
        width: 100%;
        min-height: 40px;
        padding-inline: 12px;
    }

    .offer-ribbon__teaser-text {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .offer-ribbon__track {
        justify-content: flex-start;
        gap: 8px;
        overflow-x: auto;
        padding: 0 12px;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }

    .offer-ribbon__track::-webkit-scrollbar {
        display: none;
    }

    .offer-ribbon__item {
        scroll-snap-align: start;
        font-size: 0.74rem;
        padding-inline: 12px;
    }

    .offer-ribbon__panel {
        border-radius: 20px;
        padding: 10px 0 10px 10px;
        width: min(92vw, 420px);
    }
}

/* Header & Navigation */
header {
    /* background: rgba(251, 249, 245, 0.82); */
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    padding: 14px 18px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 8px;
    z-index: 1000;
    border-bottom: 1px solid rgba(18, 53, 36, 0.08);
    box-shadow: 0 14px 40px rgba(18, 53, 36, 0.08);
    isolation: isolate;
    margin-top: 8px;
}

header::before {
    content: "";
    position: absolute;
    inset: 9px 12px 6px;
    z-index: -1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

header .logo-group {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    position: relative;
    z-index: 2;
}

header .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background:
        linear-gradient(135deg, rgba(244, 120, 62, 0.18), rgba(197, 160, 69, 0.18)),
        rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 53, 36, 0.08);
    color: #f4783e;
    font-size: 1.08rem;
    box-shadow: 0 10px 22px rgba(18, 53, 36, 0.08);
    animation: leaf-rotate 6s ease-in-out infinite alternate;
}

@keyframes leaf-rotate {
    0% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(15deg);
    }
}

header h1 {
    font-size: clamp(1.1rem, 3.5vw, 1.45rem);
    margin: 0;
    padding-bottom: 0.15em;
    /* Prevents descender clipping (tail of 'y') */
    letter-spacing: -0.5px;
    line-height: 1.2;
    /* Gives the italic serif room to breathe */
    white-space: nowrap;
    font-weight: 900;

    /* Liquid Emerald & Mint Glass Effect */
    background: linear-gradient(110deg,
            #0b2e1a 0%,
            /* Deep Forest */
            #155931 30%,
            /* Rich Emerald */
            #ffffff 45%,
            /* Blinding Pearl Light */
            #2de094 50%,
            /* Neon Mint Core */
            #ffffff 55%,
            /* Blinding Pearl Light */
            #155931 70%,
            /* Rich Emerald */
            #0b2e1a 100%
            /* Deep Forest */
        );
    background-size: 300% 100%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: liquid-emerald 5s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;

    /* Ambient Aura and 3D Drop */
    filter: drop-shadow(0px 2px 2px rgba(11, 46, 26, 0.5)) drop-shadow(0px 0px 12px rgba(45, 224, 148, 0.4));
}

header h1 span {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.5px;
}

@keyframes liquid-emerald {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -100% center;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    position: relative;
    z-index: 2;
}

.header-center {
    flex: 1;
    padding-inline: 18px;
    z-index: 3;
}

.header-center,
.cart-icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cart-icon-btn {
    text-decoration: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.64)),
        rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 53, 36, 0.08);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(18, 53, 36, 0.1);
    transition: var(--transition);
}

.cart-icon-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 120, 62, 0.42);
    box-shadow: 0 14px 28px rgba(18, 53, 36, 0.15);
}

.cart-icon-btn i {
    color: var(--primary);
    font-size: 0.96rem;
}

.account-avatar {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #123524, #f4783e);
    color: white;
    font-weight: 800;
    font-size: 0.76rem;
}

.account-avatar,
.cart-badge {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #f4783e;
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 2px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 14px rgba(244, 120, 62, 0.35);
}

/* Catalog Stage */
.catalog-stage {
    position: relative;
    isolation: isolate;
    margin-top: 0;
    padding: calc(var(--header-pill-space) + 18px) 0 clamp(72px, 9vh, 110px);
    overflow: hidden;
    background: #0b0b0b;
    scroll-margin-top: var(--header-pill-space);
    min-height: 100svh;
}

.catalog-stage::before {
    z-index: -2;
    background:
        linear-gradient(180deg, #0b0b0b 0%, #0b0b0b 18%, #0b0b0b 100%),
        radial-gradient(circle at 16% 24%, rgba(244, 120, 62, 0.16), transparent 28%),
        radial-gradient(circle at 84% 40%, rgba(36, 86, 57, 0.24), transparent 32%);
}

.catalog-stage::before,
.catalog-stage::after {
    content: "";
    position: absolute;
    inset: 0;
}

.catalog-stage::after {
    z-index: -1;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, #000 18%, #000 100%);
}

.catalog-stage__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 2.25rem;
    border-radius: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.catalog-stage__header {
    display: grid;
    gap: 1rem;
    max-width: none;
    padding: 0.5rem 0 1.75rem;
}

.catalog-stage__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalog-stage__eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f4783e;
    box-shadow: 0 0 14px rgba(244, 120, 62, 0.7);
}

.catalog-stage__title {
    margin: 0;
    color: #fff;
    width: fit-content;
    max-width: 100%;
    font-size: clamp(1.65rem, 2.7vw, 3rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    white-space: nowrap;
}

/* Category Filter Tags */
.category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    padding: 0.5rem 0 2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
    display: none;
}

.cat-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    white-space: nowrap;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

.cat-btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 68%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.cat-btn.active,
.cat-btn:hover {
    color: #fff;
    border-color: rgba(244, 120, 62, 0.48);
    background: rgba(244, 120, 62, 0.14);
    box-shadow: 0 14px 34px rgba(244, 120, 62, 0.18);
    transform: translateY(-1px);
}

.cat-btn.active::before,
.cat-btn:hover::before {
    opacity: 1;
}

/* Product Grid & Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
    padding: 0;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1rem;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
        rgba(12, 12, 12, 0.9);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
    overflow: hidden;
}

.product-card::before {
    inset: auto -15% -28% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 120, 62, 0.26), transparent 72%);
    z-index: 0;
    opacity: 0.85;
}

.product-card::before,
.product-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.product-card::after {
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 30%);
    opacity: 0.9;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 120, 62, 0.24);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.28);
}

.products-grid .product-card:first-child {
    grid-column: span 2;
}

.products-grid .product-card:first-child .card-img-wrap {
    height: 280px;
}

.products-grid .product-card:first-child .card-title {
    font-size: 1.28rem;
}

.card-img-wrap,
.card-info {
    position: relative;
    z-index: 1;
}

.card-img-wrap {
    height: 245px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 3.15rem 1.4rem 1.4rem;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at 16% 14%, rgba(244, 120, 62, 0.2), transparent 34%),
        radial-gradient(circle at 82% 88%, rgba(36, 86, 57, 0.22), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
}

.card-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
    transition:
        transform 0.55s ease,
        filter 0.55s ease;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
}

.product-card:hover .card-img-wrap img {
    transform: scale(1.08) translateY(-3px);
}

.tag-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    left: auto;
    padding: 0.46rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0b0b0b;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.card-info {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.76rem;
}

.card-kicker {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.card-title {
    color: #fff;
    text-decoration: none;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.7rem;
}

.card-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.88rem;
    line-height: 1.5;
    min-height: 2.6rem;
}

.card-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 0.2rem;
}

.card-price {
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.card-mrp {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.84rem;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.95rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.card-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.add-cart-btn {
    flex: 1;
    min-height: 44px;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f4783e 0%, #ea6e37 50%, #ff9b70 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.84rem;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    box-shadow: 0 16px 30px rgba(244, 120, 62, 0.28);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        filter 0.35s ease;
}

.add-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(244, 120, 62, 0.34);
    filter: saturate(1.05);
}

.product-card.is-disabled .add-cart-btn[disabled] {
    opacity: 0.72;
    cursor: not-allowed;
    box-shadow: none;
    background: linear-gradient(135deg, rgba(244, 120, 62, 0.65), rgba(234, 110, 55, 0.65));
}

.product-card__veil {
    position: absolute;
    inset: 1rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(12, 29, 21, 0.38), rgba(12, 29, 21, 0.72));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.product-card__veil,
.product-card__veil-badge {
    align-items: center;
    justify-content: center;
}

.product-card__veil-badge {
    display: inline-flex;
    min-height: 36px;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #0b0b0b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card__veil-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.82rem;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .catalog-stage {
        margin-top: -2rem;
        padding: 3rem 0 6rem;
    }

    .catalog-stage__inner {
        width: 100%;
        padding: 0 1rem;
        border-radius: 0;
    }

    .catalog-stage__header {
        gap: 0.85rem;
        padding-bottom: 1.15rem;
    }

    .catalog-stage__title {
        width: auto;
        font-size: 1.7rem;
        line-height: 1.08;
        white-space: normal;
    }

    .category-strip {
        flex-wrap: nowrap;
        gap: 0.65rem;
        padding-bottom: 1.25rem;
    }

    .cat-btn {
        min-height: 42px;
        padding: 0.72rem 1rem;
        font-size: 0.78rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-grid .product-card:first-child {
        grid-column: span 1;
    }

    .product-card {
        padding: 0.8rem;
        border-radius: 24px;
    }

    .card-img-wrap {
        height: 220px;
        padding: 2.8rem 1rem 1rem;
        border-radius: 20px;
    }

    .tag-badge {
        top: 12px;
        right: 12px;
        font-size: 0.62rem;
    }

    .card-title {
        font-size: 1rem;
        min-height: auto;
    }

    .card-copy {
        min-height: auto;
        font-size: 0.82rem;
    }

    .card-actions {
        gap: 0.65rem;
        margin-top: 0.8rem;
    }

    .card-link,
    .add-cart-btn {
        min-height: 42px;
        font-size: 0.78rem;
    }

    .product-card__veil {
        inset: 0.8rem;
        border-radius: 20px;
    }
}

/* Full Footer */
.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: var(--header-pill-space) 0 2rem !important;
    background:
        radial-gradient(circle at 14% 18%, rgba(244, 120, 62, 0.18), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(197, 160, 69, 0.13), transparent 28%),
        linear-gradient(180deg, #0b0b0b 0%, #08140d 45%, #0b0b0b 100%);
    color: #fff;
    min-height: 100svh !important;
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box;
}

.site-footer::before {
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 86px 86px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
}

.site-footer::after {
    z-index: -1;
    background:
        linear-gradient(115deg, rgba(244, 120, 62, 0.16), transparent 28%),
        linear-gradient(295deg, rgba(197, 160, 69, 0.11), transparent 32%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.32) 100%);
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 40px)) !important;
    margin: 0 auto;
    display: grid;
    align-content: center;
    max-height: calc(100svh - var(--header-pill-space)) !important;
}

.site-footer__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: center;
    gap: 3rem;
    min-height: 500px;
    padding: 0 0 4.5rem;
    border-radius: clamp(32px, 5vw, 58px);
    margin-bottom: clamp(1rem, 3vh, 1.8rem);
    background: transparent;
    border: none;
    box-shadow: none;
}

.site-footer__copy {
    display: grid;
    gap: 1.35rem !important;
    max-width: 760px !important;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    width: fit-content;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem !important;
}

.site-footer__brand img {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.92);
    padding: 4px;
}

.site-footer__copy h2 {
    margin: 0;
    color: #fff;
    max-width: 820px;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 4.75rem) !important;
    font-weight: 700;
    line-height: 0.9 !important;
    letter-spacing: 0;
}

.site-footer__copy p {
    max-width: 560px !important;
    color: rgba(255, 255, 255, 0.58);
    font-size: 1.05rem !important;
    line-height: 1.55 !important;
}

.site-footer__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem !important;
    margin-top: 0.5rem !important;
}

.site-footer__primary,
.site-footer__secondary {
    min-height: 52px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem !important;
    padding-block: 0.7rem;
}

.site-footer__primary {
    padding: 0.9rem 1.35rem;
    color: #fff;
    background: linear-gradient(135deg, #f4783e, #ea6e37 55%, #ff9b70);
    box-shadow: 0 18px 36px rgba(244, 120, 62, 0.28);
}

.site-footer__secondary {
    padding: 0.9rem 1.2rem;
    color: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
}

.site-footer__visual {
    position: relative;
    min-height: 430px !important;
    display: grid;
    place-items: center;
    animation: site-footer-visual-spin 18s linear infinite !important;
    transform-origin: center center;
    will-change: transform;
}

@keyframes site-footer-visual-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer__visual {
        animation: none;
    }
}

.site-footer__visual::before {
    content: "";
    position: absolute;
    width: min(420px, 85%) !important;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        repeating-conic-gradient(from 0deg,
            rgba(255, 255, 255, 0.08) 0deg 1deg,
            transparent 1deg 9deg),
        rgba(255, 255, 255, 0.03);
    transform: rotate(-12deg);
    animation: site-footer-ring-spin 14s linear infinite !important;
    transform-origin: center center;
}

.site-footer__visual img {
    position: absolute;
    width: min(250px, 44vw) !important;
    max-height: 310px !important;
    object-fit: contain;
    filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.42));
    animation: site-footer-products-spin 20s linear infinite !important;
    transform-origin: center center;
}

.site-footer__visual img:nth-child(1) {
    transform: translate(-28%, -4%) rotate(-10deg);
    z-index: 2;
}

.site-footer__visual img:nth-child(2) {
    transform: translate(16%, 3%) rotate(9deg);
    z-index: 3;
}

.site-footer__visual img:nth-child(3) {
    transform: translate(4%, 34%) rotate(-3deg);
    width: min(220px, 38vw) !important;
    z-index: 4;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1.2fr !important;
    gap: 1px !important;
    border-block: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.site-footer__column {
    min-height: 240px !important;
    padding: 2rem !important;
    display: grid;
    align-content: start;
    gap: 0.85rem !important;
    background: rgba(7, 17, 12, 0.74) !important;
    border-radius: 0 !important;
    border: 0 !important;
}

.site-footer__column h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.78rem !important;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.22rem;
}

.site-footer__column a,
.site-footer__column span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.94rem !important;
    line-height: 1.35 !important;
    width: auto !important;
}

.site-footer__column a:hover {
    color: #fff;
    transform: translateX(4px);
}

.site-footer__contact a:first-of-type {
    color: #fff;
    font-size: 1.2rem !important;
    font-weight: 700;
}

.site-footer__bottom {
    min-height: 76px !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.82rem !important;
    margin-top: 0 !important;
    padding-inline: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.site-footer__wordmark {
    position: absolute;
    left: 50%;
    bottom: -0.22em;
    z-index: 0;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.035);
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 16rem);
    font-weight: 900;
    line-height: 0.78;
    letter-spacing: 0;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 900px) {
    .site-footer {
        padding: 4.5rem 0 8rem;
    }

    .site-footer__inner {
        width: min(100% - 24px, 720px);
    }

    .site-footer__hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .site-footer__copy h2 {
        font-size: clamp(3rem, 16vw, 5.7rem);
        line-height: 0.92;
    }

    .site-footer__visual {
        min-height: 330px;
        order: -1;
    }

    .site-footer__visual img {
        width: min(210px, 48vw);
    }

    .site-footer__visual img:nth-child(3) {
        width: min(185px, 42vw);
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__column {
        min-height: 190px;
        padding: 1.35rem;
    }
}

@media (max-width: 560px) {
    .site-footer__inner {
        width: calc(100% - 20px);
    }

    .site-footer__copy {
        gap: 1rem;
    }

    .site-footer__copy h2 {
        font-size: clamp(2.55rem, 15vw, 4.25rem);
    }

    .site-footer__copy p {
        font-size: 0.92rem;
    }

    .site-footer__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-footer__primary,
    .site-footer__secondary {
        width: 100%;
    }

    .site-footer__visual {
        min-height: 280px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__column {
        min-height: unset;
        padding: 1.25rem;
    }

    .site-footer__bottom {
        display: grid;
        justify-content: start;
        min-height: auto;
        padding: 1.4rem 0 0;
    }
}

/* Sliding Shopping Cart Sidebar (Premium Redesign) */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 460px;
    height: 100%;
    /* Stunning Frosted Pearl & Gold Mesh Glow */
    background:
        radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(18, 53, 36, 0.08) 0%, transparent 50%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.6) 0%, rgba(250, 250, 250, 0.95) 100%);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    z-index: 2000;
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.15), inset 1px 0 0 rgba(255, 255, 255, 0.8);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    transform: translate3d(0, 0, 0);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1999;
    display: none;
    animation: fade-in 0.4s ease;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cart-header {
    padding: 30px 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.cart-close-btn {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-close-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-items-container::-webkit-scrollbar {
    width: 5px;
}

.cart-items-container::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 10px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.8);
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cart-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.cart-item>* {
    position: relative;
    z-index: 1;
}

.cart-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(18, 53, 36, 0.08);
    background: rgba(255, 255, 255, 0.8);
}

.cart-item-img {
    width: 85px;
    height: 85px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 12px;
    object-fit: contain;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 8px;
}

.cart-item-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.15rem;
    text-shadow: 0 2px 5px rgba(18, 53, 36, 0.1);
}

/* Custom Designed Quantity Selector */
.qty-control {
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.qty-control,
.qty-btn {
    display: flex;
    align-items: center;
}

.qty-btn {
    background: none;
    border: none;
    width: 34px;
    height: 34px;
    cursor: pointer;
    font-weight: 800;
    color: var(--primary);
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.qty-val {
    width: 28px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text);
}

.cart-remove-btn {
    color: rgba(231, 76, 60, 0.7);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(231, 76, 60, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.cart-remove-btn:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.cart-footer {
    padding: 30px 35px 35px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.04);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text);
    font-size: 1.05rem;
}

.summary-row.total {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(18, 53, 36, 0.1);
}

.checkout-btn {
    width: 100%;
    margin-top: 25px;
    padding: 18px;
    background: linear-gradient(135deg, #123524 0%, #1e5c3e 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(18, 53, 36, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.checkout-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.checkout-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(18, 53, 36, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #1a4a32 0%, #25704b 100%);
    color: var(--gold);
}

.empty-cart-view {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.empty-cart-view i {
    font-size: 5rem;
    background: -webkit-linear-gradient(135deg, rgba(212, 175, 55, 0.6), rgba(18, 53, 36, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
}

/* Premium Sticky Checkout Bars & Floating Elements */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.06);
    z-index: 999;
}

.sticky-bar-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sticky-bar-price {
    font-size: 1.3rem;
}

.sticky-bar-price,
.sticky-bar-btn {
    font-weight: 700;
    color: var(--primary);
}

.sticky-bar-btn {
    flex-grow: 1;
    background: var(--gold);
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: var(--transition);
}

.sticky-bar-btn:hover {
    background: var(--gold-light);
}

.main-tabbar {
    position: fixed;
    left: auto !important;
    right: 14px !important;
    bottom: auto !important;
    transform: translate3d(0, -50%, 0) !important;
    width: 82px !important;
    min-height: auto !important;
    display: flex !important;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch !important;
    justify-content: flex-start !important;
    background:
        linear-gradient(180deg, rgba(18, 53, 36, 0.86), rgba(8, 18, 12, 0.92)),
        rgba(18, 53, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        height 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.34s ease,
        visibility 0.34s ease,
        transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
    top: 50% !important;
    padding: 8px !important;
    flex-direction: column !important;
    gap: 6px;
}

.main-tabbar::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(90deg,
            rgba(244, 120, 62, 0.42),
            rgba(197, 160, 69, 0.2),
            rgba(255, 255, 255, 0.18));
    opacity: 0.65;
}

.main-tabbar__item {
    min-width: 0;
    height: 52px;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.main-tabbar__item i {
    color: currentColor;
    font-size: 1.08rem;
    line-height: 1;
}

.main-tabbar__item span {
    color: currentColor;
    font-size: 0.72rem;
}

.main-tabbar__item.active {
    color: #fff;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.26), transparent 28%),
        linear-gradient(135deg, rgba(244, 120, 62, 0.95), rgba(138, 82, 43, 0.7));
    box-shadow:
        0 10px 24px rgba(244, 120, 62, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.main-tabbar__item:hover {
    color: #fff;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    header {
        padding-inline: 40px;
    }

    header::before {
        inset-inline: 30px;
    }

    .main-tabbar {
        left: auto;
        right: 18px;
        top: 50%;
        bottom: auto !important;
        transform: translateY(-50%);
        width: 78px;
        min-height: auto;
        grid-template-columns: 1fr;
        border-radius: 34px;
    }

    .main-tabbar__item {
        height: 62px;
    }
}

@media (max-width: 420px) {
    header {
        padding-inline: 14px;
    }

    header::before {
        inset-inline: 8px;
    }

    header .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .cart-icon-btn {
        width: 40px;
        height: 40px;
    }

    .header-actions {
        gap: 7px;
    }

    .header-center,
    .offer-ribbon__teaser-badge {
        padding-inline: 8px;
    }

    .offer-ribbon__teaser-badge {
        font-size: 0.64rem;
    }

    .main-tabbar {
        width: calc(100% - 18px);
        bottom: 9px !important;
        min-height: 64px;
        padding: 7px !important;
    }

    .main-tabbar__item {
        height: 50px;
    }
}

/* Step-by-Step Checkout Wizard Styles */
.step-indicator-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: relative;
}

.step-indicator-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--border);
    z-index: 1;
    transform: translateY(-50%);
}

.step-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    transition: var(--transition);
}

.step-node.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--primary);
    box-shadow: 0 0 10px var(--gold-glow);
}

.step-node.completed {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.wizard-step {
    display: none;
    padding: 0 20px 20px;
    animation: slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-step.active {
    display: block;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Geolocation Autofill Indicator */
.geolocation-trigger-btn {
    background: var(--primary-glow);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
    transition: var(--transition);
}

.geolocation-trigger-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Coupon Engine Style */
.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input-group input {
    flex-grow: 1;
}

.coupon-apply-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
}

.coupon-apply-btn:hover {
    background: var(--primary-light);
}

/* UPI QR & Payment Selection Styles */
.payment-card {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-card.selected {
    border-color: var(--gold);
    background: var(--gold-glow);
}

.payment-card i {
    font-size: 1.4rem;
    color: var(--primary);
}

.payment-details {
    flex-grow: 1;
}

.payment-details h4 {
    margin: 0;
    font-size: 0.95rem;
}

.payment-details p {
    margin: 0;
    font-size: 0.8rem;
}

.upi-qr-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    margin-top: 15px;
}

.upi-qr-image {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin: 10px auto;
    display: block;
    border: 1px solid #ddd;
    padding: 5px;
}

.live-badge {
    display: inline-block;
    background: #e8f4f8;
    color: #004085;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 10px 0;
}

/* Custom Toast Alerts */
.custom-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translate3d(-50%, 50px, 0);
    opacity: 0;
    background: rgba(18, 53, 36, 0.95);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 3000;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    white-space: nowrap;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-toast.show {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
}

/* Utility Layout Modifiers */

.container,
.hero-slider {
    padding: 20px;
}

.hero-slide {
    background: linear-gradient(135deg, #123524 0%, #081d13 100%);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.hero-slide h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.hero-slide p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.sec-title {
    padding: 15px 20px 5px;
    font-size: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Detail Product Tabs */
.tab-strip {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary);
    border-color: var(--primary);
}

.tab-pane {
    display: none;
    animation: fade-in 0.3s ease;
}

.tab-pane.active {
    display: block;
}

/* Admin Dashboard Table Fixes */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.admin-table th {
    background: #f5f7f6;
    color: var(--primary);
    font-weight: 600;
}

/* ?? Desktop & Tablet Responsive Media Queries */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Product Details Layout */
    .p-details-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .p-gallery {
        margin-bottom: 0 !important;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .p-gallery img {
        max-height: 400px !important;
    }

    /* About Page Layouts */
    .g-scroll {
        grid-template-columns: repeat(4, 1fr);
        display: grid;
        overflow-x: visible;
    }

    .g-item {
        min-width: auto;
        height: 180px;
    }

    .about-cards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .about-card {
        margin: 0 !important;
        height: 100%;
    }

    /* Checkout Layout */
    .checkout-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 30px;
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Hero Flick Carousel - EATnaked-inspired Design Section */
.hero-slider.design {
    --orange: #f4783e;
    --eat-ease: cubic-bezier(0.625, 0.05, 0, 1);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(11, 11, 11, 0.96), rgba(11, 11, 11, 0.98)),
        radial-gradient(circle at 50% 20%, rgba(244, 120, 62, 0.24), transparent 34%);
    box-shadow: none;
    align-items: stretch;
    scroll-margin-top: 0;
}

.hero-slider.design::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.design .design-container {
    gap: clamp(20px, 4.5vh, 42px);
    justify-items: center;
    padding: clamp(18px, 3vh, 34px) 20px clamp(22px, 4vh, 40px);
    overflow: hidden;
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: center;
}

.design .design-header {
    width: min(1120px, calc(100vw - 40px));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    flex-wrap: wrap;
    margin-inline: auto;
}

.design .design-header .design-header__h2 {
    color: #fff;
    text-align: left;
    max-width: 660px;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: 0;
    text-transform: capitalize;
    flex: 0 1 auto;
}

.catalogue-scroll-btn {
    position: relative;
    min-height: 62px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.68rem 0.75rem 0.68rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    text-decoration: none;
    background:
        linear-gradient(135deg, rgba(244, 120, 62, 0.95), rgba(234, 110, 55, 0.82)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent), rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 42px rgba(244, 120, 62, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    overflow: hidden;
    isolation: isolate;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.catalogue-scroll-btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.36) 42%,
            transparent 72%);
    transform: translateX(-120%);
    animation: catalogue-sheen 2.8s ease-in-out infinite;
    z-index: -1;
}

.catalogue-scroll-btn::after {
    content: "";
    position: absolute;
    inset: 7px auto 7px 7px;
    width: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    filter: blur(6px);
    animation: catalogue-orbit 2.4s ease-in-out infinite;
    z-index: -1;
}

.catalogue-scroll-btn__rings {
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    border: 1px solid rgba(244, 120, 62, 0.28);
    opacity: 0.8;
    animation: catalogue-pulse 2.2s ease-in-out infinite;
}

.catalogue-scroll-btn__text {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalogue-scroll-btn__icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #0b0b0b;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: catalogue-arrow 1.45s ease-in-out infinite;
}

.catalogue-scroll-btn__icon::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.28);
    animation: catalogue-icon-ring 1.8s ease-in-out infinite;
}

.catalogue-scroll-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 24px 48px rgba(244, 120, 62, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes catalogue-sheen {

    0%,
    45% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}

@keyframes catalogue-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.18;
    }
}

@keyframes catalogue-orbit {

    0%,
    100% {
        transform: translateX(0) scale(0.9);
        opacity: 0.25;
    }

    50% {
        transform: translateX(150px) scale(1.15);
        opacity: 0.75;
    }
}

@keyframes catalogue-icon-ring {

    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.72;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.18;
    }
}

@keyframes catalogue-arrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

.design .design-swiper-container.is--portrait {
    display: none;
}

.design .flick-group {
    position: relative;
    width: 100%;
    cursor: grab;
    align-self: center;
}

.design .flick-group[data-flick-drag-status="grabbing"] {
    cursor: grabbing;
}

.design .flick-group__relative-object {
    opacity: 0;
    pointer-events: none;
    position: relative;
    z-index: 0;
    height: min(497px, 49.7vh);
}

.design .flick-group__relative-object-before {
    padding-top: 75%;
}

.design .flick-group__collection {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.design .flick-group__list {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: min(497px, 49.7vh);
    display: flex;
    position: relative;
}

.design .flick-group__item {
    position: absolute;
    flex-shrink: 0;
    width: min(857px, 72vw);
    height: min(497px, 49.7vh);
    opacity: 1;
    transform: translate(0, 0) scale(1);
    transition:
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.35s ease,
        filter 0.35s ease;
    will-change: transform, opacity, filter;
}

.design .flick-group__item,
.flick-card {
    overflow: hidden;
    border-radius: 35px;
}

.flick-card {
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    border: 1px solid #363535;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(28.7px);
    -webkit-backdrop-filter: blur(28.7px);
    padding: 9px;
    width: 100%;
    height: 100%;
}

.flick-card__before {
    position: absolute;
    inset: 9px;
    border-radius: 30px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.15) 58%, rgba(0, 0, 0, 0.05)),
        radial-gradient(circle at 72% 40%, rgba(244, 120, 62, 0.34), transparent 28%);
    z-index: 1;
    pointer-events: none;
}

.flick-card__media {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(135deg, #142e20 0%, #06120c 100%),
        radial-gradient(circle at 70% 35%, rgba(244, 120, 62, 0.42), transparent 33%);
}

.flick-card__media::after {
    content: "";
    position: absolute;
    right: 8%;
    top: 13%;
    width: 42%;
    height: 72%;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cover-image {
    pointer-events: none;
    object-fit: contain;
    object-position: 72% center;
    -webkit-user-select: none;
    user-select: none;
    width: 58%;
    height: 88%;
    position: absolute;
    top: 7%;
    right: 4%;
    left: auto;
    z-index: 1;
    border-radius: 18px;
    filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.38));
}

.flick-card__info {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: grid;
    align-content: end;
    gap: 20px;
    padding: 50px;
}

.flick-card__info__h3 {
    font-size: clamp(38px, 4.6vw, 50px);
    font-weight: 500;
    max-width: 440px;
}

.flick-card__info__h3,
.flick-card__info__h4 {
    color: #fff;
    line-height: 1;
    letter-spacing: 0;
    will-change: transform;
}

.flick-card__info__h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    opacity: 0.5;
}

.flick-card__info .cta-button {
    z-index: 5;
}

.flick-card__inner-blur--1 {
    width: 140px;
    bottom: 0;
    left: 0;
}

.flick-card__inner-blur--1,
.flick-card__inner-blur--2 {
    height: 140px;
    flex-shrink: 0;
    position: absolute;
    z-index: -1;
}

.flick-card__inner-blur--2 {
    width: 360px;
    top: 0;
    right: 35px;
}

.cta-button {
    position: relative;
    width: fit-content;
    height: fit-content;
    padding: 6px 30px 6px 6px;
    overflow: hidden;
    isolation: isolate;
    border-radius: 100px;
    cursor: pointer;
    color: #fff;
}

.cta-button .cta-button__background {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(244, 120, 62, 0.23);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 100px;
}

.cta-button .cta-button__blur {
    position: absolute;
    z-index: -2;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    background: var(--orange);
    top: 50%;
    left: 20px;
    transform: translate(0%, -50%);
    pointer-events: none;
    user-select: none;
    transition: opacity 0.6s var(--eat-ease);
}

.cta-button .cta-button__inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-button .cta-button__inner .cta-button__icon {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.6s var(--eat-ease),
        background-color 0.6s var(--eat-ease);
    will-change: transform;
    flex-shrink: 0;
}

.cta-button .cta-button__inner .cta-button__icon svg {
    width: 15px;
    height: auto;
    transition: transform 0.6s var(--eat-ease);
}

.cta-button .cta-button__inner .cta-button__text {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button .cta-button__inner .cta-button__text--span {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    text-shadow: 0 -40px 0 #fff;
    display: inline-block;
    transition: transform 0.6s var(--eat-ease);
    white-space: nowrap;
}

[data-flick-cards-dragger] {
    position: absolute;
    inset: 0;
    z-index: 1 !important;
    pointer-events: auto;
    touch-action: pan-y;
}

[data-flick-cards-item-status="hidden"] {
    filter: blur(5px);
}

[data-flick-cards-item-status="hidden"] .flick-card__inner-blur--1,
[data-flick-cards-item-status="hidden"] .flick-card__inner-blur--2 {
    opacity: 0;
}

[data-flick-cards-item-status="active"] .flick-card__media {
    opacity: 1;
}

[data-flick-cards-item-status] .flick-card__info {
    transition:
        opacity 0.4s cubic-bezier(0.625, 0.05, 0, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translate(0%, 20px) rotate(0.001deg);
}

[data-flick-cards-item-status="active"] .flick-card__info {
    opacity: 1;
    transform: translate(0%, 0%) rotate(0.001deg);
}

@media (hover: hover) and (pointer: fine) {
    .cta-button:hover .cta-button__text--span {
        transform: translateY(40px);
    }

    .cta-button:hover .cta-button__inner .cta-button__icon {
        transform: scale(0.2);
        background-color: #fff;
    }

    .cta-button:hover .cta-button__inner .cta-button__icon svg {
        transform: scale(0) rotate(45deg);
    }

    .cta-button:hover .cta-button__blur {
        opacity: 0;
    }
}

@media screen and (orientation: portrait),
(max-width: 767px) {
    .design .design-container {
        gap: 30px;
        padding-block: 90px 70px;
        padding-inline: 0;
    }

    .design .design-header {
        width: 100%;
        padding-inline: 15px;
        flex-direction: column;
        gap: 1rem;
    }

    .design .design-header .design-header__h2 {
        max-width: 360px;
        text-align: center;
        font-size: 30px;
        line-height: 1.08;
    }

    .catalogue-scroll-btn {
        min-height: 52px;
        padding: 0.58rem 0.65rem 0.58rem 1rem;
    }

    .catalogue-scroll-btn__text {
        font-size: 0.76rem;
    }

    .catalogue-scroll-btn__icon {
        width: 38px;
        height: 38px;
    }

    .design .flick-group {
        display: none;
    }

    .design .design-swiper-container.is--portrait {
        overflow: hidden;
        display: block;
        width: 100%;
        order: -1;
    }

    .design .design-swiper-wrapper {
        display: flex;
        flex-wrap: nowrap;
        width: fit-content;
        gap: 20px;
        padding-inline: 15px;
        transform: translateX(0);
        transition: transform 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .design .design-swiper__slide {
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        width: min(400px, calc(100vw - 30px));
        height: min(400px, calc(100vw - 30px));
        isolation: isolate;
    }

    .design .design-swiper__inner {
        border-radius: 15px;
        padding: 10px;
        border: 1px solid #363535;
        background: rgba(255, 255, 255, 0.11);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        height: 100%;
    }

    .design-swiper__inner-blur--1 {
        height: 230px;
        bottom: 0;
        left: 0;
        background: radial-gradient(ellipse, rgba(244, 120, 62, 0.65), transparent 68%);
    }

    .design-swiper__inner-blur--1,
    .design-swiper__inner-blur--2 {
        position: absolute;
        z-index: -1;
        width: 320px;
        pointer-events: none;
    }

    .design-swiper__inner-blur--2 {
        height: 120px;
        top: 0;
        right: 15px;
        background: radial-gradient(ellipse, rgba(244, 120, 62, 0.55), transparent 68%);
    }

    .design .design-swiper__inner .design-swiper__content {
        border-radius: 10px;
        padding: 35px;
        gap: 15px;
        position: relative;
        overflow: hidden;
        height: 100%;
        isolation: isolate;
        display: grid;
        align-content: end;
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.1)),
            linear-gradient(135deg, #142e20 0%, #06120c 100%);
    }

    .design .design-swiper__content .design-swiper__image {
        position: absolute;
        width: 56%;
        height: 38%;
        top: 10%;
        right: 2%;
        z-index: -1;
        object-fit: contain;
        border-radius: 14px;
        filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.35));
    }

    .design .design-swiper__inner .design-swiper__content__h3 {
        color: #fff;
        font-size: 32px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0;
    }

    .design .design-swiper__inner .design-swiper__content__h4 {
        color: #fff;
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        opacity: 0.5;
    }

    .design .design-swiper-pagination {
        display: flex;
        justify-content: center;
        gap: 7px;
        align-items: center;
        margin-top: 30px;
        width: 100%;
    }

    .design .design-swiper-pagination .indicator {
        border: 0;
        width: 8px;
        height: 8px;
        flex-shrink: 0;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition:
            width 0.6s cubic-bezier(0.075, 0.82, 0.165, 1),
            background 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .design .design-swiper-pagination .indicator.active {
        background: var(--orange);
        width: 70px;
    }

    .cta-button {
        padding: 5px 25px 5px 5px;
        border-radius: 80px;
    }

    .cta-button .cta-button__background {
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
        border-radius: 80px;
    }

    .cta-button .cta-button__blur {
        width: 22px;
        height: 22px;
        left: 17px;
    }

    .cta-button .cta-button__inner {
        gap: 13px;
    }

    .cta-button .cta-button__inner .cta-button__icon {
        width: 32px;
        height: 32px;
    }

    .cta-button .cta-button__inner .cta-button__icon svg {
        width: 10px;
    }

    .cta-button .cta-button__inner .cta-button__text--span {
        font-size: 14px;
    }
}

/* Homepage section sizing and scroll behavior fixes */

.hero-slider.design,
.design .design-container {
    min-height: calc(100svh - var(--header-pill-space));
    display: grid;
}

.design .flick-group,
.design .flick-group__relative-object,
.design .flick-group__list {
    min-height: 0;
}

.design .flick-group__relative-object,
.design .flick-group__list,
.design .flick-group__item {
    height: clamp(330px, 54vh, 510px);
}

.main-tabbar.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0) scale(1);
}

@media (min-width: 768px) {
    header {
        padding-inline: 34px;
    }

    header::before {
        inset-inline: 28px;
    }
}

@media (max-width: 767px) {
    :root {
        --header-pill-space: 92px;
    }

    header {
        padding: 12px 12px 8px;
        top: 6px;
        margin-top: 6px;
    }

    header::before {
        inset: 7px 8px 5px;
    }

    header .logo-icon,
    .cart-icon-btn {
        width: 34px;
        height: 34px;
    }

    header h1 {
        font-size: clamp(0.86rem, 3.5vw, 1.05rem);
    }

    .header-actions {
        gap: 6px;
    }

    .header-center {
        padding-inline: 8px;
    }

    .offer-ribbon__teaser {
        min-height: 36px;
        padding-block: 6px;
    }

    .offer-ribbon__teaser-dot {
        width: 8px;
        height: 8px;
    }

    .offer-ribbon__teaser-badge {
        padding: 5px 8px;
    }

    .design .design-container {
        min-height: calc(100svh - var(--header-pill-space));
        grid-template-rows: minmax(0, auto) auto;
        gap: clamp(16px, 3vh, 28px);
        padding-block: clamp(12px, 2.5vh, 24px) clamp(20px, 4vh, 34px);
        padding-inline: 0;
    }

    .design .design-swiper-container.is--portrait {
        align-self: center;
    }

    .design .design-swiper__slide {
        width: min(380px, calc(100vw - 30px));
        height: min(380px, calc(100svh - 285px), calc(100vw - 30px));
        min-height: 280px;
    }

    .design .design-swiper-pagination {
        margin-top: 18px;
    }

    .design .design-header .design-header__h2 {
        font-size: clamp(24px, 7vw, 30px);
    }

    .catalog-stage {
        padding-top: calc(var(--header-pill-space) + 14px);
        padding-bottom: 6rem;
    }

    .site-footer {
        padding-top: calc(var(--header-pill-space) + 8px);
        padding-bottom: 10.2rem;
    }

    .site-footer__inner {
        width: calc(100% - 20px);
    }

    .site-footer__visual {
        min-height: clamp(105px, 17vh, 150px);
    }

    .site-footer__visual::before {
        width: min(150px, 46%);
    }

    .site-footer__visual img {
        width: min(92px, 24vw);
        max-height: 112px;
    }

    .site-footer__visual img:nth-child(3) {
        width: min(82px, 22vw);
    }

    .site-footer__copy {
        gap: 0.52rem;
    }

    .site-footer__brand {
        gap: 0.55rem;
        font-size: 0.82rem;
    }

    .site-footer__brand img {
        width: 28px;
        height: 28px;
        padding: 3px;
    }

    .site-footer__copy h2 {
        font-size: clamp(1.42rem, 7vw, 2rem);
        line-height: 0.98;
    }

    .site-footer__copy p {
        font-size: 0.78rem;
        line-height: 1.28;
    }

    .site-footer__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .site-footer__primary,
    .site-footer__secondary {
        width: 100%;
        min-height: 36px;
        padding: 0.55rem 0.7rem;
        font-size: 0.76rem;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .site-footer__column {
        min-height: 88px;
        padding: 0.62rem;
        gap: 0.28rem;
        border-radius: 18px;
    }

    .site-footer__column h3 {
        font-size: 0.58rem;
        margin-bottom: 0.08rem;
    }

    .site-footer__column a,
    .site-footer__column span {
        font-size: 0.66rem;
        line-height: 1.08;
    }

    .site-footer__contact a:first-of-type {
        font-size: 0.76rem;
    }

    .site-footer__bottom {
        display: flex;
        min-height: 32px;
        padding: 0.48rem 0 0;
        gap: 0.45rem;
        font-size: 0.62rem;
        padding-inline: 0.65rem;
        border-radius: 18px;
    }

    .site-footer__wordmark {
        font-size: clamp(3.5rem, 17vw, 5.2rem);
    }
}

@media (max-width: 420px) {

    header .logo-icon,
    .cart-icon-btn {
        width: 32px;
        height: 32px;
    }

    .account-avatar {
        width: 24px;
        height: 24px;
    }

    .cart-badge {
        min-width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }
}

/* Canonical right-side sticky bar and go-up behavior */

.main-tabbar:not(.has-go-up) {
    height: calc((52px * 4) + (6px * 3) + 16px) !important;
}

.main-tabbar.has-go-up {
    height: calc((52px * 5) + (6px * 4) + 16px) !important;
}

.main-tabbar .main-tabbar__item {
    width: 100%;
    flex: 0 0 52px !important;
    height: 52px !important;
}

.main-tabbar .go-up-bar {
    display: none !important;
}

.main-tabbar .go-up-bar.is-visible {
    display: flex !important;
    color: #fff;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.3), transparent 28%),
        linear-gradient(135deg, rgba(244, 120, 62, 0.95), rgba(138, 82, 43, 0.7));
    box-shadow:
        0 14px 28px rgba(244, 120, 62, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.main-tabbar .go-up-bar.is-visible:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 36px rgba(244, 120, 62, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 420px) {
    .main-tabbar {
        right: 9px !important;
        width: 78px !important;
        padding: 7px !important;
        border-radius: 30px;
    }

    .main-tabbar:not(.has-go-up) {
        height: calc((50px * 4) + (6px * 3) + 14px) !important;
    }

    .main-tabbar.has-go-up {
        height: calc((50px * 5) + (6px * 4) + 14px) !important;
    }

    .main-tabbar .main-tabbar__item {
        flex: 0 0 50px !important;
        height: 50px !important;
    }
}

/* Canonical footer visual rotation */

@keyframes site-footer-visual-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes site-footer-ring-spin {
    from {
        transform: rotate(-12deg);
    }

    to {
        transform: rotate(348deg);
    }
}

@keyframes site-footer-products-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {

    .site-footer__visual,
    .site-footer__visual::before,
    .site-footer__visual img {
        animation: none !important;
    }
}

/* Footer restore: original full design */

@media (max-width: 900px) {
    .site-footer {
        height: auto !important;
        min-height: 100svh !important;
        padding-top: var(--header-pill-space) !important;
        padding-bottom: 200px !important;
    }

    .site-footer__inner {
        width: min(100% - 24px, 720px) !important;
    }

    .site-footer__copy h2 {
        font-size: clamp(3rem, 16vw, 5.7rem) !important;
        line-height: 0.92 !important;
    }

    .site-footer__visual {
        min-height: 330px !important;
        order: -1 !important;
    }

    .site-footer__visual img {
        width: min(210px, 48vw) !important;
    }

    .site-footer__visual img:nth-child(3) {
        width: min(185px, 42vw) !important;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .site-footer__column {
        min-height: 190px !important;
        padding: 1.35rem !important;
    }
}

@media (max-width: 560px) {
    .site-footer {
        height: auto !important;
        min-height: 100svh !important;
        padding-top: var(--header-pill-space) !important;
        padding-bottom: 200px !important;
    }

    .site-footer__inner {
        width: calc(100% - 20px) !important;
    }

    .site-footer__copy h2 {
        font-size: clamp(2.55rem, 15vw, 4.25rem) !important;
    }

    .site-footer__copy p {
        font-size: 0.92rem !important;
    }

    .site-footer__actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .site-footer__primary,
    .site-footer__secondary {
        width: 100% !important;
    }

    .site-footer__visual {
        min-height: 280px !important;
    }

    .site-footer__grid {
        grid-template-columns: 1fr !important;
    }

    .site-footer__column {
        min-height: unset !important;
        padding: 1.25rem !important;
    }

    .site-footer__bottom {
        display: grid !important;
        justify-content: start !important;
        min-height: auto !important;
        padding: 0 0 120px 0 !important;
    }
}

/* Hide Codepen mobile hero on desktop and landscape */
.wrapper.is--portrait {
    display: none !important;
}

/* --- PREMIUM MOBILE REDESIGN (PORTRAIT/SMARTPHONE) --- */
@media (max-width: 767px) {

    /* 1. Exact Codepen Portrait Hero */
    .wrapper.is--portrait {
        display: flex !important;
        align-items: flex-start;
        justify-content: center;
        min-height: calc(100svh - 85px);
        height: auto;
        padding-bottom: 40px;
        /* Space above tab bar */
        position: relative;
        background: #08120d;
        margin-top: 100px;
    }

    .wrapper.is--portrait .content {
        width: 100%;
        max-width: 990px;
        margin: auto;
        position: relative;
        margin-top: 4.5vw;
        /* Codepen specific */
    }

    .wrapper.is--portrait .bg-shape {
        height: 60%;
        background-image: linear-gradient(-45deg, #0b2e1a 0%, #1a4a2a 100%);
        box-shadow: 0 6.8vw 31.4vw 0 rgba(10, 22, 31, 0.26);
        border-radius: 6.8vw;
        padding: 10.2vw 9vw;
        width: 80.7vw;
        position: absolute;
        top: 0;
        left: 9.6vw;
        display: flex;
        align-items: center;
        z-index: 1;
    }

    .wrapper.is--portrait .product-img {
        position: absolute;
        z-index: 5;
        width: 100%;
        left: 0;
        top: -4.5vw;
        height: 56vw;
        pointer-events: none;
    }

    .wrapper.is--portrait .product-img__item {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        opacity: 0;
        transition: all 0.5s ease-out;
    }

    .wrapper.is--portrait .product-img__item.active {
        opacity: 1;
        transition-delay: 0.3s;
    }

    .wrapper.is--portrait .product-img__img {
        max-height: 100%;
        max-width: 85%;
        object-fit: contain;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
    }

    .wrapper.is--portrait .product-slider {
        width: 72.2vw;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        margin-top: 34vw;
        border-radius: 6.8vw;
        position: relative;
        z-index: 3;
    }

    .wrapper.is--portrait .product-slider__card {
        height: auto;
        padding-top: 22vw;
        /* Space for the floating image */
        background-color: #111;
        border-radius: 6.8vw;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: flex-end;
    }

    .wrapper.is--portrait .product-slider__content {
        padding: 9vw 6.8vw;
        color: #fff;
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .wrapper.is--portrait .product-slider__title {
        margin: 0 0 2.2vw;
        font-weight: 700;
        font-size: 6.8vw;
        line-height: 1.1em;
        letter-spacing: 0.4vw;
        text-transform: uppercase;
    }

    .wrapper.is--portrait .product-slider__price {
        display: block;
        font-size: 5.4vw;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4.5vw;
    }

    .wrapper.is--portrait .product-ctr {
        display: flex;
        align-items: center;
        margin-bottom: 6.8vw;
    }

    .wrapper.is--portrait .hr-vertical {
        width: 1px;
        background-color: rgba(255, 255, 255, 0.2);
        height: 9vw;
        margin: 0 4.5vw;
    }

    .wrapper.is--portrait .product-inf {
        display: flex;
        align-items: center;
    }

    .wrapper.is--portrait .product-inf__percent-txt {
        font-size: 4vw;
        font-weight: 700;
        margin-right: 2.2vw;
    }

    .wrapper.is--portrait .product-inf__title {
        font-size: 2.7vw;
        font-weight: 700;
        letter-spacing: 0.15vw;
    }

    .wrapper.is--portrait .product-slider__bottom {
        display: flex;
        align-items: center;
        gap: 3.4vw;
    }

    .wrapper.is--portrait .product-slider__cart {
        background-color: #27ae60;
        color: #fff;
        border: none;
        padding: 3.4vw 5.6vw;
        border-radius: 6.8vw;
        font-weight: 700;
        font-size: 3vw;
        cursor: pointer;
        box-shadow: 0 1.1vw 3.4vw rgba(39, 174, 96, 0.4);
    }

    .wrapper.is--portrait .product-slider__fav {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
        border: none;
        padding: 3.4vw 4.5vw;
        border-radius: 6.8vw;
        font-weight: 600;
        font-size: 3vw;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    /* Slider Arrows */
    .wrapper.is--portrait .slider-arrows {
        position: absolute;
        top: 55.2vw; /* Adjusted for new scaling */
        transform: translateY(-50%);
        width: 100%;
        left: 0;
        z-index: 50; /* Now definitively above the product-img (z-index 5) */
        pointer-events: none;
        /* Let clicks pass through empty space */
    }

    .wrapper.is--portrait .mobile-hero-next,
    .wrapper.is--portrait .mobile-hero-prev {
        background-image: none !important;
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        width: 7.6vw; /* Reduced from 9vw */
        height: 7.6vw; /* Reduced from 9vw */
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
        box-shadow: 0 0.8vw 3.4vw rgba(0, 0, 0, 0.3);
        pointer-events: auto;
        /* Re-enable clicks on arrows */
        position: absolute;
        top: 0;
        margin-top: 0;
    }

    .wrapper.is--portrait .mobile-hero-prev {
        left: 12vw;
    }

    .wrapper.is--portrait .mobile-hero-next {
        right: 12vw;
    }

    .wrapper.is--portrait .mobile-hero-next::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #fff;
        font-size: 3.4vw; /* Reduced from 4vw */
        margin-left: 0.4vw;
    }

    .wrapper.is--portrait .mobile-hero-prev::after {
        content: '\f104';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #fff;
        font-size: 3.4vw; /* Reduced from 4vw */
        margin-right: 0.4vw;
    }

    /* Footer / Explore Button */
    .product-hero-mobile__footer {
        position: relative;
        margin-top: 40px;
        margin-bottom: 80px;
        /* Space above tab bar */
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        z-index: 10;
        text-align: center;
    }

    .product-hero-mobile__footer .design-header__h2 {
        font-size: 1.15rem !important;
        color: rgba(255, 255, 255, 0.95) !important;
        margin: 0 !important;
        max-width: 85%;
        line-height: 1.3 !important;
        font-weight: 600;
    }

    .product-hero-mobile__footer .catalogue-scroll-btn {
        display: flex !important;
        transform: scale(0.85);
        margin: 0 auto !important;
    }

    /* Hide old elements */
    .flick-group,
    .design-header,
    .hero-slider {
        display: none !important;
    }

    /* 2. Bottom Sheet for Cart */
    .cart-sidebar {
        top: auto !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 85svh !important;
        border-radius: 34px 34px 0 0 !important;
        transform: translate3d(0, 100%, 0) !important;
    }

    .cart-sidebar.open {
        transform: translate3d(0, 0, 0) !important;
    }

    .cart-header {
        border-radius: 34px 34px 0 0 !important;
        padding: 25px 25px 20px !important;
    }

    .cart-header::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 5px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    /* 2b. Centered Modal for Offer Ribbon */
    .offer-ribbon__panel {
        position: fixed !important;
        top: 480% !important;
        bottom: auto !important;
        left: 50% !important;
        width: 90vw !important;
        max-width: 400px !important;
        border-radius: 24px !important;
        transform: translate3d(-50%, -40%, 0) scale(0.9) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        padding: 20px 20px !important;
        background: rgba(18, 53, 36, 0.98) !important;
        transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease !important;
        z-index: 2000 !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
    }

    .offer-ribbon.is-open .offer-ribbon__panel {
        transform: translate3d(-50%, -50%, 0) scale(1) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .offer-ribbon__panel::before {
        display: none !important;
        /* No drag handle needed for centered modal */
    }

    .offer-ribbon__track {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .offer-ribbon__item {
        margin-bottom: 0 !important;
        padding: 15px !important;
        font-size: 0.9rem !important;
        border-radius: 16px !important;
        justify-content: flex-start !important;
    }

    /* 3. Offer Ribbon under header & Hide on Scroll */
    header {
        align-items: center !important;
        justify-content: space-between !important;
        transition: background 0.3s ease;
    }

    .header-center {
        position: absolute !important;
        top: calc(100% + 12px) !important;
        /* Float directly below header pill */
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: max-content !important;
        /* Let it shrink to fit the teaser */
        max-width: 90% !important;
        margin: 0 !important;
        padding: 0 !important;
        transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
        opacity: 1;
        z-index: 100 !important;
    }

    /* Strictly hide offer ribbon (teaser included) on scroll */
    header.header-scrolled .header-center {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translate(-50%, -15px) !important;
        /* Slide up slightly while fading */
        visibility: hidden !important;
    }

    header.header-scrolled .offer-ribbon,
    header.header-scrolled .offer-ribbon__teaser {
        pointer-events: none !important;
        /* Ensure nothing is clickable */
    }

    /* 4. Horizontal Bottom Sticky Tab Bar (Floating Pill) */
    .main-tabbar,
    .sticky-bar.main-tabbar {
        top: auto !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translate3d(-50%, 150%, 0) !important;
        /* Dynamic width: Starts narrower */
        width: 85% !important;
        max-width: 320px !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 12px !important;
        border-radius: 999px !important;
        height: 60px !important;
        min-height: 60px !important;
        max-height: 70px !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
        border: none !important;
        transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    }

    .main-tabbar.has-go-up,
    .sticky-bar.main-tabbar.has-go-up {
        width: 96% !important;
        /* Expands when go-to-top button appears */
        max-width: 400px !important;
    }

    .main-tabbar.is-visible,
    .sticky-bar.main-tabbar.is-visible {
        transform: translate3d(-50%, 0, 0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .main-tabbar__item {
        height: 100% !important;
        /* Fill container completely */
        max-height: 100% !important;
        padding: 4px 2px !important;
        /* Tighter padding inside pill */
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        /* Force stack */
        justify-content: center !important;
        align-items: center !important;
        gap: 2px !important;
        margin: 0 !important;
    }

    .main-tabbar__item i {
        font-size: 1.15rem !important;
        line-height: 1 !important;
        margin: 0 !important;
    }

    .main-tabbar__item span {
        font-size: 0.6rem !important;
        /* Tighter text */
        line-height: 1 !important;
        margin: 0 !important;
    }

    /* 5. Minimal & Creative Smartphone Footer */
    .site-footer {
        padding: 4rem 1.5rem 10rem !important;
        /* 10rem ensures nothing hides under tabbar */
        min-height: auto !important;
        background: #08120d !important;
        display: block !important;
    }

    .site-footer__inner {
        display: block !important;
        width: 100% !important;
    }

    .site-footer__visual {
        display: none !important;
        /* Hide giant rotating visuals */
    }

    .site-footer__hero {
        padding: 0 0 2.5rem !important;
        min-height: auto !important;
        gap: 1.5rem !important;
        text-align: center;
        grid-template-columns: 1fr !important;
        /* Ensure it is a 1-column grid */
    }

    .site-footer__brand {
        margin: 0 auto !important;
    }

    .site-footer__copy {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .site-footer__copy h2 {
        font-size: 2.2rem !important;
        line-height: 1.15 !important;
        letter-spacing: -0.02em !important;
        margin: 1rem auto !important;
    }

    .site-footer__copy p {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .site-footer__actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    .site-footer__grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        /* 2 columns placed side by side */
        gap: 1rem !important;
        background: transparent !important;
        border: none !important;
    }

    .site-footer__column {
        padding: 1.2rem 0.8rem !important;
        /* Tighter padding for 2-column fit */
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .site-footer__column h3 {
        color: var(--gold) !important;
        font-size: 0.95rem !important;
        /* slightly smaller font for narrow columns */
        margin-bottom: 0.8rem !important;
    }

    .site-footer__bottom {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.8rem !important;
        padding-top: 3rem !important;
        opacity: 0.6;
    }

    .site-footer__wordmark {
        font-size: 3.5rem !important;
        position: relative !important;
        bottom: 0 !important;
        margin-top: 2rem !important;
        opacity: 0.03 !important;
    }

    /* 6. Smart Asymmetric Grid Tweaks */
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .product-card {
        padding: 0.8rem !important;
        /* Tighter padding for 2-column fit */
        border-radius: 20px !important;
    }

    .card-img-wrap {
        height: 160px !important;
        /* Shorter image wrap */
        border-radius: 16px !important;
    }

    .product-card .card-title {
        font-size: 0.95rem !important;
        margin: 8px 0 4px !important;
        line-height: 1.2 !important;
    }

    .product-card .card-copy {
        font-size: 0.75rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .product-card .card-price {
        font-size: 1rem !important;
    }

    .add-cart-btn {
        min-height: 40px !important;
        /* Smaller touch target to fit 2-column width */
        font-size: 0.8rem !important;
        padding: 0 10px !important;
        border-radius: 12px !important;
    }

    /* 7. Haptic Feedback */
    .cat-btn:active,
    .add-cart-btn:active,
    .cart-icon-btn:active,
    .cta-button:active,
    .main-tabbar__item:active,
    .offer-ribbon__teaser:active {
        transform: scale(0.94) !important;
        transition: transform 0.1s !important;
    }
}