:root {
    --cream: #f6efe4;
    --cream-2: #fffaf1;
    --champagne: #ead7ad;
    --gold: #c99b36;
    --gold-2: #f4d77e;
    --ink: #12100d;
    --ink-2: #2a241c;
    --muted: #776b5c;
    --line: rgba(95, 72, 33, 0.18);
    --panel: rgba(255, 250, 241, 0.84);
    --shadow: 0 24px 70px rgba(43, 31, 14, 0.14);
    --sans: "Titillium Web", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(244, 215, 126, 0.34), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(18, 16, 13, 0.08), transparent 26%),
        linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 42%, #f2e7d7 100%);
    color: var(--ink);
    font-family: var(--sans);
    letter-spacing: 0;
}

body.drawer-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.page-shell {
    min-height: 100vh;
    overflow: hidden;
}

.elite-header-wrap {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(201, 155, 54, 0.42);
    box-shadow: 0 14px 36px rgba(18, 16, 13, 0.18);
}

.top-service-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    min-height: 34px;
    border-bottom: 1px solid rgba(201, 155, 54, 0.18);
    background: #fff8ed;
    color: #3a3024;
    padding: 0 clamp(18px, 3vw, 42px);
    font-size: 12px;
    font-weight: 500;
}

.top-service-bar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    white-space: nowrap;
}

.top-service-bar span:nth-child(2),
.top-service-bar span:nth-child(3) {
    justify-self: center;
}

.top-service-bar span:last-child {
    justify-self: end;
}

.service-mini {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1.6px solid var(--gold);
    border-radius: 5px;
}

.service-mini.delivery::before {
    position: absolute;
    right: -5px;
    bottom: 2px;
    width: 7px;
    height: 5px;
    border: 1.4px solid var(--gold);
    border-left: 0;
    border-radius: 0 3px 3px 0;
    content: "";
}

.service-mini.delivery::after,
.service-mini.payment::after,
.service-mini.support::after,
.service-mini.phone::after {
    position: absolute;
    content: "";
}

.service-mini.delivery::after {
    left: 2px;
    right: 2px;
    bottom: -5px;
    height: 4px;
    border-radius: 50%;
    border-inline: 2px solid var(--gold);
}

.service-mini.payment {
    border-radius: 50%;
}

.service-mini.payment::after {
    inset: 4px;
    border: 1.4px solid var(--gold);
    border-radius: 2px;
}

.service-mini.support {
    border-radius: 50%;
}

.service-mini.support::after {
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid var(--gold);
    border-right: 1.5px solid var(--gold);
    border-radius: 50%;
    transform: rotate(45deg);
}

.service-mini.phone {
    border: 0;
    transform: rotate(-18deg);
}

.service-mini.phone::after {
    inset: 2px 4px;
    border: 2px solid var(--gold);
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
}

.site-header {
    display: grid;
    grid-template-columns: 132px minmax(420px, 1fr) minmax(220px, 292px) auto;
    gap: 18px;
    align-items: center;
    min-height: 94px;
    padding: 11px clamp(18px, 3vw, 42px) 12px;
    background:
        radial-gradient(circle at 7% 50%, rgba(201, 155, 54, 0.24), transparent 18%),
        linear-gradient(90deg, #080806 0%, #14120e 42%, #080806 100%);
    color: #f9eed8;
}

.brand-link img {
    display: block;
    width: 128px;
    height: auto;
}

.main-nav {
    display: flex;
    justify-content: flex-start;
    gap: 19px;
    color: #f6ebd8;
    font-size: 13px;
    font-weight: 600;
}

.main-nav a {
    position: relative;
    padding: 13px 0;
    opacity: 0.92;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-2));
    content: "";
    opacity: 0;
    transform: translateY(4px);
    transition: 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    opacity: 1;
    transform: translateY(0);
}

