@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");

:root {
    --brand-dark: #0f1729;
    --brand-navy: #141f38;
    --brand-gold: #e5a906;
    --brand-gold-soft: #f6cf63;
    --brand-gold-deep: #c98f05;
    --surface: #ffffff;
    --surface-soft: #f4f6fb;
    --text-main: #1f2229;
    --text-muted: #636974;
    --border: #e3e8f0;
    --header-shadow: 0 10px 30px rgba(15, 23, 41, 0.08);
}

/* Scrollbar width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Thumb (scroll handle) */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 0px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-main);
    background: var(--surface-soft);
}

    body.is-loading {
        overflow: hidden;
    }

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: rgba(245, 248, 253, 0.94);
    backdrop-filter: blur(3px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .site-loader.is-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.site-loader-card {
    width: min(360px, calc(100% - 2rem));
    padding: 1.2rem 1rem 1rem;
    border-radius: 1rem;
    border: 1px solid #dde5f1;
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(16, 27, 45, 0.15);
    text-align: center;
}

.site-loader-cart {
    width: 78px;
    height: 42px;
    margin: 0 auto 0.7rem;
    border: 3px solid #2a3c58;
    border-radius: 0.65rem;
    border-right-width: 7px;
    position: relative;
    animation: loaderCartBounce 0.9s ease-in-out infinite;
}

    .site-loader-cart::before {
        content: "";
        position: absolute;
        left: 8px;
        top: -12px;
        width: 18px;
        height: 12px;
        border: 3px solid #2a3c58;
        border-bottom: 0;
        border-radius: 8px 8px 0 0;
    }

.site-loader-wheel {
    position: absolute;
    bottom: -12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2a3c58;
}

    .site-loader-wheel:first-child {
        left: 10px;
    }

    .site-loader-wheel:last-child {
        right: 10px;
    }

.site-loader-brand {
    margin: 0 0 0.18rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #1b2c45;
}

.site-loader-text {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    color: #5f6e86;
}

.site-loader-progress {
    width: 100%;
    height: 7px;
    border-radius: 999px;
    background: #e8edf6;
    overflow: hidden;
}

.site-loader-progress-fill {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f6bc34 0%, #e3a600 100%);
    transform-origin: left;
    animation: loaderProgressPulse 1.2s ease-in-out infinite;
}

@keyframes loaderCartBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes loaderProgressPulse {
    0% {
        transform: scaleX(0.35);
        opacity: 0.75;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(0.35);
        opacity: 0.75;
    }
}

.top-header-strip {
    background: linear-gradient(90deg, #0b1220 0%, #141f38 45%, #1a2744 100%);
    color: #d8e2f5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

    .top-header-strip::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--brand-gold), #ffdf7a, var(--brand-gold), transparent);
        opacity: 0.85;
    }

.top-header-wrap {
    min-height: 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) auto;
    align-items: center;
    gap: 1rem;
}

    /* Legacy layout: social links as first grid child */
    .top-header-wrap > .top-social-links {
        justify-self: start;
    }

.top-strip-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    white-space: nowrap;
}

.top-strip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(229, 169, 6, 0.14);
    border: 1px solid rgba(229, 169, 6, 0.35);
    color: #ffd86a;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.top-strip-note {
    font-size: 0.72rem;
    color: #9aa8c4;
}

.top-strip-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
    flex-shrink: 0;
}

.top-strip-divider {
    width: 1px;
    height: 1.35rem;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    flex-shrink: 0;
}

.top-social-links {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.28rem 0.55rem 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

    /* Direct child links (legacy markup without .top-social-icons wrapper) */
    .top-social-links:not(:has(.top-social-icons)) {
        gap: 0.4rem;
        padding: 0.3rem 0.5rem;
    }

        .top-social-links:not(:has(.top-social-icons))::before {
            content: "Follow Us";
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #c8d4ec;
            margin-right: 0.1rem;
            white-space: nowrap;
        }

.top-social-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #c8d4ec;
    white-space: nowrap;
}

.top-social-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.top-social-link,
.top-social-links > a {
    position: relative;
    text-decoration: none;
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

    .top-social-link svg,
    .top-social-links > a svg {
        width: 0.95rem;
        height: 0.95rem;
        display: block;
        flex-shrink: 0;
    }

    .top-social-links > a[aria-label="Facebook"] svg {
        width: 0.58rem;
        height: 0.95rem;
    }

    .top-social-links > a[aria-label="Youtube"] svg {
        width: 1.05rem;
        height: 0.88rem;
    }

    .top-social-link:hover,
    .top-social-links > a:hover {
        transform: translateY(-2px) scale(1.08);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
        filter: brightness(1.08);
        color: #fff;
    }

    .top-social-link:focus-visible,
    .top-social-links > a:focus-visible {
        outline: 2px solid rgba(255, 208, 90, 0.9);
        outline-offset: 2px;
    }

.top-social-facebook,
.top-social-links > a[aria-label="Facebook"] {
    background: linear-gradient(145deg, #2f8fff, #1877f2);
}

.top-social-instagram,
.top-social-links > a[aria-label="Instagram"] {
    background: linear-gradient(145deg, #f77737, #e1306c 48%, #c13584 78%, #833ab4);
}

.top-social-youtube,
.top-social-links > a[aria-label="Youtube"] {
    background: linear-gradient(145deg, #ff6b6b, #ff0000);
}

.top-offer-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.top-offer-text {
    margin: 0;
    font-size: 0.76rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    text-align: center;
    animation: offerMarquee 22s linear infinite;
}

    .top-offer-text strong {
        color: #ffe08a;
        font-weight: 700;
    }

@keyframes offerMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-18%);
    }
}

.flash-text {
    margin-left: 0.45rem;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff4d4d, #ff8a3d);
    color: #fff;
    font-weight: 700;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    animation: flashPulse 1.4s ease-in-out infinite;
}

@keyframes flashPulse {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 0 rgba(255, 208, 85, 0.2);
    }

    50% {
        opacity: 0.45;
        text-shadow: 0 0 12px rgba(255, 208, 85, 0.75);
    }
}

.top-quick-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
}

    .top-quick-menu a {
        text-decoration: none;
        color: #c5d0e8;
        font-size: 0.72rem;
        padding: 0.28rem 0.55rem;
        border-radius: 999px;
        transition: color 0.2s ease, background-color 0.2s ease;
    }

        .top-quick-menu a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

.container {
    width: min(1440px, 92%);
    margin: 0 auto;
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

    .site-header.is-scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--header-shadow);
    }

.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 1.2rem;
    padding: 0.35rem 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo {
    height: 48px;
    width: auto;
    transition: transform 0.2s ease;
}

.logo-link:hover .logo {
    transform: scale(1.02);
}

.logo-tagline {
    display: flex;
    flex-direction: column;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-gold-deep);
    line-height: 1.2;
    padding-left: 0.75rem;
    border-left: 2px solid #eceff5;
}

.header-search-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    border: 2px solid #e8edf5;
    border-radius: 999px;
    background: #f8fafd;
    overflow: hidden;
    max-width: 620px;
    min-height: 52px;
    box-shadow: inset 0 1px 2px rgba(15, 23, 41, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

    .header-search-wrap:focus-within {
        border-color: rgba(229, 169, 6, 0.55);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(229, 169, 6, 0.12);
    }

.header-category-select,
.header-search-input,
.header-search-btn {
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.header-category-select {
    height: 52px;
    padding: 0 2.1rem 0 1.15rem;
    background: transparent;
    color: #3a4354;
    border-right: 1px solid #e2e8f2;
    min-width: 155px;
    font-weight: 600;
    font-size: 0.84rem;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #707989 50%), linear-gradient(135deg, #707989 50%, transparent 50%);
    background-position: calc(100% - 17px) 27px, calc(100% - 12px) 27px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.header-search-input {
    width: 100%;
    height: 52px;
    padding: 0 1rem;
    color: #2a3140;
    background: transparent;
    font-weight: 500;
}

    .header-search-input::placeholder {
        color: #8b93a3;
        font-style: normal;
        opacity: 1;
    }

    .header-search-input:focus,
    .header-category-select:focus {
        outline: none;
    }

.header-search-btn {
    width: 54px;
    height: 42px;
    margin-right: 5px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0a90a 0%, #e5a906 55%, #c98f05 100%);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(229, 169, 6, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .header-search-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(229, 169, 6, 0.42);
    }

    .header-search-btn svg {
        width: 20px;
        height: 20px;
    }

        .header-search-btn svg path {
            stroke: currentColor;
        }

.header-right-tools {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.header-call {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-right: 0.55rem;
    padding: 0.45rem 0.75rem 0.45rem 0.55rem;
    border-radius: 0.85rem;
    border: 1px solid #e8edf5;
    background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

    .header-call:hover {
        border-color: rgba(229, 169, 6, 0.35);
        box-shadow: 0 8px 18px rgba(15, 23, 41, 0.06);
        transform: translateY(-1px);
    }

    .header-call small {
        display: block;
        color: #7a8294;
        line-height: 1;
        font-size: 0.68rem;
        font-weight: 500;
    }

    .header-call p {
        margin: 0.15rem 0 0;
        font-size: 0.82rem;
        font-weight: 700;
        color: #1a2233;
        white-space: nowrap;
    }

.phone-icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, #fff7e0, #ffe9a8);
    color: #9a6b00;
    flex-shrink: 0;
}

.header-icon-btn {
    width: 2.45rem;
    height: 2.45rem;
    border: none;
    border-radius: 0.75rem;
    background: transparent;
    color: #1f2738;
    font-size: 0.78rem;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-tool-btn:hover,
.header-account-btn:hover {
    background: #f2f5fa;
    color: #0f1729;
    transform: translateY(-1px);
}

.header-account-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    width: auto;
    min-width: 3.2rem;
    height: auto;
    padding: 0.35rem 0.45rem;
}

.header-tool-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #5d6678;
    line-height: 1;
}

.header-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 65;
    background: linear-gradient(90deg, #0f1729 0%, #16233f 50%, #0f1729 100%);
}

.header-bottom-wrap {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    overflow: visible;
}

.header-bottom-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.wallet-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 208, 90, 0.35);
    color: #ffe7a0 !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

    .wallet-badge:empty {
        display: none;
    }

    .wallet-badge::before {
        content: "";
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 50%;
        background: #4ade80;
        box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.18);
    }

.shop-category-btn {
    text-decoration: none;
    background: #f5a700;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.66rem 1rem;
    border-radius: 0.12rem;
    white-space: nowrap;
}

.header-menu {
    flex: 1;
    position: relative;
}

.header-menu-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    overflow: visible;
    margin-bottom: 0;
    /* padding: 0.35rem;
  border: 1px solid #e8ecf4;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06); */
}

.menu-item {
    position: relative;
    flex: 0 0 auto;
}

.menu-link {
    text-decoration: none;
    color: #d5def2;
    font-size: 0.84rem;
    white-space: nowrap;
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    border-radius: 0.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .menu-link::after {
        content: "";
        position: absolute;
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.2rem;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(90deg, #f5a700, #ffdf7a);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.2s ease;
    }

    .menu-link:hover,
    .menu-item:hover > .menu-link,
    .menu-item:focus-within > .menu-link {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

        .menu-link:hover::after,
        .menu-item:hover > .menu-link::after,
        .menu-item:focus-within > .menu-link::after {
            transform: scaleX(1);
        }

    .menu-link.active {
        background: linear-gradient(135deg, rgba(229, 169, 6, 0.22), rgba(255, 223, 122, 0.12));
        color: #ffe7a0;
        box-shadow: inset 0 0 0 1px rgba(255, 208, 90, 0.22);
    }

.menu-arrow {
    display: inline-block;
    width: 0.42rem;
    height: 0.42rem;
    margin-left: 0.25rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    vertical-align: middle;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.menu-item.open .menu-arrow,
.menu-item:hover .menu-arrow,
.menu-item:focus-within .menu-arrow {
    transform: rotate(225deg) translateY(1px);
    color: #ffe7a0;
}

.menu-badge {
    padding: 0.12rem 0.38rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff5c5c, #ff8f45);
    color: #fff;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

    .menu-badge.alt {
        background: linear-gradient(135deg, #22c55e, #16a34a);
        color: #fff;
    }

.dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e5e9f1;
    border-radius: 0.75rem;
    box-shadow: 0 14px 34px rgba(17, 25, 41, 0.14);
    padding: 0.45rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 60;
}

    .dropdown-panel a {
        display: block;
        text-decoration: none;
        color: #2e3443;
        padding: 0.45rem 0.55rem;
        border-radius: 0.45rem;
        font-size: 0.82rem;
    }

        .dropdown-panel a:hover {
            background: #f4f7fc;
        }

.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: min(900px, 92vw);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e5e9f1;
    border-radius: 0.85rem;
    box-shadow: 0 16px 38px rgba(17, 25, 41, 0.14);
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.15fr;
    gap: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 60;
}

.mega-col h4 {
    font-size: 0.86rem;
    margin-bottom: 0.45rem;
    color: #1d2638;
}

.mega-col a {
    display: block;
    text-decoration: none;
    color: #596275;
    font-size: 0.8rem;
    padding: 0.25rem 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .mega-col a:hover {
        color: #111b2f;
        transform: translateX(2px);
    }

.mega-promo {
    background: linear-gradient(145deg, #111d34, #1f2e4e);
    border-radius: 0.7rem;
    color: #fff;
    padding: 0.8rem;
}

    .mega-promo p {
        font-size: 0.72rem;
        opacity: 0.85;
        margin-bottom: 0.22rem;
    }

    .mega-promo h5 {
        font-size: 0.92rem;
        line-height: 1.3;
    }

    .mega-promo strong {
        display: inline-block;
        margin-top: 0.45rem;
        font-size: 1.05rem;
        color: #ffcc50;
    }

    .mega-promo a {
        display: inline-block;
        margin-top: 0.6rem;
        text-decoration: none;
        color: #0f1a2d;
        background: #fff;
        border-radius: 0.45rem;
        padding: 0.35rem 0.58rem;
        font-size: 0.72rem;
        font-weight: 600;
    }

.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel,
.has-dropdown.open .dropdown-panel,
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-cta-btn {
    text-decoration: none;
    flex: 0 0 auto;
    padding: 0.52rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 208, 90, 0.45);
    background: linear-gradient(135deg, #f0a90a 0%, #e5a906 100%);
    color: #1a1404;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(229, 169, 6, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

    .menu-cta-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(229, 169, 6, 0.36);
        filter: brightness(1.03);
        color: #1a1404;
    }

.mobile-menu-btn {
    display: none;
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid #d8deea;
    border-radius: 0.55rem;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.22rem;
    cursor: pointer;
    position: relative;
    z-index: 240;
}

    .mobile-menu-btn span {
        width: 1rem;
        height: 2px;
        border-radius: 2px;
        background: #172235;
        transition: transform 0.2s ease, opacity 0.2s ease;
        transform-origin: center;
    }

.mobile-search-toggle {
    display: none;
}

.mobile-menu-btn.is-open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

body.mobile-menu-open {
    overflow: hidden;
}

.cart-btn {
    background: transparent;
    color: #222838;
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: inline-grid;
    place-items: center;
    position: relative;
    cursor: pointer;
}

.cart-icon svg {
    /* width: 1.06rem;
  height: 1.06rem; */
    fill: none;
    stroke: #2a3040;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    display: inline-grid;
    place-items: center;
    font-size: 0.6rem;
    font-weight: 700;
    position: absolute;
    top: -0.15rem;
    right: -0.12rem;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.35);
}

.hero {
    padding: 1.35rem 0 1.1rem;
    background:
        radial-gradient(circle at 8% 20%, rgba(229, 169, 6, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 92% 10%, rgba(20, 31, 56, 0.08) 0%, transparent 38%),
        linear-gradient(180deg, #f8fafd 0%, #f3f6fb 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 23, 41, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 41, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 85%);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(240px, 0.85fr);
    gap: 1.15rem;
    align-items: stretch;
}

.hero-main {
    min-width: 0;
}

.selected-carousel {
    position: relative;
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(15, 23, 41, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: var(--brand-navy);
    min-height: 100%;
}

.selected-carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.selected-slide {
    flex: 0 0 100%;
    min-height: 420px;
    padding: 2.4rem 2.5rem 3.6rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: center;
}

.selected-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 6s ease;
}

.selected-slide.is-active .selected-slide-image {
    transform: scale(1.08);
}

.selected-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(8, 12, 22, 0.88) 0%, rgba(8, 12, 22, 0.55) 45%, rgba(8, 12, 22, 0.15) 100%);
}

.selected-slide-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.85rem;
    max-width: min(52ch, 58%);
    padding: 1.35rem 1.45rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.selected-slide h2 {
    font-size: clamp(1.65rem, 3.2vw, 2.55rem);
    line-height: 1.12;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-highlight {
    color: var(--brand-gold-soft);
}

.hero-slide-desc {
    max-width: 48ch;
    margin: 0;
    color: rgba(245, 248, 255, 0.88);
    font-size: 0.92rem;
    line-height: 1.55;
}

.hero-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.15rem;
}

.selected-slide .btn-primary {
    padding: 0.62rem 1.15rem;
    font-size: 0.88rem;
    border-radius: 0.55rem;
    box-shadow: 0 8px 20px rgba(229, 169, 6, 0.28);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1.15rem;
    font-size: 0.88rem;
    border-radius: 0.55rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-1px);
}

.selected-kicker {
    display: inline-flex;
    width: fit-content;
    background: linear-gradient(135deg, rgba(229, 169, 6, 0.28), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(245, 190, 50, 0.45);
    border-radius: 999px;
    padding: 0.32rem 0.72rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffe7a0;
}

.slide-one {
    background: linear-gradient(135deg, #0f1729, #1a3568);
}

.slide-two {
    background: linear-gradient(135deg, #2a1208, #8f3a18);
}

.slide-three {
    background: linear-gradient(135deg, #0d2418, #1a7a52);
}

.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(15, 23, 41, 0.45);
    color: #fff;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.hero-carousel-btn:hover {
    background: rgba(229, 169, 6, 0.85);
    border-color: rgba(229, 169, 6, 0.95);
    color: var(--brand-dark);
    transform: translateY(-50%) scale(1.05);
}

.hero-carousel-prev {
    left: 0.85rem;
}

.hero-carousel-next {
    right: 0.85rem;
}

.selected-carousel-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.15rem;
    background: linear-gradient(180deg, transparent, rgba(8, 12, 22, 0.55));
}

.hero-slide-counter {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.04em;
}

.hero-slide-counter strong {
    color: var(--brand-gold-soft);
    font-size: 0.95rem;
}

.selected-carousel-dots {
    position: static;
    transform: none;
    display: flex;
    gap: 0.45rem;
}

.selected-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.22s ease, background 0.22s ease;
}

.selected-dot.is-active {
    width: 1.45rem;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-soft));
}

.hero-side {
    display: grid;
    gap: 1rem;
    align-content: stretch;
}

.hero-promo-card {
    border-radius: 1rem;
    padding: 1.25rem 1.2rem;
    display: grid;
    gap: 0.55rem;
    min-height: 0;
    flex: 1;
    box-shadow: 0 10px 28px rgba(15, 23, 41, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15, 23, 41, 0.14);
}

.hero-promo-primary {
    background: linear-gradient(145deg, #fff9e8 0%, #fff3cc 100%);
    border: 1px solid rgba(229, 169, 6, 0.28);
}

.hero-promo-secondary {
    background: linear-gradient(145deg, #141f38 0%, #0f1729 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d8e2ef;
}

.hero-promo-badge {
    display: inline-flex;
    width: fit-content;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
}

.hero-promo-primary .hero-promo-badge {
    background: rgba(229, 169, 6, 0.18);
    color: #8a6200;
}

.hero-promo-secondary .hero-promo-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #f5be32;
}

.hero-promo-card h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-promo-primary h3 {
    color: var(--brand-dark);
}

.hero-promo-secondary h3 {
    color: #f3f6fb;
}

.hero-promo-card p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.5;
}

.hero-promo-primary p {
    color: #5a6475;
}

.hero-promo-secondary p {
    color: #9aabc0;
}

.hero-promo-card strong {
    color: var(--brand-gold-deep);
}

.hero-promo-secondary strong {
    color: var(--brand-gold-soft);
}

.hero-promo-link {
    margin-top: 0.25rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    transition: opacity 0.18s ease;
}

.hero-promo-primary .hero-promo-link {
    color: #8a6200;
}

.hero-promo-secondary .hero-promo-link {
    color: var(--brand-gold-soft);
}

.hero-promo-link:hover {
    opacity: 0.82;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.4rem;
    align-items: center;
}

.eyebrow {
    color: var(--brand-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.8rem;
}

h1 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    margin: 0.55rem 0;
}

    h1 span {
        color: var(--brand-gold);
    }

.hero-text {
    color: var(--text-muted);
    max-width: 58ch;
    margin-bottom: 1.2rem;
}

.btn-primary {
    display: inline-block;
    border: none;
    text-decoration: none;
    background: var(--brand-gold);
    color: var(--brand-dark);
    padding: 0.78rem 1.2rem;
    border-radius: 0.6rem;
    font-weight: 700;
    cursor: pointer;
}

    .btn-primary:hover {
        background: #f2bc2e;
    }

.products-section {
    padding: 2.5rem 0 4rem;
    background:
        radial-gradient(circle at 0% 0%, rgba(243, 248, 255, 0.9) 0%, transparent 38%),
        radial-gradient(circle at 100% 100%, rgba(255, 246, 232, 0.85) 0%, transparent 34%),
        #f4f6fb;
}

.products-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.15rem;
    flex-wrap: wrap;
}

.products-head-text {
    display: grid;
    gap: 0.35rem;
    max-width: 38rem;
}

.products-section-head h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1.15;
}

.products-section-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.products-view-cart {
    display: inline-flex;
    align-items: center;
    padding: 0.62rem 1.05rem;
    border-radius: 0.6rem;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--brand-dark);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 6px 16px rgba(15, 23, 41, 0.06);
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
}

.products-view-cart:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--brand-dark);
    transform: translateY(-1px);
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.product-filter-chip {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    border-radius: 999px;
    padding: 0.42rem 0.82rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.product-filter-chip:hover {
    border-color: rgba(229, 169, 6, 0.35);
    color: var(--brand-dark);
}

.product-filter-chip.is-active {
    background: linear-gradient(135deg, #fff4d6, #ffe8a8);
    border-color: rgba(229, 169, 6, 0.45);
    color: #8a6200;
}

.products-count {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.products-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.product-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(227, 232, 240, 0.95);
    border-radius: 1.15rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow:
        0 10px 28px rgba(15, 23, 41, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    isolation: isolate;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-gold) 22%, var(--brand-gold-soft) 50%, var(--brand-gold) 78%, transparent);
    opacity: 0;
    transition: opacity 0.24s ease;
    z-index: 3;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229, 169, 6, 0.38);
    box-shadow:
        0 22px 44px rgba(15, 23, 41, 0.12),
        0 0 0 1px rgba(229, 169, 6, 0.12);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-media {
    position: relative;
    background:
        radial-gradient(circle at 100% 0%, rgba(229, 169, 6, 0.1) 0%, transparent 42%),
        linear-gradient(160deg, #f5f8fc 0%, #eef2f8 100%);
    overflow: hidden;
}

.product-image-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(15, 23, 41, 0.04), rgba(15, 23, 41, 0.42));
    opacity: 0;
    transition: opacity 0.22s ease;
    z-index: 2;
}

.product-card-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(15, 23, 41, 0.18);
    transform: translateY(8px);
    transition: transform 0.22s ease;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card:hover .product-card-overlay-btn {
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 4;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-gold-soft), var(--brand-gold-deep));
    border-radius: 999px;
    padding: 0.3rem 0.62rem;
    box-shadow: 0 8px 18px rgba(229, 169, 6, 0.32);
}

.product-badge-sale {
    background: linear-gradient(135deg, #22c55e, #15803d);
    box-shadow: 0 8px 18px rgba(34, 197, 94, 0.28);
}

.product-card-media .product-fav-btn {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.92);
    color: #778298;
    border-radius: 999px;
    width: 2rem;
    height: 2rem;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.product-card-media .product-fav-btn:hover {
    background: #fff;
    color: #e11d48;
    transform: scale(1.05);
}

.product-card-body {
    padding: 0.95rem 1rem 1.1rem;
    display: grid;
    gap: 0.62rem;
    flex: 1;
}

.product-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    min-height: 1.6rem;
}

h2 span {
    color: var(--brand-gold);
    font-weight: 600;
}

.top-categories {
    padding: 2.75rem 0 2.25rem;
    position: relative;
}

.categories-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.categories-head-text {
    display: grid;
    gap: 0.35rem;
    max-width: 36rem;
}

.section-eyebrow {
    display: inline-flex;
    width: fit-content;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a6200;
    background: rgba(229, 169, 6, 0.12);
    border: 1px solid rgba(229, 169, 6, 0.24);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}

.categories-section-head h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1.15;
}

.categories-section-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.categories-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.62rem 1.05rem;
    border-radius: 0.6rem;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--brand-dark);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 6px 16px rgba(15, 23, 41, 0.06);
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
}

.categories-view-all:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
    transform: translateY(-1px);
}

.categories-view-all::after {
    content: "→";
    font-size: 0.95rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.05rem;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 41, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
    padding: 0;
    text-align: left;
    width: 100%;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 0 rgba(229, 169, 6, 0.45);
    transition: box-shadow 0.22s ease;
    z-index: 2;
}

.category-card {
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 169, 6, 0.35);
    box-shadow: 0 18px 38px rgba(15, 23, 41, 0.12);
}

.category-card:hover::before {
    box-shadow: inset 0 0 0 2px rgba(229, 169, 6, 0.35);
}

.category-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(145deg, #eef2f8, #dfe7f2);
}

.category-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-card:hover .category-card-media img {
    transform: scale(1.08);
}

.category-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 41, 0) 35%, rgba(15, 23, 41, 0.45) 100%);
    pointer-events: none;
}

.category-card-body {
    padding: 0.95rem 1rem 1.05rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.category-card-info {
    display: grid;
    gap: 0.18rem;
    min-width: 0;
}

.category-card-info h3,
.category-card-body h3 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.25;
}