.main-nav a.is-active {
    color: var(--gold-2);
    opacity: 1;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    min-height: 43px;
    border: 1px solid rgba(201, 155, 54, 0.48);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    padding: 0 13px 0 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.search-form span {
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
}

.search-form input {
    width: 100%;
    border: 0;
    background: transparent;
    color: #fff8ea;
    outline: 0;
    font-size: 13px;
    font-weight: 500;
}

.search-form input::placeholder {
    color: rgba(255, 248, 234, 0.64);
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.link-button,
.cart-trigger,
.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.link-button {
    border: 0;
    background: transparent;
    color: #fff4df;
    padding-inline: 0;
}

.secondary-btn {
    border: 1px solid rgba(201, 155, 54, 0.42);
    background: rgba(255, 250, 241, 0.7);
    color: var(--gold);
}

.cart-trigger {
    gap: 8px;
    border: 0;
    background: transparent;
    color: #fff4df;
    box-shadow: none;
    padding-inline: 0;
}

.primary-btn {
    border: 1px solid rgba(69, 45, 7, 0.3);
    background: linear-gradient(135deg, #17130e, #332614);
    color: #fff7de;
    box-shadow: 0 14px 32px rgba(18, 16, 13, 0.18);
}

.cart-trigger strong {
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    margin-left: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: var(--ink);
    font-size: 12px;
}

.header-icon {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.header-icon.account::before {
    position: absolute;
    top: 3px;
    left: 8px;
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    content: "";
}

.header-icon.account::after {
    position: absolute;
    right: 3px;
    bottom: 3px;
    left: 3px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 10px 10px 4px 4px;
    content: "";
}

.header-icon.bag::before {
    position: absolute;
    right: 3px;
    bottom: 3px;
    left: 3px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 3px;
    content: "";
}

.header-icon.bag::after {
    position: absolute;
    top: 3px;
    left: 7px;
    width: 10px;
    height: 9px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 9px 9px 0 0;
    content: "";
}

.link-button:hover,
.cart-trigger:hover,
.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
    gap: 0;
    align-items: center;
    min-height: 555px;
    padding: 42px clamp(18px, 4vw, 58px) 34px;
    border-bottom: 1px solid rgba(201, 155, 54, 0.18);
    background:
        linear-gradient(90deg, #fff8eb 0%, #fff5e6 34%, rgba(245, 221, 178, 0.82) 54%, rgba(207, 159, 67, 0.28) 100%),
        radial-gradient(circle at 82% 42%, rgba(201, 155, 54, 0.26), transparent 31%),
        radial-gradient(circle at 48% 58%, rgba(255, 255, 255, 0.72), transparent 26%),
        #fff7e8;
    overflow: hidden;
}

.hero-section::before {
    position: absolute;
    top: -26px;
    right: -4%;
    left: -4%;
    z-index: 0;
    height: 64px;
    border-bottom: 2px solid rgba(201, 155, 54, 0.68);
    border-radius: 0 0 50% 50%;
    background: #0b0907;
    content: "";
    pointer-events: none;
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

.hero-copy {
    z-index: 3;
    max-width: 470px;
}

.hero-copy h1,
.section-heading h2,
.promo-copy h2,
.collection-copy h2 {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    font-size: clamp(46px, 5vw, 76px);
    font-weight: 700;
    line-height: 0.98;
}

.hero-copy p {
    max-width: 390px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.42;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 42px;
}

.trust-row span,
.promo-list span {
    position: relative;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #6e6253;
    padding: 0 0 0 22px;
    font-size: 12px;
    font-weight: 600;
}

.trust-row span::before {
    position: absolute;
    top: 2px;
    left: 0;
    display: grid;
    place-items: center;
    width: 14px;
    height: 14px;
    border: 1.4px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    content: "✓";
    font-size: 9px;
    line-height: 1;
}

.hero-visual {
    position: relative;
    z-index: 1;
    min-height: 500px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.hero-visual::before {
    content: none;
}

.hero-visual img {
    position: absolute;
    inset: -8% -2% -6% -18%;
    width: 122%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    mix-blend-mode: multiply;
}

.hero-visual::after {
    position: absolute;
    inset: 0 auto 0 -1px;
    z-index: 2;
    width: 48%;
    background: linear-gradient(90deg, #fff8eb 0%, rgba(255, 248, 235, 0.9) 22%, rgba(255, 248, 235, 0.46) 58%, transparent 100%);
    content: "";
    pointer-events: none;
}

.hero-cart-panel {
    align-self: center;
    display: grid;
    gap: 13px;
    min-width: 0;
    border: 1px solid rgba(201, 155, 54, 0.18);
    border-radius: 10px;
    background: rgba(255, 250, 241, 0.94);
    box-shadow: 0 22px 54px rgba(18, 16, 13, 0.16);
    padding: 18px;
}

.hero-cart-head,
.hero-cart-total div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hero-cart-head strong {
    font-size: 16px;
    font-weight: 700;
}

.hero-cart-head button,
.hero-cart-lines article > button {
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 0;
    font-size: 18px;
}

.hero-cart-lines {
    display: grid;
    gap: 12px;
}

.hero-cart-lines article {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.hero-cart-thumb {
    display: grid;
    place-items: center;
    width: 50px;
    height: 58px;
    overflow: hidden;
    border: 1px solid rgba(201, 155, 54, 0.18);
    border-radius: 6px;
    background: #fff;
}

.hero-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.hero-cart-lines strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hero-cart-lines small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
}

.hero-cart-total {
    display: grid;
    gap: 8px;
    border-top: 1px solid rgba(95, 72, 33, 0.12);
    padding-top: 8px;
}

.hero-cart-total div {
    color: #625746;
    font-size: 12px;
    font-weight: 500;
}

.hero-cart-total .total {
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
}

.hero-cart-dark,
.hero-cart-gold {
    min-height: 38px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
}

.hero-cart-dark {
    border: 1px solid var(--ink);
    background: #0c0a08;
    color: #fff8e8;
}

.hero-cart-gold {
    border: 1px solid rgba(201, 155, 54, 0.32);
    background: linear-gradient(135deg, #f4dfaa, #c99b36);
    color: var(--ink);
}

.hero-secure {
    justify-self: center;
    color: #8b7b64;
    font-size: 11px;
    font-weight: 500;
}

.floating-card {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 5px;
    min-width: 168px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    background: rgba(255, 250, 241, 0.76);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px rgba(18, 16, 13, 0.16);
    padding: 16px;
}

.floating-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.floating-card strong {
    color: var(--ink);
    font-size: 20px;
    font-weight: 600;
}

.floating-card button {
    width: max-content;
    border: 0;
    background: transparent;
    color: var(--gold);
    padding: 0;
    font-weight: 600;
}

.cart-preview {
    right: 34px;
    bottom: 36px;
}

.account-preview {
    top: 42px;
    left: 36px;
}

.checkout-alert {
    position: fixed;
    right: 24px;
    top: 96px;
    z-index: 70;
    display: grid;
    gap: 3px;
    max-width: 420px;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 18px 45px rgba(18, 16, 13, 0.18);
    font-weight: 600;
}

.checkout-alert.success {
    border: 1px solid rgba(34, 134, 89, 0.24);
    background: #effaf4;
    color: #0f5c38;
}

.checkout-alert.error {
    border: 1px solid rgba(190, 18, 60, 0.24);
    background: #fff0f3;
    color: #9f1239;
}

.service-band,
.category-section,
.catalogue-section,
.promo-section,
.checkout-section,
.collection-section,
.reviews-section,
.site-footer {
    margin: 0 clamp(18px, 5vw, 72px);
}

.service-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
    margin-inline: 0;
    border-block: 1px solid rgba(201, 155, 54, 0.2);
    background: rgba(255, 250, 241, 0.82);
    padding: 20px clamp(18px, 4vw, 58px);
}

.service-band article,
.checkout-steps article,
.reviews-section article {
    display: grid;
    gap: 6px;
    border: 1px solid rgba(201, 155, 54, 0.16);
    border-radius: 18px;
    background: rgba(255, 250, 241, 0.54);
    padding: 18px;
}

.service-band article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px 13px;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.service-band article small {
    grid-column: 2;
}

.line-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 155, 54, 0.4);
    border-radius: 999px;
    background: radial-gradient(circle at 35% 30%, #fff0b8, var(--gold));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.service-band strong {
    font-size: 16px;
    font-weight: 600;
}

.service-band small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.category-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 58px 0 32px;
}

.category-tile {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border: 1px solid rgba(201, 155, 54, 0.2);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(18, 16, 13, 0), rgba(18, 16, 13, 0.62)),
        linear-gradient(135deg, #f8ead3, #fff9ef);
    box-shadow: 0 22px 50px rgba(43, 31, 14, 0.1);
    padding: 22px;
}

.category-tile::before {
    position: absolute;
    inset: auto -30px -40px auto;
    width: 170px;
    height: 170px;
    border: 22px solid rgba(201, 155, 54, 0.24);
    border-radius: 999px;
    content: "";
}

.category-tile span,
.category-tile strong,
.category-tile small {
    position: relative;
    z-index: 1;
}

.category-tile span {
    color: var(--gold);
    font-weight: 600;
}

.category-tile strong {
    display: block;
    margin-top: 112px;
    color: #fff8e7;
    font-family: var(--sans);
    font-size: 40px;
    line-height: 1;
}

.category-tile small {
    display: block;
    max-width: 210px;
    margin-top: 8px;
    color: rgba(255, 248, 231, 0.82);
    font-size: 14px;
    font-weight: 500;
}

.tile-2 {
    background:
        linear-gradient(180deg, rgba(18, 16, 13, 0), rgba(18, 16, 13, 0.58)),
        linear-gradient(135deg, #17130f, #594227);
}

.tile-3 {
    background:
        linear-gradient(180deg, rgba(18, 16, 13, 0), rgba(18, 16, 13, 0.58)),
        linear-gradient(135deg, #f7e4c7, #d6a84f);
}

.tile-4 {
    background:
        linear-gradient(180deg, rgba(18, 16, 13, 0), rgba(18, 16, 13, 0.64)),
        linear-gradient(135deg, #2a2017, #e7c369);
}

.catalogue-section,
.checkout-section {
    padding: 36px 0 70px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 24px;
}

.section-heading h2,
.promo-copy h2,
.collection-copy h2 {
    font-size: clamp(42px, 5vw, 72px);
}

.section-heading p,
.promo-copy p,
.collection-copy p,
.checkout-steps p,
.reviews-section span {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.filter-pills button {
    min-height: 36px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.64);
    color: var(--ink-2);
    padding: 0 13px;
    font-size: 13px;
    font-weight: 600;
}

.filter-pills button.is-active {
    background: var(--ink);
    color: #fff6dd;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    position: relative;
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(201, 155, 54, 0.18);
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.82);
    box-shadow: 0 18px 42px rgba(43, 31, 14, 0.08);
}

.product-card.is-hidden {
    display: none;
}

.favorite-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.78);
    color: var(--ink);
    font-size: 20px;
}

.product-media {
    position: relative;
    height: 250px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 239, 184, 0.88), transparent 32%),
        linear-gradient(135deg, #f2dfc2, #fff7ea);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    filter: drop-shadow(0 16px 18px rgba(18, 16, 13, 0.16));
}

.generated-product {
    position: absolute;
    inset: 48px 34%;
    border-radius: 28px 28px 12px 12px;
    background: linear-gradient(135deg, #17130f, #c99b36 52%, #fff1b7);
    box-shadow: 0 28px 45px rgba(18, 16, 13, 0.2);
}

.generated-product::before {
    position: absolute;
    top: -28px;
    left: 28%;
    width: 44%;
    height: 34px;
    border-radius: 12px 12px 4px 4px;
    background: linear-gradient(135deg, #fff1b7, #c99b36);
    content: "";
}

.art-beauty .generated-product {
    inset: 96px 26% 40px;
    border-radius: 999px 999px 30px 30px;
}

.art-home .generated-product {
    inset: 76px 25% 50px;
    border-radius: 18px;
}

.art-fashion .generated-product {
    inset: 68px 22% 38px;
    border-radius: 60px 60px 18px 18px;
}

.product-body {
    display: grid;
    gap: 9px;
    padding: 18px;
}

.product-body > span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-body h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-body p {
    display: -webkit-box;
    min-height: 62px;
    max-height: 62px;
    overflow: hidden;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.product-bottom strong {
    font-size: 21px;
    font-weight: 600;
}

.product-bottom em {
    border-radius: 999px;
    background: rgba(34, 134, 89, 0.1);
    color: #15734b;
    padding: 5px 9px;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

.add-btn {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: var(--ink);
    font-weight: 600;
}

.promo-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    gap: 24px;
    align-items: center;
    min-height: 460px;
    border: 1px solid rgba(201, 155, 54, 0.22);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(18, 16, 13, 0.94), rgba(63, 43, 18, 0.84)),
        radial-gradient(circle at 82% 10%, rgba(244, 215, 126, 0.36), transparent 30%);
    color: #fff7e7;
    padding: clamp(28px, 5vw, 58px);
    box-shadow: var(--shadow);
}

.promo-copy h2,
.promo-copy p {
    color: inherit;
}

.promo-copy p {
    max-width: 620px;
    color: rgba(255, 247, 231, 0.74);
}

.promo-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 24px 0;
}

.promo-list span {
    background: rgba(255, 247, 231, 0.1);
    color: #fff7e7;
}

.promo-visual {
    position: relative;
    min-height: 300px;
}

.deal-medallion {
    position: absolute;
    top: 10px;
    right: 24px;
    display: grid;
    place-items: center;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 24%, #fff1b7, #c99b36 62%, #8e681a);
    color: var(--ink);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.28);
}

.deal-medallion strong {
    font-family: var(--sans);
    font-size: 58px;
    line-height: 0.8;
}

.deal-medallion span {
    font-weight: 600;
}

.stacked-products {
    position: absolute;
    right: 50px;
    bottom: 10px;
    width: 260px;
    height: 170px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, transparent 20%, rgba(255, 241, 183, 0.7) 21%, transparent 22%),
        linear-gradient(135deg, #fff5d8, #c99b36 60%, #1a1510);
    transform: rotate(-7deg);
    box-shadow: 0 26px 46px rgba(0, 0, 0, 0.28);
}

.checkout-steps,
.reviews-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.checkout-steps article span {
    color: var(--gold);
    font-weight: 600;
}

.checkout-steps h3 {
    margin: 8px 0 0;
    font-size: 23px;
}

.collection-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    gap: 28px;
    align-items: center;
    padding: 24px 0 70px;
}

.collection-media {
    min-height: 390px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(18, 16, 13, 0.12), rgba(18, 16, 13, 0)),
        url("/assets/img/hero-elite-family.png") center / cover;
    box-shadow: var(--shadow);
}

.collection-copy {
    max-width: 520px;
}

.reviews-section {
    padding: 0 0 70px;
}

.reviews-section article strong {
    font-family: var(--sans);
    font-size: 28px;
    line-height: 1.1;
}

.site-footer {
    display: grid;
    margin: 0;
    border-top: 1px solid rgba(201, 155, 54, 0.42);
    background:
        radial-gradient(circle at 12% 0%, rgba(201, 155, 54, 0.2), transparent 25%),
        linear-gradient(180deg, #17130d 0%, #0d0b08 58%, #080705 100%);
    color: #f7ead2;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 520px);
    gap: 22px;
    align-items: center;
    min-height: 56px;
    border-bottom: 1px solid rgba(201, 155, 54, 0.24);
    padding: 10px clamp(20px, 5vw, 74px);
}

.footer-newsletter-copy,
.footer-newsletter-form,
.footer-bottom span,
.footer-bottom a,
.footer-contact span {
    display: flex;
    align-items: center;
}

.footer-newsletter-copy {
    gap: 13px;
}

.newsletter-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 1px solid rgba(244, 215, 126, 0.54);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 8px 22px rgba(201, 155, 54, 0.22);
}

.newsletter-icon::before {
    width: 15px;
    height: 10px;
    border: 1.5px solid #17130d;
    border-radius: 2px;
    content: "";
}

.newsletter-icon::after {
    position: absolute;
    top: 12px;
    width: 11px;
    height: 7px;
    border-right: 1.5px solid #17130d;
    border-bottom: 1.5px solid #17130d;
    content: "";
    transform: rotate(45deg);
}

.footer-newsletter strong,
.footer-columns strong {
    display: block;
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.footer-newsletter small {
    display: block;
    margin-top: 4px;
    color: rgba(247, 234, 210, 0.72);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
}

.footer-newsletter-form {
    justify-self: end;
    width: min(100%, 520px);
    gap: 10px;
}

.footer-newsletter-form input {
    min-height: 34px;
    flex: 1;
    border: 1px solid rgba(244, 215, 126, 0.34);
    border-radius: 6px;
    background: rgba(255, 250, 241, 0.04);
    color: #fff8eb;
    outline: 0;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 500;
}

.footer-newsletter-form input::placeholder {
    color: rgba(247, 234, 210, 0.58);
}

.footer-newsletter-form button {
    min-height: 34px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, #f1d18a, var(--gold));
    color: #21180c;
    padding: 0 20px;
    font-size: 12px;
    font-weight: 700;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 70px);
    align-items: start;
    padding: 26px clamp(20px, 5vw, 74px) 18px;
}

.footer-brand img {
    width: 150px;
    max-width: 100%;
}

.footer-brand p {
    max-width: 230px;
    margin: 10px 0 0;
    color: rgba(247, 234, 210, 0.76);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
}

.footer-brand small {
    display: block;
    margin-top: 14px;
    color: rgba(247, 234, 210, 0.5);
    font-size: 11px;
    font-weight: 500;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: clamp(18px, 4vw, 56px);
}

.footer-columns div {
    display: grid;
    align-content: start;
    gap: 6px;
}

.footer-columns a,
.footer-columns span {
    color: rgba(247, 234, 210, 0.72);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.18;
    transition: color 160ms ease, transform 160ms ease;
}

.footer-columns a:hover,
.footer-bottom a:hover {
    color: var(--gold-2);
    transform: translateX(2px);
}

.footer-contact span {
    gap: 7px;
}

.footer-contact .service-mini,
.footer-bottom .service-mini {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    border-color: rgba(244, 215, 126, 0.78);
}

.service-mini.cash::after,
.service-mini.bank::after,
.service-mini.account::after {
    position: absolute;
    content: "";
}

.service-mini.cash::after {
    inset: 4px 3px;
    border: 1.4px solid var(--gold);
    border-radius: 2px;
}

.service-mini.bank::after {
    left: 3px;
    right: 3px;
    bottom: 4px;
    height: 6px;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.service-mini.account {
    border-radius: 50%;
}

.service-mini.account::after {
    top: 3px;
    left: 4px;
    width: 6px;
    height: 6px;
    border: 1.4px solid var(--gold);
    border-radius: 50%;
    box-shadow: 0 7px 0 -2px var(--gold);
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
    border-top: 1px solid rgba(201, 155, 54, 0.2);
    background: rgba(255, 250, 241, 0.03);
    padding: 10px clamp(20px, 5vw, 74px) 12px;
}

.footer-bottom span,
.footer-bottom a {
    gap: 8px;
    color: rgba(247, 234, 210, 0.7);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(18, 16, 13, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
}

.drawer-open .drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: min(460px, 100vw);
    height: 100vh;
    overflow: auto;
    border-left: 1px solid rgba(201, 155, 54, 0.24);
    background: #fff8ed;
    box-shadow: -24px 0 70px rgba(18, 16, 13, 0.22);
    padding: 22px;
    transform: translateX(102%);
    transition: transform 0.24s ease;
}

.drawer.is-open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.drawer-header h2 {
    margin: 0;
    font-family: var(--sans);
    font-size: 42px;
}

.drawer-header button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
}

.drawer-lines {
    display: grid;
    gap: 10px;
}

.cart-line {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    padding: 10px;
}

.cart-thumb {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff1b7, #c99b36);
}

.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-line strong,
.cart-line span {
    display: block;
}

.cart-line small {
    color: var(--muted);
    font-weight: 500;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 7px;
}

.qty-control button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-weight: 600;
}

.drawer-summary {
    display: grid;
    gap: 8px;
    border-block: 1px solid var(--line);
    padding: 14px 0;
}

.drawer-summary div {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-weight: 500;
}

.drawer-summary .summary-total {
    color: var(--ink);
    font-size: 22px;
    font-weight: 600;
}

.checkout-form,
.account-form {
    display: grid;
    gap: 12px;
}

.checkout-form label,
.account-form label {
    display: grid;
    gap: 6px;
    color: var(--ink-2);
    font-size: 13px;
    font-weight: 600;
}

.checkout-form input,
.checkout-form textarea,
.account-form input {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    outline: 0;
    padding: 0 12px;
}

.checkout-form textarea {
    min-height: 78px;
    padding-block: 10px;
    resize: vertical;
}

.checkout-form fieldset {
    display: grid;
    gap: 8px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
}

.checkout-form legend {
    color: var(--gold);
    font-weight: 600;
}

.full {
    width: 100%;
}

.account-note {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    padding: 14px;
}

.account-note p {
    margin: 5px 0 0;
    color: var(--muted);
    font-weight: 500;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

@media (max-width: 1180px) {
    .top-service-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px 16px;
        min-height: 54px;
        padding-block: 6px;
    }

    .top-service-bar span,
    .top-service-bar span:nth-child(2),
    .top-service-bar span:nth-child(3),
    .top-service-bar span:last-child {
        justify-self: start;
    }

    .site-header {
        grid-template-columns: 150px 1fr auto;
        gap: 16px;
    }

    .search-form {
        grid-column: 2 / 4;
        grid-row: 2;
    }

    .main-nav {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .hero-section,
    .promo-section,
    .collection-section {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 520px;
    }

    .footer-main,
    .footer-newsletter {
        grid-template-columns: 1fr;
    }

    .footer-newsletter-form {
        justify-self: stretch;
    }

    .product-grid,
    .category-section,
    .service-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .top-service-bar {
        display: flex;
        gap: 18px;
        min-height: 34px;
        overflow-x: auto;
        padding-inline: 16px;
    }

    .site-header {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px 16px;
    }

    .brand-link img {
        width: 138px;
    }

    .main-nav,
    .header-actions {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .search-form {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
    }

    .hero-section {
        min-height: auto;
        padding: 38px 16px;
    }

    .hero-copy h1 {
        font-size: 54px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-visual {
        min-height: 380px;
        border-radius: 24px;
    }

    .floating-card {
        position: relative;
        inset: auto;
        margin: 14px;
    }

    .service-band,
    .category-section,
    .product-grid,
    .checkout-steps,
    .reviews-section,
    .footer-columns,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .service-band,
    .category-section,
    .catalogue-section,
    .promo-section,
    .checkout-section,
    .collection-section,
    .reviews-section {
        margin-inline: 16px;
    }

    .site-footer {
        margin-inline: 0;
    }

    .footer-newsletter,
    .footer-newsletter-form,
    .footer-main,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        gap: 14px;
        padding-inline: 16px;
    }

    .footer-newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-main {
        gap: 24px;
        padding-inline: 16px;
    }

    .footer-columns {
        gap: 20px;
    }

    .footer-bottom {
        gap: 10px;
        padding-inline: 16px;
    }

    .footer-bottom span,
    .footer-bottom a {
        white-space: normal;
    }

    .section-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .category-tile {
        min-height: 220px;
    }

    .category-tile strong {
        margin-top: 78px;
    }

    .promo-section {
        padding: 24px;
        border-radius: 24px;
    }

    .drawer {
        width: 100vw;
    }
}