.category-card-meta {
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.category-card-arrow {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(229, 169, 6, 0.12);
    color: var(--brand-gold-deep);
    border: 1px solid rgba(229, 169, 6, 0.22);
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.category-card:hover .category-card-arrow {
    background: var(--brand-gold);
    color: var(--brand-dark);
    transform: translateX(2px);
}

.category-card:nth-child(1) .category-card-arrow {
    background: rgba(229, 169, 6, 0.12);
}

.category-card:nth-child(2) .category-card-arrow {
    background: rgba(22, 168, 207, 0.12);
    color: #0e829e;
    border-color: rgba(22, 168, 207, 0.22);
}

.category-card:nth-child(3) .category-card-arrow {
    background: rgba(63, 191, 107, 0.12);
    color: #2f964f;
    border-color: rgba(63, 191, 107, 0.22);
}

.category-card:nth-child(5) .category-card-arrow {
    background: rgba(168, 85, 247, 0.12);
    color: #7c3aed;
    border-color: rgba(168, 85, 247, 0.22);
}

.category-card:nth-child(6) .category-card-arrow {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.22);
}

.category-card:nth-child(7) .category-card-arrow {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
    border-color: rgba(245, 158, 11, 0.22);
}

.category-card:nth-child(8) .category-card-arrow {
    background: rgba(20, 184, 166, 0.12);
    color: #0d9488;
    border-color: rgba(20, 184, 166, 0.22);
}

.section-head {
    margin-bottom: 1.4rem;
}

    .section-head p {
        color: var(--text-muted);
        max-width: 52ch;
    }

.product-category-tag {
    display: inline-flex;
    width: fit-content;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-navy);
    background: rgba(20, 31, 56, 0.06);
    border: 1px solid rgba(20, 31, 56, 0.08);
    border-radius: 999px;
    padding: 0.28rem 0.58rem;
}

.product-fav-btn {
    border: 1px solid #d8e1ef;
    background: #fff;
    color: #778298;
    border-radius: 999px;
    width: 1.95rem;
    height: 1.95rem;
    font-size: 1rem;
    line-height: 1;
    display: inline-grid;
    place-items: center;
}

.product-title {
    margin: 0;
    font-size: 0.96rem;
    color: var(--brand-dark);
    line-height: 1.4;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.product-title a:hover {
    color: var(--brand-gold-deep);
}

.product-image {
    height: 220px;
    border-radius: 0;
    background: linear-gradient(140deg, var(--swatch, #eff4ff), #ffffff 64%);
    border: none;
    display: flex;
    place-items: center;
    overflow: hidden;
    color: #17253c;
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: 0.04em;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-image-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    color: #f6b600;
    font-size: 0.88rem;
}

.rating-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: #5f697a;
}

.product-meta,
.product-price-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.72rem;
    border-radius: 0.75rem;
    background: linear-gradient(180deg, #f8fafd 0%, #f2f6fb 100%);
    border: 1px solid #e8edf5;
}

.price-stack,
.product-price-main {
    display: grid;
    gap: 0.1rem;
}

.price {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.01em;
}

.product-old-price {
    font-size: 0.78rem;
    color: #8b97ab;
    text-decoration: line-through;
    font-weight: 500;
}

.product-discount {
    font-size: 0.72rem;
    font-weight: 800;
    color: #0f7a52;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 999px;
    padding: 0.28rem 0.55rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-category-filter {
    min-width: 220px;
    border: 1px solid var(--border);
    border-radius: 0.6rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--brand-dark);
    background: #fff;
    box-shadow: 0 6px 16px rgba(15, 23, 41, 0.06);
}

.add-btn {
    border: 1px solid var(--brand-gold-deep);
    background: linear-gradient(145deg, var(--brand-gold-soft), var(--brand-gold));
    color: var(--brand-dark);
    padding: 0.62rem 0.75rem;
    border-radius: 0.7rem;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.01em;
    width: 100%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 8px 18px rgba(229, 169, 6, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.add-btn:hover {
    border-color: #c98f05;
    background: linear-gradient(145deg, #f6cf63, #e5a906);
    color: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(229, 169, 6, 0.28);
}

.add-btn svg,
.view-btn svg {
    flex-shrink: 0;
}

.about-section {
    padding: 3.5rem 0 3.25rem;
    background:
        radial-gradient(circle at 0% 0%, rgba(229, 169, 6, 0.1) 0%, transparent 42%),
        radial-gradient(circle at 100% 100%, rgba(20, 31, 56, 0.08) 0%, transparent 38%),
        linear-gradient(180deg, #f8fafd 0%, #f3f6fb 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 23, 41, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 41, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 90%);
    pointer-events: none;
}

.about-section-head {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2.25rem;
    display: grid;
    gap: 0.45rem;
    justify-items: center;
}

.about-section-head h2 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.15;
    color: var(--brand-dark);
}

.about-section-head p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.about-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.75rem;
}

.about-visual {
    position: relative;
}

.about-visual-frame {
    position: relative;
    border-radius: 1.15rem;
    overflow: hidden;
    aspect-ratio: 4 / 4.2;
    box-shadow: 0 22px 48px rgba(15, 23, 41, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.about-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-visual-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 41, 0.35) 100%);
    pointer-events: none;
}

.about-float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.85rem;
    padding: 0.75rem 0.9rem;
    box-shadow: 0 12px 28px rgba(15, 23, 41, 0.12);
    z-index: 2;
}

.about-float-rating {
    left: -0.75rem;
    bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.about-float-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.65rem;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, #fff4d6, #ffe8a8);
    color: #c98f05;
    font-size: 1rem;
}

.about-float-rating strong,
.about-float-shoppers strong {
    display: block;
    font-size: 1rem;
    color: var(--brand-dark);
    line-height: 1.2;
}

.about-float-rating span,
.about-float-shoppers span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.about-float-shoppers {
    right: -0.5rem;
    top: 1.25rem;
    text-align: center;
    background: linear-gradient(145deg, #141f38, #0f1729);
    border-color: rgba(255, 255, 255, 0.1);
}

.about-float-shoppers strong {
    color: var(--brand-gold-soft);
    font-size: 1.35rem;
}

.about-float-shoppers span {
    color: #b8c4d6;
}

.about-info {
    position: relative;
}

.about-info-card {
    position: relative;
    background: linear-gradient(165deg, #ffffff 0%, #fafbfd 100%);
    border: 1px solid var(--border);
    border-radius: 1.15rem;
    padding: 1.5rem 1.45rem 1.35rem;
    box-shadow: 0 16px 40px rgba(15, 23, 41, 0.08);
    overflow: hidden;
}

.about-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-soft), transparent);
}

.about-info-top {
    margin-bottom: 1.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 23, 41, 0.06);
}

.about-info-label {
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a6200;
    background: rgba(229, 169, 6, 0.1);
    border: 1px solid rgba(229, 169, 6, 0.22);
    border-radius: 999px;
    padding: 0.28rem 0.62rem;
    margin-bottom: 0.55rem;
}

.about-info h3 {
    margin: 0 0 0.55rem;
    font-size: clamp(1.25rem, 2.4vw, 1.65rem);
    color: var(--brand-dark);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-info h3 span {
    color: var(--brand-gold-deep);
}

.about-info-lead {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.62;
    max-width: 54ch;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
}

.about-feature-card {
    position: relative;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem 0.85rem 0.75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.85rem;
    box-shadow: 0 4px 14px rgba(15, 23, 41, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    overflow: hidden;
}

.about-feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--feature-accent, var(--brand-gold));
    opacity: 0.85;
}

.about-feature-card:hover {
    transform: translateX(4px);
    border-color: rgba(229, 169, 6, 0.25);
    box-shadow: 0 10px 22px rgba(15, 23, 41, 0.08);
    background: linear-gradient(90deg, rgba(255, 249, 232, 0.35), #fff 38%);
}

.about-feature-secure { --feature-accent: #e5a906; }
.about-feature-delivery { --feature-accent: #16a8cf; }
.about-feature-support { --feature-accent: #3fbf6b; }
.about-feature-returns { --feature-accent: #7c6cf0; }

.about-feature-step {
    font-size: 0.68rem;
    font-weight: 800;
    color: rgba(15, 23, 41, 0.28);
    letter-spacing: 0.04em;
    min-width: 1.35rem;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.7rem;
    display: inline-grid;
    place-items: center;
    background: var(--feature-icon-bg, linear-gradient(135deg, rgba(229, 169, 6, 0.16), rgba(229, 169, 6, 0.06)));
    color: var(--feature-icon-color, var(--brand-gold-deep));
    border: 1px solid var(--feature-icon-border, rgba(229, 169, 6, 0.22));
}

.about-feature-secure .about-feature-icon {
    --feature-icon-bg: linear-gradient(135deg, #fff4d6, #ffe8a8);
    --feature-icon-color: #a87400;
    --feature-icon-border: rgba(229, 169, 6, 0.3);
}

.about-feature-delivery .about-feature-icon {
    --feature-icon-bg: linear-gradient(135deg, #e8f8fd, #c9eef9);
    --feature-icon-color: #0e829e;
    --feature-icon-border: rgba(22, 168, 207, 0.28);
}

.about-feature-support .about-feature-icon {
    --feature-icon-bg: linear-gradient(135deg, #ebfaef, #c8f0d4);
    --feature-icon-color: #2f964f;
    --feature-icon-border: rgba(63, 191, 107, 0.28);
}

.about-feature-returns .about-feature-icon {
    --feature-icon-bg: linear-gradient(135deg, #f0edff, #ddd6fe);
    --feature-icon-color: #6d4fd4;
    --feature-icon-border: rgba(124, 108, 240, 0.28);
}

.about-feature-body h4 {
    margin: 0 0 0.18rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.25;
}

.about-feature-body p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.about-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
    padding: 0.75rem 0.85rem;
    background: linear-gradient(135deg, rgba(20, 31, 56, 0.04), rgba(229, 169, 6, 0.06));
    border: 1px dashed rgba(229, 169, 6, 0.28);
    border-radius: 0.75rem;
}

.about-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand-dark);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.32rem 0.62rem;
    box-shadow: 0 2px 8px rgba(15, 23, 41, 0.04);
}

.about-trust-pill::before {
    content: "";
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: var(--brand-gold);
}

.about-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding-top: 0.15rem;
}

.about-shop-btn {
    text-align: center;
    box-shadow: 0 8px 20px rgba(229, 169, 6, 0.25);
}

.about-outline-btn {
    color: var(--brand-dark);
    border-color: var(--border);
    background: #fff;
    text-align: center;
}

.about-outline-btn:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.about-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 1.15rem 1.25rem;
    background: linear-gradient(135deg, #141f38 0%, #0f1729 100%);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(15, 23, 41, 0.18);
}

.about-metric {
    text-align: center;
    padding: 0.35rem 0.5rem;
    position: relative;
}

.about-metric:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.about-metric strong {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--brand-gold-soft);
    line-height: 1.15;
}

.about-metric span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.76rem;
    color: #9aabc0;
    line-height: 1.3;
}

.coupon-newsletter {
    padding: 3rem 0 3.25rem;
    background:
        radial-gradient(circle at 12% 50%, rgba(229, 169, 6, 0.1) 0%, transparent 34%),
        radial-gradient(circle at 88% 50%, rgba(20, 31, 56, 0.08) 0%, transparent 36%),
        linear-gradient(180deg, #f6f8fc 0%, #eef2f8 100%);
}

.coupon-banner {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.25fr);
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(20, 31, 56, 0.1);
    box-shadow: 0 22px 48px rgba(15, 23, 41, 0.12);
}

.coupon-banner-offer {
    position: relative;
    padding: 2.1rem 1.75rem;
    display: grid;
    gap: 0.55rem;
    justify-items: center;
    align-content: center;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at 18% 18%, rgba(229, 169, 6, 0.22) 0%, transparent 42%),
        linear-gradient(155deg, var(--brand-navy) 0%, #0a1020 100%);
    border-right: 1px dashed rgba(255, 255, 255, 0.18);
}

.coupon-banner-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-gold-soft);
    background: rgba(229, 169, 6, 0.16);
    border: 1px solid rgba(229, 169, 6, 0.35);
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
}

.coupon-banner-discount {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    line-height: 1;
}

.coupon-banner-percent {
    font-size: clamp(2.8rem, 5.5vw, 3.6rem);
    font-weight: 800;
    color: var(--brand-gold);
    letter-spacing: -0.03em;
}

.coupon-banner-off-label {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
}

.coupon-banner-note {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
}

.coupon-banner-code {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
    padding: 0.42rem 0.85rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(229, 169, 6, 0.45);
}

.coupon-banner-code span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.coupon-banner-code strong {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--brand-gold-soft);
}

.coupon-banner-signup {
    padding: 2rem 2.15rem;
    display: grid;
    gap: 0.5rem;
    align-content: center;
    background: #fff;
}

.coupon-banner-signup .section-eyebrow {
    width: fit-content;
}

.coupon-banner-signup h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2.4vw, 1.95rem);
    line-height: 1.2;
    color: var(--brand-dark);
    font-weight: 700;
}

.coupon-banner-signup > p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 48ch;
}

.coupon-subscribe-form {
    margin-top: 0.55rem;
    display: flex;
    align-items: stretch;
    gap: 0.55rem;
    width: 100%;
}

.coupon-input-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
}

.coupon-input-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8b95a8;
    pointer-events: none;
}

.coupon-subscribe-form input {
    width: 100%;
    height: 100%;
    min-height: 3rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.85rem 0.95rem 0.85rem 2.55rem;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text-main);
    background: #f9fbff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.coupon-subscribe-form input::placeholder {
    color: #9aa3b2;
}

.coupon-subscribe-form input:focus {
    outline: none;
    border-color: rgba(229, 169, 6, 0.55);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(229, 169, 6, 0.14);
}

.coupon-subscribe-btn {
    border: none;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-deep) 100%);
    color: #fff;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: inherit;
    padding: 0 1.35rem;
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(201, 143, 5, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coupon-subscribe-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(201, 143, 5, 0.34);
}

.coupon-subscribe-btn:active {
    transform: translateY(0);
}

.coupon-disclaimer {
    margin: 0.1rem 0 0;
    font-size: 0.78rem;
    color: #8b95a8;
}

.coupon-feedback {
    min-height: 1.1rem;
    margin: 0;
    font-size: 0.84rem;
    color: #667083;
}

.coupon-feedback.is-success {
    color: #1e8d54;
}

.coupon-feedback.is-error {
    color: #ca3d39;
}

.cart-drawer {
    position: fixed;
    right: 0;
    top: 0;
    width: min(500px, 96vw);
    height: 100vh;
    background: var(--surface);
    box-shadow: -12px 0 38px rgba(0, 0, 0, 0.16);
    z-index: 220;
    transform: translateX(105%);
    transition: transform 0.25s ease;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

    .cart-drawer.open {
        transform: translateX(0);
    }

body.cart-open {
    overflow: hidden;
}

.cart-header,
.cart-footer {
    padding: .75rem 1.05rem;
    border-bottom: 1px solid var(--border);
}

.cart-footer {
    border-top: 1px solid var(--border);
    border-bottom: 0;
    display: grid;
    gap: 0.95rem;
    background: #fff;
}

.icon-btn {
    border: none;
    background: transparent;
    border-radius: 50%;
    /* width: 2rem;
  height: 2rem; */
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 0.7;
    color: #121827;
}

.cart-close-btn {
    display: inline-grid;
    place-items: center;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: auto;
}

    .cart-header h3 {
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 0;
    }

.cart-items {
    padding: 0 1.05rem;
    overflow-y: auto;
    /* display: grid; */
    gap: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eceef2;
}

.delete-btn {
    width: 2.3rem;
    height: 2.3rem;
    border: none;
    border-radius: 0.35rem;
    background: transparent;
    color: #1f2a3d;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}

    .delete-btn svg {
        width: 1rem;
        height: 1rem;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.85;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.cart-item-media {
    width: 92px;
    height: 92px;
    border-radius: 0.6rem;
    display: grid;
    place-items: center;
    color: #8a90a0;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.cart-item-content strong {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.2;
}

.cart-item-rating {
    font-size: 0.95rem;
    letter-spacing: 0.06rem;
    margin-top: 0.45rem;
}

.stars-filled {
    color: #ffab00;
}

.stars-empty {
    color: #c6ccd7;
}

.cart-item-price {
    margin-top: 0.45rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.new-price {
    color: #1d8d3a;
    font-size: 1.1rem;
    font-weight: 500;
}

.old-price {
    color: #5f6777;
    font-size: 1rem;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.cart-item-actions {
    width: 126px;
    height: 42px;
    background: #f4f5f7;
    border-radius: 0.3rem;
    display: grid;
    grid-template-columns: 1fr 1fr auto 1fr;
    align-items: center;
    justify-items: center;
}

.cart-item-qty {
    font-size: 1.15rem;
    color: #1a2231;
}

.qty-minus-btn,
.qty-plus-btn {
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 0.35rem;
    background: transparent;
    color: #1f2a3d;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.shipping-hint {
    font-size: 1rem;
    color: #202838;
    line-height: 1.35;
}

.shipping-progress-wrap {
    position: relative;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}

.shipping-progress-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #eceef1;
    overflow: hidden;
}

.shipping-progress-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: repeating-linear-gradient( -55deg, #f5a000 0px, #f5a000 8px, #ffbe4b 8px, #ffbe4b 16px );
}

.shipping-progress-icon {
    position: absolute;
    left: 42%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: #f59f00;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.92rem;
    border: 2px solid #fff;
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cart-subtotal-row p,
    .cart-subtotal-row strong {
        font-size: 2.05rem;
    }

.cart-tax-text {
    color: #4f5768;
    font-size: 1rem;
}

    .cart-tax-text a {
        color: inherit;
        text-decoration-color: currentColor;
    }

.cart-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    padding-top: 0.5rem;
}

.checkout-btn,
.view-cart-btn {
    height: 54px;
    border-radius: 0.42rem;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
}

.checkout-btn {
    border: 1px solid #101a2a;
    background: #101a2a;
    color: #fff;
}

.view-cart-btn {
    border: 1px solid #1f2636;
    background: #fff;
    color: #1a2233;
}

.cart-empty {
    padding: 1.4rem 0;
    color: #697184;
    font-size: 1rem;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 14, 16, 0.45);
    z-index: 90;
}

.site-footer {
    background: linear-gradient(180deg, #121c2e 0%, #0f1726 100%);
    color: #b8c4d6;
    position: relative;
}

.footer-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, #f5be32 0%, #e5a906 50%, #c98f05 100%);
}

.footer-main {
    padding: 3.25rem 0 2.25rem;
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr 1.05fr;
    gap: 2rem;
}

.footer-brand-col .footer-logo {
    height: 38px;
    width: auto;
    filter: brightness(1.05);
}

.footer-tagline {
    margin: 0.85rem 0 1.1rem;
    max-width: 26rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #9aabc0;
}

.footer-contact-compact {
    margin-bottom: 0.35rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #f3f6fb;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.55rem;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #e5a906, transparent);
}

.footer-links,
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-logo-link {
    display: inline-flex;
}

.footer-links {
    display: grid;
    gap: 0.5rem;
}

    .footer-links a {
        text-decoration: none;
        color: #9aabc0;
        font-size: 0.88rem;
        transition: color 0.18s ease, padding-left 0.18s ease;
    }

        .footer-links a:hover {
            color: #f5be32;
            padding-left: 0.2rem;
        }

.footer-contact-list {
    display: grid;
    gap: 0.65rem;
}

    .footer-contact-list li {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        color: #9aabc0;
        font-size: 0.88rem;
        line-height: 1.45;
    }

        .footer-contact-list li a {
            color: inherit;
            text-decoration: none;
            transition: color 0.18s ease;
        }

        .footer-contact-list li a:hover {
            color: #f5be32;
        }

.footer-icon {
    color: #e5a906;
    display: inline-flex;
    flex-shrink: 0;
}

.footer-social {
    margin-top: 1rem;
    display: grid;
    gap: 0.55rem;
}

    .footer-social p {
        margin: 0;
        color: #c5d0df;
        font-size: 0.82rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social-btn {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    color: #d8e2ef;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-social-btn:hover {
    background: rgba(229, 169, 6, 0.18);
    border-color: rgba(229, 169, 6, 0.45);
    color: #f5be32;
    transform: translateY(-1px);
}

.footer-app-text {
    margin: 0 0 0.85rem;
    color: #9aabc0;
    font-size: 0.86rem;
    line-height: 1.5;
}

.app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.app-badges img {
    height: 40px;
    width: auto;
    border-radius: 0rem;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.app-badges a:hover img {
    transform: translateY(-2px);
    opacity: 0.92;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 1.2rem;
    padding: 1.15rem 0 1.35rem;
}

.footer-copy {
    margin: 0;
    font-size: 0.82rem;
    color: #8a9bb2;
}

.footer-payments {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

    .footer-payments img {
        height: 28px;
        width: auto;
        padding: 0.25rem 0.45rem;
        border-radius: 0.35rem;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

.footer-scroll-top {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.65rem;
    text-decoration: none;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, #f5be32 0%, #e5a906 100%);
    color: #1a1404;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.18s ease;
    box-shadow: 0 6px 16px rgba(229, 169, 6, 0.25);
}

    .footer-scroll-top.is-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .footer-scroll-top:hover {
        box-shadow: 0 8px 20px rgba(229, 169, 6, 0.35);
    }

.offer-popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(16, 19, 29, 0.6);
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.offer-popup {
    width: min(980px, 100%);
    background: #fff;
    border-radius: 0.7rem;
    position: relative;
    overflow: hidden;
}

.offer-close-btn {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 0.45rem;
    background: #151922;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.offer-popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
}

.offer-left {
    padding: 4rem 3.5rem 2rem;
}

.offer-top-text {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.offer-left h2 {
    margin-top: 0.4rem;
    font-size: 2.55rem;
    line-height: 1.05;
}

.offer-code {
    margin-top: 1.35rem;
    font-size: 4.4rem;
    line-height: 1;
    color: #f0a400;
    letter-spacing: 0.03em;
}

.offer-subtext {
    margin-top: 1rem;
    color: #6f7480;
    font-size: 1.7rem;
}

.offer-timer {
    margin-top: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

    .offer-timer span {
        width: 3rem;
        height: 3rem;
        background: #141922;
        color: #fff;
        border-radius: 0.45rem;
        display: grid;
        place-items: center;
        font-size: 1.65rem;
        font-weight: 600;
    }

    .offer-timer .offer-colon {
        width: auto;
        height: auto;
        background: transparent;
        color: #1a1f2a;
    }

.offer-expire-text {
    margin-top: 1rem;
    color: #6f7480;
    font-size: 1.7rem;
}

.offer-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .hero-grid,
    .about-main {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 28rem;
        margin: 0 auto;
        width: 100%;
    }

    .about-float-rating {
        left: 0.5rem;
    }

    .about-float-shoppers {
        right: 0.5rem;
    }

    .hero-shell {
        grid-template-columns: 1fr;
    }

    .hero-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .about-metric:nth-child(2)::after {
        display: none;
    }

    .coupon-banner {
        grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
    }

    .coupon-banner-signup {
        padding: 1.65rem 1.5rem;
    }

    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .categories-section-head {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .container {
        width: 94%;
    }

    .top-header-wrap {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        padding: 0.55rem 0 0.65rem;
        justify-items: stretch;
    }

    .top-strip-left {
        justify-content: center;
        width: 100%;
    }

    .top-strip-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.65rem;
    }

    .top-social-links {
        padding: 0.32rem 0.55rem;
        gap: 0.5rem;
    }

    .top-social-label {
        font-size: 0.64rem;
    }

    .top-social-link,
    .top-social-links > a {
        width: 2.15rem;
        height: 2.15rem;
    }

        .top-social-link svg,
        .top-social-links > a svg {
            width: 1.05rem;
            height: 1.05rem;
        }

    .top-quick-menu {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-offer-marquee {
        mask-image: none;
    }

    .top-offer-text {
        text-align: center;
        animation: none;
        white-space: normal;
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .logo-tagline {
        display: none;
    }

    .header-account-btn .header-tool-label {
        display: none;
    }

    .header-bottom-actions {
        width: 100%;
        justify-content: space-between;
        padding: 0.55rem 0 0.7rem;
    }

    .wallet-badge {
        font-size: 0.7rem !important;
        padding: 0.38rem 0.65rem;
    }

    .header-top-row {
        min-height: auto;
        gap: 0.6rem;
        padding: 0.7rem 0;
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: inline-flex;
        order: 1;
    }

    .coupon-newsletter {
        padding: 2.5rem 0;
    }

    .coupon-banner {
        grid-template-columns: 1fr;
    }

    .coupon-banner-offer {
        padding: 1.65rem 1.25rem;
        border-right: none;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
    }

    .coupon-banner-signup {
        text-align: center;
        justify-items: center;
        padding: 1.5rem 1.25rem 1.65rem;
    }

    .coupon-banner-signup h2 {
        font-size: 1.45rem;
    }

    .coupon-banner-signup > p {
        font-size: 0.9rem;
    }

    .coupon-subscribe-form {
        width: 100%;
        max-width: 28rem;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .logo-link {
        order: 2;
    }

    .logo {
        height: 40px;
    }

    .header-search-wrap {
        order: 4;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        border: 1px solid #d8dde6;
        border-radius: 1rem;
        background: #e7ebf0;
        overflow: hidden;
        margin-top: 0.35rem;
    }

    .header-search-input {
        padding: 0.82rem 1.05rem;
        font-size: 0.95rem;
        font-weight: 500;
        color: #2a2f3b;
        background: transparent;
    }

        .header-search-input::placeholder {
            color: #7b808a;
            opacity: 1;
        }

    .header-search-btn {
        width: 52px;
        height: 50px;
        background: transparent;
        color: #1e2433;
    }

    .header-category-select {
        display: none;
    }

    .mobile-search-toggle {
        display: none;
    }

    .header-right-tools {
        margin-left: auto;
        order: 3;
    }

    .header-call {
        display: none;
    }

    .header-bottom-wrap {
        min-height: 0;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0rem 0;
        /* display: none; */
    }

    .header-menu {
        width: 100%;
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 0.35rem);
        z-index: 220;
        padding: 0 0.65rem;
    }

        .header-menu.mobile-open {
            display: block;
        }

    .shop-category-btn {
        font-size: 0.8rem;
        padding: 0.58rem 0.7rem;
    }

    .header-menu-list {
        gap: 0.25rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 0.45rem;
        border-radius: 0.72rem;
        display: grid;
        grid-template-columns: 1fr;
        height: auto !important;
        max-height: calc(100dvh - 145px);
        min-height: 0;
        background: #ffffff;
    }

    .menu-link {
        font-size: 0.82rem;
        padding: 0.58rem 0.7rem;
        width: 100%;
        justify-content: space-between;
        color: #2b3040;
    }

        .menu-link:hover,
        .menu-item:hover > .menu-link,
        .menu-item:focus-within > .menu-link {
            background: #f3f6fb;
            color: #0f1829;
        }

        .menu-link.active {
            background: #10192a;
            color: #fff;
            box-shadow: none;
        }

    .menu-arrow {
        color: #7a8292;
    }

    .menu-badge {
        display: inline-flex;
    }

    .menu-cta-btn {
        display: inline-flex;
    }

    .dropdown-panel,
    .mega-menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 0.3rem;
        box-shadow: none;
        border: 1px solid #e5e9f1;
        border-radius: 0.6rem;
        transform: none;
        transition: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .menu-item.open > .dropdown-panel,
    .menu-item.open > .mega-menu {
        display: block;
    }

    .mega-menu {
        grid-template-columns: 1fr;
        padding: 0.7rem;
        gap: 0.65rem;
    }

    .hero {
        padding: 0.85rem 0 0.75rem;
    }

    .hero-side {
        grid-template-columns: 1fr;
    }

    .selected-slide {
        min-height: 340px;
        padding: 1.5rem 1.25rem 3.2rem;
    }

    .selected-slide-content {
        max-width: 100%;
        padding: 1rem 1.05rem;
    }

    .hero-slide-desc {
        font-size: 0.86rem;
    }

    .hero-carousel-btn {
        width: 2rem;
        height: 2rem;
    }

    .hero-carousel-prev {
        left: 0.55rem;
    }

    .hero-carousel-next {
        right: 0.55rem;
    }

    .filters {
        padding: 1rem 0;
    }

    .filter-wrap {
        flex-direction: column;
    }

    .products-section {
        padding: 1.6rem 0 2.4rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .product-card-body {
        padding: 0.82rem 0.85rem 0.9rem;
    }

    .about-section {
        padding: 2.25rem 0 2rem;
    }

    .about-features-grid {
        gap: 0.55rem;
    }

    .about-actions {
        grid-template-columns: 1fr;
    }

    .about-metrics {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
    }

    .about-metric::after {
        display: none;
    }

    .cart-drawer {
        width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        border-radius: 0;
    }

    .cart-item {
        grid-template-columns: 78px 1fr auto;
        gap: 0.7rem;
    }

    .cart-item-media {
        width: 78px;
        height: 78px;
    }

    .cart-item-content strong {
        font-size: 0.98rem;
    }

    .cart-item-actions {
        width: 112px;
    }

    .shipping-hint,
    .cart-tax-text {
        font-size: 0.92rem;
    }

    .cart-subtotal-row p,
    .cart-subtotal-row strong {
        font-size: 1.6rem;
    }

    .offer-popup-content {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .offer-left {
        padding: 3rem 1.2rem 1.4rem;
    }

        .offer-left h2 {
            font-size: 1.65rem;
        }

    .offer-code {
        font-size: 2.45rem;
    }

    .offer-subtext,
    .offer-expire-text {
        font-size: 1rem;
    }

    .offer-timer span {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 1.15rem;
    }

    .offer-right {
        max-height: 240px;
    }
}

@media (max-width: 680px) {
    .coupon-newsletter {
        padding: 2rem 0;
    }

    .coupon-subscribe-form {
        flex-direction: column;
    }

    .coupon-subscribe-btn {
        width: 100%;
        min-height: 2.75rem;
        font-size: 0.86rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding-top: 2rem;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .top-offer-text {
        font-size: 0.7rem;
        white-space: normal;
        text-align: center;
    }

    .top-quick-menu a {
        font-size: 0.68rem;
    }

    .logo {
        height: 36px;
    }

    .header-category-select {
        min-width: 100px;
        font-size: 0.75rem;
    }

    .header-search-input {
        font-size: 0.95rem;
    }

    .header-search-btn {
        width: 40px;
        height: 40px;
    }

    .shop-category-btn {
        display: none;
    }

    .hero-text {
        font-size: 0.92rem;
    }

    .selected-slide {
        min-height: 300px;
        padding: 1.15rem 1rem 3rem;
    }

    .selected-slide-image {
        opacity: 0.55;
    }

    .selected-slide-content {
        max-width: 100%;
        padding: 0.85rem 0.9rem;
    }

    .hero-slide-actions {
        gap: 0.5rem;
    }

    .hero-slide-actions .btn-primary,
    .hero-slide-actions .btn-hero-outline {
        padding: 0.52rem 0.85rem;
        font-size: 0.8rem;
    }

    .section-head p {
        font-size: 0.86rem;
    }

    .category-card-body {
        padding: 0.82rem 0.85rem 0.9rem;
    }

    .category-card-info h3,
    .category-card-body h3 {
        font-size: 0.92rem;
    }

    .categories-view-all {
        width: 100%;
        justify-content: center;
    }

    .cart-count {
        min-width: 0.85rem;
        height: 0.85rem;
        font-size: 0.58rem;
    }

    .cart-header h3 {
        font-size: 1.45rem;
    }

    .checkout-btn,
    .view-cart-btn {
        height: 50px;
        font-size: 0.97rem;
    }
}

@media (max-width: 420px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .header-icon-btn {
        width: 1.8rem;
        height: 1.8rem;
    }
}

/* features section */

.features-section {
    padding: 2.25rem 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.15rem 1.05rem 1.2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0.95rem;
    box-shadow: 0 8px 24px rgba(15, 23, 41, 0.05);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--feature-accent, var(--brand-gold)), transparent);
    opacity: 0.95;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 169, 6, 0.28);
    box-shadow: 0 16px 34px rgba(15, 23, 41, 0.1);
}

.feature-card-gold {
    --feature-accent: #e5a906;
    --feature-icon-bg: linear-gradient(145deg, #f5be32 0%, #e5a906 100%);
    --feature-icon-border: rgba(201, 143, 5, 0.35);
    --feature-icon-shadow: rgba(229, 169, 6, 0.35);
}

.feature-card-blue {
    --feature-accent: #16a8cf;
    --feature-icon-bg: linear-gradient(145deg, #22c9ee 0%, #16a8cf 100%);
    --feature-icon-border: rgba(14, 130, 158, 0.35);
    --feature-icon-shadow: rgba(22, 168, 207, 0.35);
}

.feature-card-green {
    --feature-accent: #3fbf6b;
    --feature-icon-bg: linear-gradient(145deg, #5fd47f 0%, #3fbf6b 100%);
    --feature-icon-border: rgba(47, 150, 79, 0.35);
    --feature-icon-shadow: rgba(63, 191, 107, 0.35);
}

.feature-card-navy {
    --feature-accent: #4f6b9a;
    --feature-icon-bg: linear-gradient(145deg, #5a7aad 0%, #141f38 100%);
    --feature-icon-border: rgba(20, 31, 56, 0.35);
    --feature-icon-shadow: rgba(20, 31, 56, 0.35);
}

.feature-card-icon {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.8rem;
    display: inline-grid;
    place-items: center;
    padding: 0.72rem;
    background: var(--feature-icon-bg);
    border: 1px solid var(--feature-icon-border);
    box-shadow: 0 8px 18px var(--feature-icon-shadow);
    transition: transform 0.22s ease;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.06);
}

.feature-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.feature-card-body {
    min-width: 0;
    display: grid;
    gap: 0.28rem;
}

.feature-card-body h3 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.25;
}

.feature-card-body p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .features-section {
        padding-bottom: 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-card {
        padding: 1rem 0.95rem;
    }
}

/* login & signup page css */

.login-page-main,
.signup-page-main {
    padding: 2.5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.login-page-enhanced,
.signup-page-main {
    background:
        radial-gradient(circle at 0% 0%, rgba(229, 169, 6, 0.14), transparent 32%),
        radial-gradient(circle at 100% 10%, rgba(59, 99, 214, 0.1), transparent 28%),
        linear-gradient(180deg, #f0f4fb 0%, #e9eef8 100%);
}

    .login-page-enhanced::before,
    .signup-page-main::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(15, 23, 41, 0.05) 1px, transparent 1px);
        background-size: 22px 22px;
        opacity: 0.35;
        pointer-events: none;
    }

.auth-section {
    padding: 0.5rem 0 1rem;
    position: relative;
    z-index: 1;
}

.password-box {
    display: flex;
    gap: 10px;
}

    .password-box div {
        width: 100%;
    }

.auth-wrap {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(340px, 1.05fr);
    gap: 0;
    align-items: stretch;
    /* max-width: 960px; */
    margin: 0 auto;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: #ffffff;
    box-shadow:
        0 30px 70px rgba(15, 23, 41, 0.14),
        0 0 0 1px rgba(15, 23, 41, 0.04);
}

.auth-promo-card,
.auth-form-card {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.auth-promo-card {
    padding: 2.15rem 2rem 1.65rem;
    background:
        radial-gradient(circle at 100% 0%, rgba(229, 169, 6, 0.2) 0%, transparent 42%),
        radial-gradient(circle at 0% 100%, rgba(59, 99, 214, 0.14) 0%, transparent 38%),
        linear-gradient(160deg, #16243f 0%, #101a30 52%, #0a1120 100%);
    color: #eef3ff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.auth-promo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-gold) 18%, var(--brand-gold-soft) 50%, var(--brand-gold) 82%, transparent);
    pointer-events: none;
}

.auth-promo-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
    pointer-events: none;
}

.auth-promo-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.55rem;
}

.auth-promo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.auth-promo-logo {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.85rem;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-dark);
    background: linear-gradient(145deg, var(--brand-gold-soft), var(--brand-gold));
    box-shadow: 0 10px 22px rgba(229, 169, 6, 0.28);
}

.auth-promo-brand-text {
    display: grid;
    gap: 0.05rem;
}

.auth-promo-brand-text strong {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.auth-promo-brand-text small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.auth-kicker {
    display: inline-flex;
    width: fit-content;
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-gold-soft);
    background: rgba(229, 169, 6, 0.14);
    border: 1px solid rgba(229, 169, 6, 0.32);
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
}

.auth-promo-card h1 {
    margin: 0;
    font-size: clamp(1.55rem, 2.4vw, 2.05rem);
    line-height: 1.18;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.auth-promo-card > .auth-promo-content > p {
    margin: 0;
    color: rgba(226, 234, 248, 0.82);
    line-height: 1.65;
    font-size: 0.92rem;
    /* max-width: 34ch; */
}

.auth-feature-list {
    margin: 0.45rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.auth-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.72rem 0.8rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.auth-feature-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(229, 169, 6, 0.22);
    transform: translateX(2px);
}

.auth-feature-icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.65rem;
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--brand-gold-soft);
    background: rgba(229, 169, 6, 0.14);
    border: 1px solid rgba(229, 169, 6, 0.24);
}

.auth-feature-copy {
    display: grid;
    gap: 0.08rem;
    min-width: 0;
}

.auth-feature-copy strong {
    font-size: 0.86rem;
    font-weight: 600;
    color: #f7f9ff;
    line-height: 1.25;
}

.auth-feature-copy small {
    font-size: 0.74rem;
    color: rgba(210, 221, 239, 0.72);
    line-height: 1.3;
}

.auth-promo-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    margin-top: 1.35rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-promo-stats div {
    text-align: center;
    padding: 0.72rem 0.4rem;
    border-radius: 0.85rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.auth-promo-stats strong {
    display: block;
    font-size: 1.08rem;
    font-weight: 800;
    background: linear-gradient(180deg, #ffe9a8, var(--brand-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.auth-promo-stats span {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.67rem;
    font-weight: 600;
    color: rgba(168, 184, 216, 0.92);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.auth-form-card {
    padding: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e8edf5;
}

.auth-form-top {
    padding: 2rem 2rem 0;
    background: linear-gradient(180deg, #fafbfd 0%, #ffffff 100%);
    border-bottom: 1px solid #eef2f8;
}

    .auth-form-card h2 {
        margin: 0;
        color: #101f33;
        font-size: 1.6rem;
        letter-spacing: 0.01em;
    }

.auth-form-subtitle {
    margin: 0.35rem 0 0;
    color: #64748d;
    font-size: 0.9rem;
}

.auth-form {
    display: grid;
    gap: 1rem;
    padding: 1.5rem 2rem 2rem;
    flex: 1;
}

.auth-field {
    display: grid;
    gap: 0.4rem;
}

    .auth-field label {
        font-size: 0.82rem;
        font-weight: 600;
        color: #334155;
        letter-spacing: 0.01em;
    }

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8b97ab;
    display: inline-flex;
    pointer-events: none;
    z-index: 1;
}

    .auth-form label {
        font-size: 0.82rem;
        font-weight: 600;
        color: #334155;
    }

    .auth-form input[type="email"],
    .auth-form input[type="text"],
    .auth-form input[type="number"],
    .auth-form input[type="tel"],
    .auth-form input[type="password"],
    .auth-form select,
    .auth-form .auth-input,
    .auth-form .form-control {
        width: 100%;
        height: 50px;
        border: 1.5px solid #e2e8f2;
        border-radius: 0.8rem;
        padding: 0 0.95rem 0 2.65rem;
        background: #f8fafd;
        color: #122136;
        font-size: 0.92rem;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .auth-form textarea {
        width: 100%;
        border: 1px solid #d7dfed;
        background: #f6f8fd;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    }

    .auth-form input::placeholder {
        color: #95a2b8;
    }

    .auth-form input:focus,
    .auth-form .form-control:focus {
        outline: none;
        border-color: #d4a11f;
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(229, 169, 6, 0.12);
    }

.password-field input,
.password-field .auth-input,
.password-field .form-control {
    padding-right: 3.2rem;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    z-index: 2;
    border: 0;
    background: #e9eef7;
    color: #2d4058;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.18s ease;
}

    .password-toggle:hover {
        background: #dde6f4;
    }

    .password-toggle .eye-icon {
        display: inline-flex;
        line-height: 0;
    }

    .password-toggle .eye-close {
        display: none;
    }

    .password-toggle.is-password-visible .eye-open {
        display: none;
    }

    .password-toggle.is-password-visible .eye-close {
        display: inline-flex;
    }

.auth-meta-row {
    margin-top: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.remember-me {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: #5c6980;
}

    .remember-me input {
        accent-color: #d59f0a;
    }

.forgot-password {
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: #9f7400;
    transition: color 0.18s ease;
}

    .forgot-password:hover {
        color: #805d00;
        text-decoration: underline;
    }

.auth-form-actions {
    margin-top: 0.25rem;
    padding-top: 1.15rem;
    border-top: 1px dashed #e5eaf2;
    display: grid;
    gap: 0.85rem;
}

.auth-submit-btn {
    width: 100%;
    margin-top: 0;
    border: 0;
    height: 52px;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, #f5be32 0%, #e5a906 55%, #c98f05 100%);
    color: #1a1404;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(229, 169, 6, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

    .auth-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(229, 169, 6, 0.38);
        filter: brightness(1.03);
        color: #1a1404;
    }

.auth-feedback {
    display: block;
    min-height: 1.1rem;
    font-size: 0.8rem;
    color: #4f5e76;
}

.auth-feedback.is-error {
    color: #c0392b;
    background: #fff1f0;
    border: 1px solid #f5c2c0;
    border-radius: 0.7rem;
    padding: 0.65rem 0.8rem;
    font-weight: 600;
}

body.auth-login-loading {
    overflow: hidden;
}

.auth-login-loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    background: rgba(245, 248, 253, 0.94);
    backdrop-filter: blur(3px);
}

.auth-login-loader[hidden] {
    display: none !important;
}

.auth-login-loader-card {
    width: min(320px, calc(100% - 2rem));
    padding: 1.15rem 1rem 1rem;
    border-radius: 1rem;
    border: 1px solid #dde5f1;
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(16, 27, 45, 0.15);
    text-align: center;
}

.auth-login-loader-brand {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.auth-login-loader-text {
    margin: 0 0 0.75rem;
    font-size: 0.86rem;
    color: var(--text-muted);
}

.auth-submit-btn.is-loading {
    opacity: 0.82;
    pointer-events: none;
}

.auth-signup-text {
    margin: 0;
    text-align: center;
    font-size: 0.84rem;
    color: #5f6d84;
}

.auth-signup-link {
    margin-left: 0.25rem;
    color: #9f7400;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s ease;
}

    .auth-signup-link:hover {
        color: #7d5a00;
        text-decoration: underline;
    }

.auth-trust-badges {
    display: none;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.55rem;
}

.auth-trust-badges span {
    padding: 0.34rem 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(229, 169, 6, 0.22);
    background: rgba(229, 169, 6, 0.1);
    color: #f8e7b8;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.auth-form-header {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0;
}

.auth-form-icon {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.85rem;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(145deg, #fff4d4, #ffe39a);
    color: #9a6b00;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(229, 169, 6, 0.18);
}

.auth-form-header h2 {
    margin: 0;
}

.auth-form-header .auth-form-subtitle {
    margin: 0.35rem 0 0;
}

.auth-wrap-signup {
    grid-template-columns: 1fr;
    max-width: 1100px;
    border-top: 4px solid #e5a906;
}

.auth-form-card-full {
    width: 100%;
    max-width: 100%;
    border-left: none;
}

    .auth-form-card-full .auth-form-top {
        padding: 1.75rem 1.75rem 0;
    }

    .auth-form-card-full .auth-form {
        padding: 1.35rem 1.75rem 1.75rem;
    }

    .auth-form-card-full .content .row {
        --bs-gutter-x: 1rem;
    }

    .auth-form-card-full .form-group label {
        font-size: 0.84rem;
        font-weight: 600;
        color: #20304a;
        margin-bottom: 0.35rem;
    }

    .auth-form-card-full .form-control {
        min-height: 44px;
        border: 1px solid #d7dfed;
        border-radius: 0.65rem;
        background: #f8fafd;
        font-size: 0.9rem;
    }

        .auth-form-card-full .form-control:focus {
            border-color: #d4a11f;
            box-shadow: 0 0 0 4px rgba(229, 169, 6, 0.12);
            background: #fff;
        }

.signup-submit-btn {
    max-width: 360px;
    margin: 0 auto;
}

/* Signup — segmented step-card form pattern */
.signup-page-shell {
    width: 100%;
}

.signup-form-pattern {
    display: grid;
    gap: 1.35rem;
}

.signup-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.25rem 0.5rem 0.85rem;
    margin-bottom: 0.15rem;
}

.signup-progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    min-width: 72px;
}

.signup-progress-num {
    display: grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    border: 2px solid #d7dfed;
    background: #f4f7fb;
    color: #6b7a92;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.signup-progress-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #7a889c;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.signup-progress-item.is-active .signup-progress-num {
    border-color: #e5a906;
    background: linear-gradient(180deg, #f5be32 0%, #e3a400 100%);
    color: #1a2230;
    box-shadow: 0 4px 14px rgba(229, 169, 6, 0.28);
}

.signup-progress-item.is-active .signup-progress-label {
    color: #20304a;
}

.signup-progress-line {
    flex: 1;
    max-width: 80px;
    height: 2px;
    margin: 0 0.35rem;
    margin-bottom: 1.35rem;
    background: linear-gradient(90deg, #d7dfed, #e8edf5);
    border-radius: 2px;
}

.signup-form-body {
    display: grid;
    gap: 1.1rem;
}

.signup-step-card {
    border: 1px solid #e2e9f3;
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
    box-shadow: 0 6px 22px rgba(19, 34, 55, 0.05);
    overflow: hidden;
}

.signup-step-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid #edf1f7;
    background: linear-gradient(90deg, rgba(229, 169, 6, 0.07) 0%, rgba(255, 255, 255, 0) 55%);
}

.signup-step-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.72rem;
    background: linear-gradient(135deg, #1a2b45 0%, #243a5c 100%);
    color: #f5be32;
}

.signup-step-icon.is-security {
    background: linear-gradient(135deg, #0f3d2e 0%, #1a5c45 100%);
    color: #7ddea8;
}

.signup-step-head h3 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    color: #132237;
}

.signup-step-head p {
    margin: 0.2rem 0 0;
    font-size: 0.82rem;
    color: #6a7a90;
}

.signup-step-grid {
    padding: 1.15rem 1.25rem 1.25rem;
}

.signup-step-grid > .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 0.15rem;
}

.signup-field {
    margin-bottom: 1rem;
}

.signup-label {
    display: block;
    margin-bottom: 0.38rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2a3d57;
    letter-spacing: 0.01em;
}

.signup-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.signup-input-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: inline-flex;
    color: #8b97ab;
    pointer-events: none;
}

.signup-control-icon,
.signup-input-wrap > .signup-control.signup-control-icon {
    padding-left: 2.65rem;
}

.signup-input-wrap.password-field .signup-control-icon {
    padding-right: 3.2rem;
}

.signup-name-input-wrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.signup-name-input-wrap .signup-input-icon {
    left: 0.75rem;
}

.signup-name-input-wrap .signup-control-icon {
    padding-left: 2.35rem;
}

.signup-dob-grid .signup-input-wrap {
    width: 100%;
}

.signup-dob-grid .signup-dob-control {
    padding-left: 2.35rem;
    padding-right: 1.85rem;
}

.signup-control,
.signup-form-pattern .signup-control {
    min-height: 44px;
    border: 1px solid #d3dcea;
    border-radius: 0.68rem;
    background: #f8fafd;
    font-size: 0.9rem;
    color: #122136;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.signup-control:focus,
.signup-form-pattern .signup-control:focus {
    border-color: #d4a11f;
    box-shadow: 0 0 0 4px rgba(229, 169, 6, 0.12);
    background: #fff;
    outline: none;
}

.signup-control.is-readonly,
.signup-form-pattern .signup-control:disabled {
    background: #eef2f7;
    color: #5c6b80;
    cursor: not-allowed;
}

.signup-name-group {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid #d3dcea;
    border-radius: 0.68rem;
    background: #f8fafd;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.signup-name-group:focus-within {
    border-color: #d4a11f;
    box-shadow: 0 0 0 4px rgba(229, 169, 6, 0.12);
    background: #fff;
}

.signup-name-group .signup-prefix {
    flex: 0 0 70px;
    min-width: 70px;
    border: 0;
    border-right: 1px solid #d3dcea;
    border-radius: 0;
    background: #eef2f8;
    font-weight: 600;
    font-size: 0.84rem;
    padding-left: 0.55rem;
    padding-right: 0.35rem;
}

.signup-name-group .signup-control:not(.signup-prefix) {
    flex: 1;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.signup-name-group .signup-control:not(.signup-prefix):focus {
    box-shadow: none;
}

.signup-dob-grid {
    margin: 0;
}

.signup-dob-grid .dvRow {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}

.signup-check {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.55rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #5a6a80;
    cursor: pointer;
    user-select: none;
}

.signup-check input {
    width: 15px;
    height: 15px;
    accent-color: #e5a906;
    cursor: pointer;
}

.signup-terms-box {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 0.35rem;
    padding: 0.9rem 1rem;
    border: 1px dashed #d5deea;
    border-radius: 0.75rem;
    background: #f7faff;
    font-size: 0.86rem;
    color: #3a4d66;
    line-height: 1.45;
}

.signup-terms-box a {
    color: #c99200;
    font-weight: 600;
    text-decoration: none;
}

.signup-terms-box a:hover {
    text-decoration: underline;
}

.signup-form-actions {
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid #edf1f7;
}

.auth-form-card-full .signup-form-pattern .input-group {
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .signup-progress {
        padding-bottom: 0.5rem;
    }

    .signup-progress-line {
        max-width: 36px;
    }

    .signup-step-head,
    .signup-step-grid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .signup-name-group {
        flex-direction: column;
    }

    .signup-name-group .signup-prefix {
        flex: none;
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid #d3dcea;
    }

    .signup-name-input-wrap {
        width: 100%;
    }

    .signup-dob-grid .signup-dob-control {
        padding-left: 2.2rem;
    }
}

.forgot-popup-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(10, 18, 32, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.forgot-popup-backdrop[hidden] {
    display: none !important;
}

.forgot-popup-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.forgot-popup {
    width: min(460px, 100%);
    background: #ffffff;
    border: 1px solid #dde5f1;
    border-radius: 1.15rem;
    box-shadow: 0 28px 60px rgba(12, 22, 38, 0.22);
    position: relative;
    overflow: hidden;
    transform: translateY(18px) scale(0.97);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.forgot-popup-backdrop.is-open .forgot-popup {
    transform: translateY(0) scale(1);
}

.forgot-popup-accent {
    height: 4px;
    background: linear-gradient(90deg, #f5be32 0%, #e5a906 50%, #c98f05 100%);
}

.forgot-popup-body {
    position: relative;
    padding: 1.5rem 1.5rem 1.4rem;
}

.forgot-popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 2.1rem;
    height: 2.1rem;
    border: 1px solid #e2e9f3;
    border-radius: 999px;
    background: #ffffff;
    color: #4a5c74;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.forgot-popup-close-btn:hover {
    background: #f3f6fb;
    border-color: #d0d9e8;
    color: #1b2c45;
}

.forgot-popup-head {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    margin-bottom: 1.35rem;
    padding-right: 2.5rem;
}

.forgot-popup-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.8rem;
    background: linear-gradient(135deg, #1a2b45 0%, #243a5c 100%);
    color: #f5be32;
    box-shadow: 0 8px 18px rgba(26, 43, 69, 0.18);
}

.forgot-popup-head-text {
    min-width: 0;
    padding-top: 0.1rem;
}

.forgot-popup-head h3 {
    margin: 0 0 0.4rem;
    color: #132237;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.forgot-popup-head p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
    color: #627089;
}

.forgot-popup-form {
    display: grid;
    gap: 1.25rem;
}

.forgot-popup-field {
    margin: 0;
}

.forgot-popup-field label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #2a3d57;
}

.forgot-popup-input-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid #d3dcea;
    border-radius: 0.75rem;
    background: #f8fafd;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.forgot-popup-input-wrap:focus-within {
    border-color: #d4a11f;
    box-shadow: 0 0 0 4px rgba(229, 169, 6, 0.12);
    background: #fff;
}

.forgot-popup-input-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 3rem;
    padding-left: 0.15rem;
    color: #8a97ab;
}

.forgot-popup-input-wrap input {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 48px;
    border: 0;
    padding: 0 1rem 0 0.25rem;
    background: transparent;
    color: #122136;
    font-size: 0.9rem;
}

.forgot-popup-input-wrap input:focus {
    outline: none;
}

.forgot-popup-input-wrap input::placeholder {
    color: #9aa8bc;
}

.forgot-popup-actions {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0.75rem;
    padding-top: 1.5rem;
}

.forgot-popup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 48px;
    padding: 0 1rem;
    border-radius: 0.75rem;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.forgot-popup-btn-ghost {
    border: 1px solid #d5deea;
    background: #fff;
    color: #3f5169;
}

.forgot-popup-btn-ghost:hover {
    background: #f4f7fb;
    border-color: #c5d0e0;
}

.forgot-popup-btn-primary {
    border: 0;
    background: linear-gradient(135deg, #f5be32 0%, #e5a906 55%, #c98f05 100%);
    color: #1a1404;
    box-shadow: 0 8px 20px rgba(229, 169, 6, 0.28);
}

.forgot-popup-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(229, 169, 6, 0.34);
}

.forgot-popup-footnote {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 1.25rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    background: #f4f8ff;
    border: 1px dashed #d5deea;
    font-size: 0.78rem;
    line-height: 1.5;
    color: #5c6d84;
}

.forgot-popup-footnote svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: #9f7400;
}

@media (max-width: 480px) {
    .forgot-popup-backdrop {
        padding: 1rem;
    }

    .forgot-popup-body {
        padding: 1.25rem 1.2rem 1.2rem;
    }

    .forgot-popup-head {
        margin-bottom: 1.15rem;
        padding-right: 2.35rem;
    }

    .forgot-popup-actions {
        grid-template-columns: 1fr;
    }

    .forgot-popup-footnote {
        margin-top: 1.1rem;
        padding: 0.8rem 0.9rem;
    }
}

@media (max-width: 768px) {
    .auth-wrap {
        grid-template-columns: 1fr;
        border-radius: 1.1rem;
    }

    .auth-promo-card {
        display: none;
    }

    .auth-form-card {
        border-left: none;
    }

    .auth-form-top,
    .auth-form {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .auth-form-card-full .auth-form-top,
    .auth-form-card-full .auth-form {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }
}

@media (max-width: 992px) {
    .auth-wrap {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .auth-wrap-signup {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .login-page-main {
        padding: 1.45rem 0 2.2rem;
    }

    .auth-promo-card,
    .auth-form-card {
        padding: 1.25rem 1rem;
        border-radius: 1rem;
    }

        .auth-promo-card h1 {
            font-size: 1.35rem;
        }

    .auth-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.product-card-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 0.15rem;
}

.view-btn {
    border: 1px solid #d8e1ed;
    background: #ffffff;
    color: var(--brand-navy);
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.62rem 0.55rem;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.view-btn:hover {
    background: #f4f7fb;
    border-color: #c5d0e0;
    color: var(--brand-dark);
}

.product-page-header {
    border-bottom: 1px solid #e4e9f2;
}

.product-detail-page-main {
    background: #f7f9fd;
    min-height: calc(100vh - 90px);
    font-size: 0.95rem;
}

.product-detail-top {
    padding: 1.45rem 0 1rem;
}

.product-detail-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr) 280px;
    gap: 1.15rem;
    align-items: start;
}

.pd-gallery {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.85rem;
}

.pd-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.pd-thumb {
    border: 1px solid #d5deeb;
    border-radius: 0.6rem;
    padding: 0;
    overflow: hidden;
    height: 64px;
    background: #fff;
}

    .pd-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .pd-thumb.is-active {
        border-color: #e8b11f;
        box-shadow: 0 0 0 3px rgba(232, 177, 31, 0.16);
    }

.pd-main-image-wrap {
    background: #fff;
    border: 1px solid #dde6f2;
    border-radius: 0.9rem;
    min-height: 360px;
    overflow: hidden;
}

.pd-main-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.pd-summary {
    background: #fff;
    border: 1px solid rgba(20, 31, 56, 0.08);
    border-radius: 1.15rem;
    padding: 1.35rem 1.35rem 1.2rem;
    box-shadow: 0 18px 40px rgba(15, 23, 41, 0.08);
    display: grid;
    gap: 0.95rem;
    position: relative;
    overflow: hidden;
}

.pd-summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-gold) 20%, var(--brand-gold-soft) 50%, var(--brand-gold) 80%, transparent);
}

.pd-summary-head {
    display: grid;
    gap: 0.45rem;
}

.pd-breadcrumb-mini {
    margin: 0;
    display: inline-flex;
    width: fit-content;
    color: #8a6200;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(229, 169, 6, 0.12);
    border: 1px solid rgba(229, 169, 6, 0.24);
    border-radius: 999px;
    padding: 0.28rem 0.65rem;
}

.pd-summary h1 {
    margin: 0;
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    line-height: 1.22;
    color: var(--brand-dark);
    letter-spacing: -0.02em;
}

.pd-stock-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pd-in-stock {
    background: #e9f8ef;
    color: #177645;
    border: 1px solid #caecd9;
    border-radius: 999px;
    padding: 0.28rem 0.68rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pd-rating {
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: #fff9eb;
    border: 1px solid rgba(229, 169, 6, 0.2);
}

.pd-price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, #fff9eb 0%, #fffdf6 55%, #f8fbff 100%);
    border: 1px solid rgba(229, 169, 6, 0.22);
}

.pd-price-main {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.pd-price-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a6200;
}

.pd-price-row {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.pd-price-row strong {
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
}

.pd-summary .product-old-price {
    font-size: 0.92rem;
    color: #8f97a8;
}

.pd-price-badge {
    flex-shrink: 0;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-deep));
    color: var(--brand-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(201, 143, 5, 0.22);
}

.pd-short-desc {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    padding-bottom: 0.15rem;
    border-bottom: 1px dashed #e3e8f0;
}

.pd-options-block {
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 0.85rem;
    background: #f8fafd;
    border: 1px solid #e8edf5;
}

.pd-option-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
}

.pd-option-label {
    font-weight: 700;
    color: #1f2b41;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.pd-color-list,
.pd-size-list {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.pd-color {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--c, #efefef);
    box-shadow: 0 0 0 1px #d1daea;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pd-color:hover {
    transform: scale(1.06);
}

.pd-color.is-active {
    box-shadow: 0 0 0 2px var(--brand-gold), 0 0 0 4px rgba(229, 169, 6, 0.18);
}

.pd-size {
    border: 1px solid #d2dbe9;
    background: #fff;
    min-width: 42px;
    height: 34px;
    border-radius: 0.55rem;
    font-weight: 700;
    font-size: 0.82rem;
    color: #334155;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.pd-size:hover {
    border-color: rgba(229, 169, 6, 0.45);
}

.pd-size.is-active {
    border-color: var(--brand-gold-deep);
    background: linear-gradient(180deg, #fff8e4, #fff3cc);
    color: #8a6200;
    box-shadow: 0 6px 14px rgba(229, 169, 6, 0.14);
}

.pd-action-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pd-action-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: #5f6b80;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #e3e8f0;
    background: #fff;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.pd-action-links a:hover {
    color: #8a6200;
    border-color: rgba(229, 169, 6, 0.35);
    background: #fff9eb;
}

.pd-cart-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 0.6rem;
}

.pd-add-btn {
    width: 100%;
    min-height: 2.85rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 22px rgba(201, 143, 5, 0.24);
}

.pd-continue-btn {
    width: 100%;
    min-height: 2.85rem;
    border-radius: 0.75rem;
    font-size: 0.88rem;
}

.pd-meta-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.pd-meta-list li {
    display: grid;
    gap: 0.18rem;
    padding: 0.65rem 0.55rem;
    border-radius: 0.75rem;
    background: #f8fafd;
    border: 1px solid #e8edf5;
    text-align: center;
}

.pd-meta-key {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8b95a8;
}

.pd-meta-val {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f2b41;
    line-height: 1.3;
}

.pd-side-info {
    background: #fff;
    border: 1px solid #dde6f2;
    border-radius: 0.9rem;
    padding: 1rem;
    display: grid;
    gap: 0.9rem;
}

    .pd-side-info ul {
        margin: 0;
        padding-left: 1.05rem;
        display: grid;
        gap: 0.42rem;
        color: #505f75;
        font-size: 0.9rem;
    }

.pd-warranty-box,
.pd-chat-box {
    border: 1px solid #e4ebf6;
    border-radius: 0.7rem;
    padding: 0.75rem;
    background: #f8fbff;
}

    .pd-warranty-box h4 {
        margin: 0 0 0.45rem;
        font-size: 1rem;
    }

    .pd-warranty-box p,
    .pd-chat-box p {
        margin: 0.2rem 0;
        color: #5e6a7d;
        font-size: 0.88rem;
    }

.product-detail-body-section {
    padding: 0.35rem 0 1.5rem;
}

.product-detail-body-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1rem;
    align-items: start;
}

.pd-tabs-wrap {
    background: #fff;
    border: 1px solid #dde6f2;
    border-radius: 0.9rem;
    padding: 1rem;
}

.pd-tabs {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 0.35rem;
    border-radius: 0.8rem;
    background: linear-gradient(180deg, #f8faff 0%, #f3f7ff 100%);
    border: 1px solid #e4ebf7;
}

.pd-tab {
    border: 1px solid transparent;
    background: transparent;
    color: #526078;
    border-radius: 999px;
    padding: 0.42rem 0.9rem;
    font-weight: 700;
    font-size: 0.86rem;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

    .pd-tab:hover {
        background: #ffffff;
        color: #233252;
        border-color: #dbe5f4;
    }

    .pd-tab:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(42, 107, 228, 0.18);
    }

    .pd-tab.is-active {
        border-color: #efbf45;
        background: #ffffff;
        color: #8d5f00;
        box-shadow: 0 7px 16px rgba(22, 44, 86, 0.1);
        transform: translateY(-1px);
    }

.pd-tab-panel {
    display: none;
    color: #4d596d;
    font-size: 0.92rem;
    line-height: 1.65;
    background: #fbfdff;
    border: 1px solid #e5ecf7;
    border-radius: 0.8rem;
    padding: 0.9rem;
}

    .pd-tab-panel.is-active {
        display: block;
    }

    .pd-tab-panel h3,
    .pd-tab-panel h4 {
        color: #1a2439;
        margin-top: 0.75rem;
        margin-bottom: 0.35rem;
        font-size: 1.02rem;
    }

.pd-side-rating-card {
    background: #eaf1ff;
    border: 1px solid #d3e0fa;
    border-radius: 0.8rem;
    padding: 0.9rem;
    color: #30425f;
}

    .pd-side-rating-card p {
        margin: 0.45rem 0;
        font-size: 0.9rem;
    }

    .pd-side-rating-card a {
        color: #9b6d00;
        font-weight: 700;
        text-decoration: none;
    }

.pd-not-found {
    grid-column: 1 / -1;
    text-align: center;
    background: #fff;
    border: 1px solid #dde6f2;
    border-radius: 1rem;
    padding: 2rem 1rem;
}

@media (max-width: 1080px) {
    .product-detail-top-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-body-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pd-gallery {
        grid-template-columns: 1fr;
    }

    .pd-thumbs {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .pd-thumb {
        height: 54px;
    }

    .pd-summary {
        padding: 1.1rem;
    }

    .pd-summary h1 {
        font-size: 1.35rem;
    }

    .pd-price-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .pd-option-row {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .pd-meta-list {
        grid-template-columns: 1fr;
    }

    .pd-cart-row {
        grid-template-columns: 1fr;
    }

    .product-card-actions {
        grid-template-columns: 1fr;
    }
}

/******* Address page ********/
body.addr-modal-open {
    overflow: hidden;
}

.addr-page-main {
    padding: 1.25rem 0 2.5rem;
}

.addr-section .container {
    max-width: 1080px;
}

.addr-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
    flex-wrap: wrap;
}

.addr-step {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8b97ab;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
}

.addr-step.is-done {
    color: var(--brand-navy);
    background: rgba(229, 169, 6, 0.12);
    border-color: rgba(229, 169, 6, 0.35);
}

.addr-step.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-dark));
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(15, 23, 41, 0.18);
}

.addr-step-line {
    width: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--border), rgba(229, 169, 6, 0.45));
    border-radius: 2px;
}

.addr-shell {
    background: #fff;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 24px 55px rgba(15, 23, 41, 0.1),
        0 0 0 1px rgba(15, 23, 41, 0.04);
    overflow: hidden;
}

.addr-page-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.75rem 1.75rem 1.35rem;
    background: linear-gradient(180deg, #fafbfd 0%, #ffffff 100%);
    border-bottom: 1px solid #eef2f8;
}

.addr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-gold-deep);
    margin-bottom: 0.35rem;
}

.addr-page-head h1 {
    margin: 0;
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    color: var(--brand-dark);
    letter-spacing: 0.01em;
}

.addr-page-head p {
    margin: 0.4rem 0 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    max-width: 36rem;
}

.addr-btn-add {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    border-radius: 0.85rem;
    padding: 0.75rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-dark);
    background: linear-gradient(145deg, var(--brand-gold-soft), var(--brand-gold));
    box-shadow: 0 10px 22px rgba(229, 169, 6, 0.22);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.addr-btn-add:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(229, 169, 6, 0.28);
}

a.addr-btn-add,
a.addr-btn-add:hover,
a.addr-btn-add:focus {
    text-decoration: none;
    color: var(--brand-dark);
}

.addr-btn-add-inline {
    margin-top: 0.35rem;
}

.addr-list-panel {
    padding: 1.35rem 1.75rem 1.75rem;
}

.addr-grid-table {
    width: 100%;
    border: none !important;
    border-collapse: separate;
    background: transparent;
}

.addr-grid-table > tbody {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 1.1rem;
}

.addr-grid-table > tbody > tr {
    display: contents;
}

.addr-grid-table > tbody > tr > td {
    display: block;
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.addr-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.1rem 1.1rem 1rem;
    border-radius: 1rem;
    border: 1.5px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
    box-shadow: 0 8px 22px rgba(15, 23, 41, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.addr-card:hover {
    border-color: rgba(229, 169, 6, 0.45);
    box-shadow: 0 14px 30px rgba(15, 23, 41, 0.08);
}

.addr-card.is-selected,
.addr-card.is-default.is-selected {
    border-color: var(--brand-gold);
    box-shadow:
        0 0 0 1px rgba(229, 169, 6, 0.35),
        0 16px 34px rgba(15, 23, 41, 0.1);
}

.addr-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.addr-card-select {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    margin: 0;
}

.addr-card-select input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.addr-card-select-ui {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    border: 2px solid #c5cedd;
    display: inline-grid;
    place-items: center;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.addr-card-select-ui::after {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--brand-gold);
    transform: scale(0);
    transition: transform 0.15s ease;
}

.addr-card-select input[type="radio"]:checked + .addr-card-select-ui {
    border-color: var(--brand-gold);
    background: rgba(229, 169, 6, 0.12);
}

.addr-card-select input[type="radio"]:checked + .addr-card-select-ui::after {
    transform: scale(1);
}

.addr-card-select-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4b5565;
}

.addr-type-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: #eef2f8;
    color: #4b5565;
}

.addr-type-home {
    background: rgba(59, 99, 214, 0.12);
    color: #2f4eb8;
}

.addr-type-work {
    background: rgba(229, 169, 6, 0.14);
    color: var(--brand-gold-deep);
}

.addr-type-other {
    background: rgba(100, 116, 141, 0.12);
    color: #52607a;
}

.addr-card-body {
    display: grid;
    gap: 0.3rem;
    flex: 1;
}

.addr-card-city {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.addr-card-line {
    margin: 0;
    font-size: 0.88rem;
    color: #3f4d63;
    line-height: 1.45;
}

.addr-card-line-muted {
    color: var(--text-muted);
}

.addr-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-navy);
}

.addr-card-pin {
    padding: 0.2rem 0.55rem;
    border-radius: 0.45rem;
    background: rgba(20, 31, 56, 0.06);
}

.addr-card-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #52607a;
}

.addr-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.65rem;
    border-top: 1px dashed #e3e8f0;
}

.addr-default-pill {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f7a52;
    background: rgba(16, 185, 129, 0.12);
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
}

.addr-default-pill-ghost {
    visibility: hidden;
}

.addr-card-actions {
    display: flex;
    gap: 0.45rem;
    margin-left: auto;
}

.addr-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.75rem;
    border-radius: 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.addr-action-edit {
    color: var(--brand-navy);
    background: #f1f5fb;
    border-color: #e2e8f2;
}

.addr-action-edit:hover {
    background: #e8eef8;
    color: var(--brand-dark);
}

.addr-action-delete {
    color: #c24141;
    background: #fff5f5;
    border-color: #f3d0d0;
}

.addr-action-delete:hover {
    background: #fee2e2;
    color: #991b1b;
}

.addr-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2.5rem 1.25rem;
    border-radius: 1rem;
    border: 1.5px dashed #d7deea;
    background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}

.addr-empty-icon {
    display: inline-grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    margin-bottom: 0.85rem;
    color: var(--brand-gold-deep);
    background: rgba(229, 169, 6, 0.12);
}

.addr-empty-state h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--brand-dark);
}

.addr-empty-state p {
    margin: 0.45rem 0 0.85rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.addr-page-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.75rem 1.35rem;
    border-top: 1px solid #eef2f8;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
}

.addr-back-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #52607a;
    text-decoration: none;
    transition: color 0.15s ease;
}

.addr-back-link:hover {
    color: var(--brand-navy);
}

.addr-checkout-btn {
    border: none;
    border-radius: 0.85rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-dark) 100%);
    box-shadow: 0 12px 28px rgba(15, 23, 41, 0.22);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.addr-checkout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(15, 23, 41, 0.28);
}

/* Add address modal */
.addr-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(10, 17, 32, 0.55);
    backdrop-filter: blur(4px);
}

.addr-modal-backdrop[hidden] {
    display: none !important;
}

.addr-modal {
    position: relative;
    width: min(640px, 100%);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 28px 70px rgba(10, 17, 32, 0.28);
    animation: addrModalIn 0.22s ease;
}

@keyframes addrModalIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.addr-modal-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-gold) 20%, var(--brand-gold-soft) 50%, var(--brand-gold) 80%, transparent);
}

.addr-modal-body {
    padding: 1.5rem 1.5rem 1.35rem;
}

.addr-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.2rem;
    height: 2.2rem;
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #52607a;
    background: #f1f5fb;
    cursor: pointer;
    transition: background 0.15s ease;
    z-index: 1;
}

.addr-modal-close:hover {
    background: #e6edf7;
}

.addr-modal-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
    padding-right: 2rem;
}

.addr-modal-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.8rem;
    display: grid;
    place-items: center;
    color: var(--brand-gold-deep);
    background: rgba(229, 169, 6, 0.14);
    flex-shrink: 0;
}

.addr-modal-head h2 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--brand-dark);
}

.addr-modal-head p {
    margin: 0.25rem 0 0;
    font-size: 0.86rem;
    color: var(--text-muted);
}

.addr-modal-form.auth-form {
    padding: 0;
    gap: 0.85rem;
}

.addr-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
}

.addr-form-span-2 {
    grid-column: 1 / -1;
}

.addr-label-optional {
    font-weight: 500;
    color: #94a3b8;
    text-transform: none;
    letter-spacing: 0;
}

.addr-default-check {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.15rem;
    font-size: 0.86rem;
    font-weight: 500;
    color: #4b5565;
    cursor: pointer;
}

.addr-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.65rem;
    margin-top: 0.35rem;
    padding-top: 0.85rem;
    border-top: 1px solid #eef2f8;
}

.addr-modal-btn {
    border: none;
    border-radius: 0.75rem;
    padding: 0.72rem 1.15rem;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.addr-modal-btn-ghost {
    color: #52607a;
    background: #f1f5fb;
    border: 1px solid #e2e8f2;
}

.addr-modal-btn-ghost:hover {
    background: #e8eef8;
}

.addr-modal-btn-primary {
    color: var(--brand-dark);
    background: linear-gradient(145deg, var(--brand-gold-soft), var(--brand-gold));
    box-shadow: 0 8px 18px rgba(229, 169, 6, 0.22);
}

.addr-modal-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(229, 169, 6, 0.28);
}

@media (max-width: 768px) {
    .addr-page-head {
        flex-direction: column;
        align-items: stretch;
    }

    .addr-btn-add {
        justify-content: center;
        width: 100%;
    }

    .addr-list-panel,
    .addr-page-head,
    .addr-page-foot {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .addr-page-foot {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .addr-checkout-btn {
        width: 100%;
    }

    .addr-form-grid {
        grid-template-columns: 1fr;
    }

    .addr-form-span-2 {
        grid-column: auto;
    }

    .addr-modal-actions {
        flex-direction: column-reverse;
    }

    .addr-modal-btn {
        width: 100%;
    }
}

.addr-confirm-backdrop {
    z-index: 10060;
}

.addr-confirm-modal {
    position: relative;
    width: min(420px, 100%);
    border-radius: 1.15rem;
    background: #fff;
    box-shadow: 0 28px 70px rgba(10, 17, 32, 0.28);
    overflow: hidden;
    animation: addrModalIn 0.22s ease;
}

.addr-confirm-accent {
    background: linear-gradient(90deg, transparent, #ef4444 20%, #f87171 50%, #ef4444 80%, transparent);
}

.addr-confirm-body {
    padding: 1.65rem 1.5rem 1.35rem;
    text-align: center;
}

.addr-confirm-icon {
    display: inline-grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 0.85rem;
    border-radius: 1rem;
    color: #dc2626;
    background: rgba(239, 68, 68, 0.12);
}

.addr-confirm-body h2 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--brand-dark);
}

.addr-confirm-text {
    margin: 0.55rem 0 1.1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.addr-confirm-text strong {
    color: var(--brand-navy);
    font-weight: 600;
}

.addr-confirm-actions {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
}

.addr-confirm-delete-btn {
    color: #fff !important;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.24);
    border: none;
}

.addr-confirm-delete-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(220, 38, 38, 0.3);
}

@media (max-width: 768px) {
    .addr-confirm-actions {
        flex-direction: column-reverse;
    }

    .addr-confirm-actions .addr-modal-btn {
        width: 100%;
    }
}

/******* Payment page ********/
.pay-page-main {
    padding: 1.25rem 0 2.5rem;
}

.pay-section .container {
    max-width: 1080px;
}

.pay-shell {
    background: #fff;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 24px 55px rgba(15, 23, 41, 0.1),
        0 0 0 1px rgba(15, 23, 41, 0.04);
    overflow: hidden;
}

.pay-page-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.75rem 1.75rem 1.35rem;
    background: linear-gradient(180deg, #fafbfd 0%, #ffffff 100%);
    border-bottom: 1px solid #eef2f8;
}

.pay-page-head h1 {
    margin: 0;
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    color: var(--brand-dark);
}

.pay-page-head p {
    margin: 0.4rem 0 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    max-width: 34rem;
}

.pay-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0f7a52;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.22);
    white-space: nowrap;
    flex-shrink: 0;
}

.pay-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 0;
}

.pay-panel {
    padding: 1.5rem 1.75rem 1.75rem;
}

.pay-panel-methods {
    border-right: 1px solid #eef2f8;
}

.pay-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.15rem;
}

.pay-panel-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    color: var(--brand-navy);
    background: rgba(20, 31, 56, 0.07);
    flex-shrink: 0;
}

.pay-panel-icon-gold {
    color: var(--brand-gold-deep);
    background: rgba(229, 169, 6, 0.14);
}

.pay-panel-head h2 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--brand-dark);
}

.pay-panel-head p {
    margin: 0.2rem 0 0;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.pay-method-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-bottom: 1.15rem;
}

.pay-method-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 1.5px solid var(--border);
    border-radius: 0.8rem;
    padding: 0.72rem 0.55rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #52607a;
    background: #f8fafd;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.pay-method-tab:hover {
    border-color: rgba(229, 169, 6, 0.45);
    color: var(--brand-navy);
}

.pay-method-tab.is-active {
    color: var(--brand-dark);
    background: linear-gradient(145deg, rgba(246, 207, 99, 0.22), rgba(229, 169, 6, 0.14));
    border-color: var(--brand-gold);
    box-shadow: 0 8px 18px rgba(229, 169, 6, 0.14);
}

.pay-fields-panel {
    margin-bottom: 1.15rem;
}

.pay-fields-panel[hidden] {
    display: none !important;
}

.pay-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
}

.pay-form-span-2 {
    grid-column: 1 / -1;
}

.pay-form-grid .auth-input {
    width: 100%;
}

.pay-upi-wrap {
    display: grid;
    gap: 0.9rem;
}

.pay-qr-card {
    padding: 0.85rem;
    border-radius: 0.9rem;
    border: 1px dashed #d7deea;
    background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
    text-align: center;
}

.pay-qr-label {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--brand-gold-deep);
}

.pay-qr-image {
    width: min(220px, 100%);
    border-radius: 0.65rem;
    border: 1px solid #e3e8f0;
    background: #fff;
}

.pay-field-hint {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.pay-cod-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(229, 169, 6, 0.28);
    background: linear-gradient(135deg, rgba(246, 207, 99, 0.12), rgba(229, 169, 6, 0.06));
}

.pay-cod-icon {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    color: var(--brand-gold-deep);
    background: rgba(229, 169, 6, 0.16);
    flex-shrink: 0;
}

.pay-cod-card h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--brand-dark);
}

.pay-cod-card p {
    margin: 0.25rem 0 0;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.pay-place-btn {
    width: 100%;
    border: none;
    border-radius: 0.85rem;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-dark) 100%);
    box-shadow: 0 12px 28px rgba(15, 23, 41, 0.22);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pay-place-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(15, 23, 41, 0.28);
}

.pay-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.9rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: #64748b;
}

.pay-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pay-delivery-card {
    padding: 1rem 1.05rem;
    border-radius: 0.9rem;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
    margin-bottom: 1rem;
}

.pay-delivery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.55rem;
}

.pay-delivery-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-gold-deep);
}

.pay-edit-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-navy);
    text-decoration: none;
}

.pay-edit-link:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

.pay-delivery-name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.pay-delivery-line {
    margin: 0.2rem 0 0;
    font-size: 0.86rem;
    color: #3f4d63;
    line-height: 1.45;
}

.pay-delivery-muted {
    color: var(--text-muted);
}

.pay-delivery-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0.45rem 0 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-navy);
}

.pay-summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: grid;
    gap: 0.55rem;
}

.pay-summary-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.88rem;
    color: #4b5565;
}

.pay-summary-value {
    font-weight: 600;
    color: var(--brand-dark);
}

.pay-summary-discount .pay-summary-value {
    color: #0f7a52;
}

.pay-summary-free {
    font-weight: 700;
    color: #0f7a52;
    font-size: 0.82rem;
}

.pay-total-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-dark) 100%);
    color: #eef3ff;
    font-size: 0.92rem;
    font-weight: 600;
}

.pay-total-amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-gold-soft);
    letter-spacing: 0.01em;
}

/******* Catalog listing pages ********/
.catalog-page-main {
    padding: 1.25rem 0 2.5rem;
}

.catalog-page-section {
    padding-top: 0.5rem;
}

.catalog-page-head {
    margin-bottom: 1.35rem;
}

.catalog-back-link {
    display: inline-flex;
    margin-bottom: 0.85rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: #52607a;
    text-decoration: none;
}

.catalog-back-link:hover {
    color: var(--brand-navy);
}

.catalog-page-head h1 {
    margin: 0;
    font-size: clamp(1.55rem, 2.8vw, 2rem);
    color: var(--brand-dark);
}

.catalog-page-head h1 span {
    color: var(--brand-gold-deep);
}

.category-grid-catalog {
    margin-top: 0.25rem;
}

.product-grid-catalog {
    margin-top: 0.25rem;
}

.catalog-empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
    border-radius: 1rem;
    border: 1.5px dashed #d7deea;
    background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}

.catalog-empty-state h3 {
    margin: 0;
    color: var(--brand-dark);
}

.catalog-empty-state p {
    margin: 0.45rem 0 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .pay-grid {
        grid-template-columns: 1fr;
    }

    .pay-panel-methods {
        border-right: none;
        border-bottom: 1px solid #eef2f8;
    }

    .pay-page-head {
        flex-direction: column;
        align-items: stretch;
    }

    .pay-panel {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pay-page-head {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pay-form-grid {
        grid-template-columns: 1fr;
    }

    .pay-form-span-2 {
        grid-column: auto;
    }
}

