:root {
    --page: #fffaf2;
    --paper: #ffffff;
    --soft: #f8efe1;
    --soft-2: #f2e4cf;
    --ink: #11100e;
    --ink-2: #29231d;
    --muted: #756b61;
    --line: rgba(160, 122, 50, 0.2);
    --gold: #bd8e2e;
    --gold-2: #e4c36f;
    --gold-3: #8f6519;
    --green: #5e6749;
    --danger: #9f1239;
    --success: #167044;
    --shadow: 0 24px 70px rgba(42, 31, 17, 0.12);
    --shadow-soft: 0 12px 34px rgba(42, 31, 17, 0.09);
    --serif: "Titillium Web", Arial, sans-serif;
    --sans: "Titillium Web", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #fffdf8 0%, var(--page) 38%, #f7ecdc 100%);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    letter-spacing: 0;
}

body.drawer-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}

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

[hidden] {
    display: none !important;
}

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

.elite-header-wrap {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(189, 142, 46, 0.14);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.top-service-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    min-height: 38px;
    border-bottom: 1px solid rgba(189, 142, 46, 0.12);
    background: linear-gradient(180deg, #fbf7ef, #fffdf8);
    color: #3d352d;
    padding: 0 clamp(18px, 4vw, 70px);
    font-size: 12px;
    font-weight: 500;
}

.top-service-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    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;
    flex: 0 0 auto;
    border: 1.7px solid var(--gold);
    border-radius: 5px;
}

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

.service-mini.delivery::after,
.service-mini.payment::after,
.service-mini.support::after,
.service-mini.phone::after,
.service-mini.cash::after,
.service-mini.bank::after,
.service-mini.account::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,
.service-mini.cash::after {
    inset: 4px 3px;
    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%;
}

.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);
}

.site-header {
    display: grid;
    grid-template-columns: 178px minmax(360px, 1fr) minmax(150px, 210px) auto;
    gap: 24px;
    align-items: center;
    min-height: 112px;
    padding: 14px clamp(18px, 4vw, 70px);
    background: rgba(255, 255, 255, 0.95);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    width: 170px;
}

.brand-link img {
    display: block;
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 46px);
    color: #15120f;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
}

.main-nav a {
    position: relative;
    padding: 18px 0;
}

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

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

.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    min-height: 42px;
    border: 1px solid rgba(189, 142, 46, 0.2);
    border-radius: 999px;
    background: #fffaf2;
    padding: 0 12px 0 16px;
}

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

.search-form input::placeholder {
    color: rgba(17, 16, 14, 0.45);
}

.search-form span {
    color: var(--ink);
    font-size: 20px;
    line-height: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.mobile-menu-toggle {
    display: none;
    place-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(189, 142, 46, 0.24);
    border-radius: 999px;
    background: #fffaf2;
    color: #17110c;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.link-button,
.cart-trigger,
.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 3px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 500;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.link-button,
.cart-trigger {
    position: relative;
    min-width: 34px;
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 0;
}

.action-label {
    display: none;
}

.primary-btn {
    border: 1px solid rgba(115, 78, 19, 0.18);
    background: linear-gradient(135deg, #d6aa50, #ad7e25);
    color: #fffdf7;
    box-shadow: 0 14px 30px rgba(155, 102, 24, 0.2);
}

.secondary-btn {
    border: 1px solid rgba(189, 142, 46, 0.46);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.secondary-btn.on-dark {
    border-color: rgba(255, 248, 232, 0.28);
    background: rgba(255, 248, 232, 0.08);
    color: #fff8e8;
}

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

.cart-trigger strong {
    position: absolute;
    top: 4px;
    right: -8px;
    display: grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.header-icon {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    color: #11100e;
}

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

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

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

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

.checkout-alert {
    position: fixed;
    right: 24px;
    top: 118px;
    z-index: 70;
    display: grid;
    gap: 4px;
    max-width: min(430px, calc(100vw - 32px));
    border-radius: 8px;
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
    font-size: 14px;
    font-weight: 600;
}

.checkout-alert.success {
    border: 1px solid rgba(22, 112, 68, 0.18);
    background: #eefaf3;
    color: var(--success);
}

.checkout-alert.error {
    border: 1px solid rgba(159, 18, 57, 0.18);
    background: #fff1f4;
    color: var(--danger);
}

.cart-page .checkout-alert.cart-confirmation-card {
    position: relative;
    inset: auto;
    z-index: 2;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    width: min(980px, calc(100% - 48px));
    max-width: none;
    margin: -28px auto 32px;
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow: 0 22px 55px rgba(72, 52, 25, 0.12);
    font-size: 15px;
    overflow: hidden;
}

.cart-page .checkout-alert.cart-confirmation-card::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.85), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 240, 0.42));
    content: "";
    pointer-events: none;
}

.cart-page .checkout-alert.cart-confirmation-card > * {
    position: relative;
    z-index: 1;
}

.cart-page .cart-confirmation-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1a7a4e, #0f5d3a);
    box-shadow: 0 12px 26px rgba(20, 118, 72, 0.22);
}

.cart-page .cart-confirmation-icon::before {
    width: 20px;
    height: 10px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg) translate(-1px, -2px);
    content: "";
}

.cart-page .checkout-alert.cart-confirmation-card strong {
    display: block;
    margin-bottom: 5px;
    color: #0f6b42;
    font-family: var(--serif);
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 500;
    line-height: 1.1;
}

.cart-page .checkout-alert.cart-confirmation-card span {
    display: block;
    color: #2b241d;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.cart-page .checkout-alert.cart-confirmation-card span b {
    color: #a87526;
    font-weight: 700;
}

.cart-page .checkout-alert.cart-confirmation-card small {
    display: inline-flex;
    width: fit-content;
    margin-top: 10px;
    border: 1px solid rgba(168, 117, 38, 0.24);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.86);
    color: #7b5623;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 700;
}

.cart-page .checkout-alert.error.cart-confirmation-card {
    border-color: rgba(159, 18, 57, 0.22);
    background: #fff7f8;
}

.cart-page .checkout-alert.error.cart-confirmation-card .cart-confirmation-icon {
    background: linear-gradient(135deg, #b4234f, #7f1739);
    box-shadow: 0 12px 26px rgba(159, 18, 57, 0.20);
}

.cart-page .checkout-alert.error.cart-confirmation-card .cart-confirmation-icon::before {
    width: 20px;
    height: 3px;
    border: 0;
    background: #fff;
    transform: none;
}

.cart-page .checkout-alert.error.cart-confirmation-card strong {
    color: #8f123c;
}

.hero-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(330px, 0.72fr) minmax(560px, 1.28fr);
    align-items: stretch;
    min-height: 590px;
    border-bottom: 1px solid rgba(189, 142, 46, 0.13);
    background:
        linear-gradient(90deg, #fffdf8 0%, #fffaf2 35%, rgba(255, 250, 242, 0.78) 51%, rgba(255, 250, 242, 0) 70%),
        linear-gradient(180deg, #fffdf8 0%, #f7ecdc 100%);
    overflow: hidden;
}

.hero-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: 580px;
    padding: 46px 0 54px clamp(24px, 6vw, 86px);
}

.hero-copy h1,
.section-heading h2,
.section-title h2,
.promo-copy h2,
.collection-copy h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.03;
}

.hero-copy h1 {
    font-size: clamp(42px, 4.8vw, 66px);
}

.hero-copy h1 span {
    color: var(--gold);
}

.hero-copy h1::after {
    display: block;
    width: 78px;
    height: 2px;
    margin-top: 28px;
    background: var(--gold);
    content: "";
}

.hero-copy p {
    max-width: 440px;
    margin: 24px 0 0;
    color: #473d34;
    font-family: var(--serif);
    font-size: clamp(16px, 1.35vw, 19px);
    font-weight: 400;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 30px;
}

.hero-actions a {
    min-width: 250px;
}

.hero-visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
}

.hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
}

.hero-visual::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #fffdf8 0%, rgba(255, 250, 242, 0.76) 12%, rgba(255, 250, 242, 0.18) 36%, rgba(255, 250, 242, 0) 68%);
    content: "";
    pointer-events: none;
}

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

.service-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
    margin-inline: 0;
    border-bottom: 1px solid rgba(189, 142, 46, 0.13);
    background: rgba(255, 255, 255, 0.82);
    padding: 24px clamp(18px, 5vw, 76px);
}

.service-band article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 7px 14px;
    align-items: center;
    min-width: 0;
}

.line-icon {
    position: relative;
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(189, 142, 46, 0.34);
    border-radius: 999px;
    background: linear-gradient(135deg, #fff5d8, #d2a44b);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.line-icon::before {
    width: 16px;
    height: 16px;
    border: 2px solid #16120e;
    border-radius: 4px;
    content: "";
}

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

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

.category-section {
    padding: 28px 0 34px;
}

.section-title.centered {
    display: grid;
    place-items: center;
    margin: 0 0 24px;
    text-align: center;
}

.section-title h2,
.section-heading h2,
.promo-copy h2,
.collection-copy h2 {
    font-size: clamp(30px, 3.2vw, 46px);
}

.section-title h2::after {
    display: block;
    width: min(320px, 68vw);
    height: 1px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    content: "";
}

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

.category-tile {
    position: relative;
    display: flex;
    aspect-ratio: 1 / 1;
    min-height: 258px;
    overflow: hidden;
    border: 1px solid rgba(189, 142, 46, 0.12);
    border-radius: 4px;
    background:
        linear-gradient(180deg, rgba(17, 16, 14, 0.06) 0%, rgba(17, 16, 14, 0.54) 100%),
        linear-gradient(135deg, #fbf0df, #dac192);
    box-shadow: var(--shadow-soft);
    padding: 0;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-tile::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 16, 14, 0.68) 100%);
    content: "";
}

.category-tile::after {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 22px;
    height: 12px;
    border-right: 1.6px solid #fffaf0;
    border-bottom: 1.6px solid #fffaf0;
    content: "";
    transform: rotate(-45deg);
}

.category-tile-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
}

.tile-1 {
    background:
        linear-gradient(180deg, rgba(17, 16, 14, 0.03), rgba(17, 16, 14, 0.62)),
        linear-gradient(135deg, #d8c4a4 0%, #2c2925 100%);
}

.tile-2 {
    background:
        linear-gradient(180deg, rgba(17, 16, 14, 0.03), rgba(17, 16, 14, 0.58)),
        linear-gradient(135deg, #f5ece0 0%, #9b856b 100%);
}

.tile-3 {
    background:
        linear-gradient(180deg, rgba(17, 16, 14, 0.03), rgba(17, 16, 14, 0.56)),
        linear-gradient(135deg, #fbf4ea 0%, #c99c56 100%);
}

.tile-4 {
    background:
        linear-gradient(180deg, rgba(17, 16, 14, 0.03), rgba(17, 16, 14, 0.62)),
        linear-gradient(135deg, #1d1813 0%, #bd8e2e 100%);
}

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

.category-tile span {
    top: 18px;
    left: 18px;
    color: #f7dc94;
    font-size: 13px;
    font-weight: 500;
}

.category-tile strong {
    right: 58px;
    bottom: 25px;
    left: 18px;
    color: #fffaf0;
    font-family: var(--serif);
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 500;
    line-height: 1;
}

.category-tile small {
    right: 18px;
    bottom: 68px;
    left: 18px;
    color: rgba(255, 250, 240, 0.82);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

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

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

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

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

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

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

.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;
    align-content: start;
    border: 1px solid rgba(212, 186, 135, 0.32);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 244, 0.98)),
        #fffdf8;
    box-shadow:
        0 20px 44px rgba(42, 31, 17, 0.08),
        0 3px 14px rgba(189, 142, 46, 0.05);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(189, 142, 46, 0.42);
    box-shadow:
        0 28px 56px rgba(42, 31, 17, 0.12),
        0 10px 24px rgba(189, 142, 46, 0.08);
}

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

.favorite-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(211, 180, 121, 0.45);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.94);
    color: #7f5a1a;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(112, 81, 23, 0.1);
    transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.favorite-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(189, 142, 46, 0.6);
    color: var(--gold-3);
}

.product-media {
    position: relative;
    display: grid;
    place-items: center;
    margin: 18px 18px 0;
    height: 338px;
    overflow: hidden;
    border: 1px solid rgba(221, 201, 164, 0.48);
    border-radius: 8px;
    background: #ffffff;
}

.product-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    filter: drop-shadow(0 22px 20px rgba(17, 16, 14, 0.12));
}

.product-promo-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    border: 1px solid rgba(255, 248, 232, 0.56);
    border-radius: 999px;
    background: linear-gradient(135deg, #fff4c7, #d8ae52 62%, #a26f1d);
    color: #15110d;
    padding: 0 11px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 10px 18px rgba(20, 14, 7, 0.16);
}

.generated-product {
    position: relative;
    z-index: 1;
    display: block;
    width: 86px;
    height: 136px;
    border-radius: 18px 18px 8px 8px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 28%),
        linear-gradient(135deg, #0d0c0b 0%, #211a13 54%, #d3a74c 100%);
    box-shadow: 0 28px 42px rgba(17, 16, 14, 0.2);
}

.generated-product::before {
    position: absolute;
    top: -28px;
    left: 25px;
    width: 36px;
    height: 32px;
    border-radius: 9px 9px 4px 4px;
    background: linear-gradient(135deg, #1b1712, #d3a74c);
    content: "";
}

.generated-product::after {
    position: absolute;
    top: 52px;
    right: 16px;
    left: 16px;
    height: 31px;
    border: 1px solid rgba(228, 195, 111, 0.74);
    content: "";
}

.art-beauty .generated-product {
    width: 120px;
    height: 98px;
    border-radius: 999px 999px 28px 28px;
    background: linear-gradient(135deg, #fff6df, #d7aa54 54%, #191511);
}

.art-home .generated-product {
    width: 128px;
    height: 112px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8ebd8, #ba8b34 64%, #272019);
}

.art-fashion .generated-product {
    width: 122px;
    height: 144px;
    border-radius: 62px 62px 18px 18px;
    background: linear-gradient(135deg, #11100e, #28211a 48%, #d5ab56);
}

.product-body {
    display: grid;
    gap: 14px;
    padding: 20px 22px 24px;
}

.product-body > span {
    color: rgba(143, 101, 25, 0.92);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-body h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-body p {
    display: -webkit-box;
    min-height: 85px;
    max-height: 85px;
    overflow: hidden;
    margin: 0;
    color: rgba(92, 81, 70, 0.88);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.52;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

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

.product-bottom strong {
    color: var(--ink);
    font-size: 18px;
    font-weight: 400;
}

.price-stack {
    display: grid;
    gap: 5px;
    line-height: 1.05;
}

.price-stack del {
    color: rgba(117, 107, 97, 0.74);
    font-size: 13px;
    font-weight: 500;
}

.product-bottom em {
    border-radius: 999px;
    border: 1px solid rgba(225, 208, 175, 0.68);
    background: rgba(255, 251, 244, 0.9);
    color: #8f6d33;
    padding: 8px 14px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    white-space: nowrap;
}

.add-btn {
    min-height: 52px;
    border: 1px solid rgba(189, 142, 46, 0.34);
    border-radius: 6px;
    background: linear-gradient(135deg, #f3d996, #d2a33b);
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 248, 232, 0.45);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.add-btn:hover {
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 248, 232, 0.6),
        0 12px 20px rgba(189, 142, 46, 0.18);
    filter: saturate(1.05);
}

.product-media-link,
.product-title-link,
.product-detail-link {
    text-decoration: none;
}

.product-media-link {
    display: block;
    color: inherit;
}

.product-title-link {
    color: inherit;
}

.product-detail-link {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(218, 194, 149, 0.64);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    padding: 0 14px;
    font-size: 15px;
    font-weight: 600;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-card-actions {
    display: grid;
    grid-template-columns: minmax(126px, 1fr) minmax(160px, 1.18fr);
    gap: 12px;
    align-items: stretch;
}

.product-detail-link:hover,
.product-title-link:hover {
    color: var(--gold-3);
}

.product-detail-link:hover {
    transform: translateY(-1px);
    border-color: rgba(189, 142, 46, 0.42);
    background: rgba(255, 252, 246, 0.96);
}

.product-main {
    display: grid;
    gap: 28px;
    padding: 22px clamp(18px, 5vw, 76px) 82px;
}

.product-hero {
    display: grid;
    gap: 18px;
}

.product-breadcrumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    color: rgba(118, 103, 88, 0.84);
    font-size: 13px;
    font-weight: 500;
}

.product-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.product-breadcrumbs strong {
    color: var(--ink);
    font-weight: 600;
}

.product-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
    gap: clamp(24px, 4vw, 54px);
    align-items: start;
    border: 1px solid rgba(228, 195, 111, 0.18);
    border-radius: 4px;
    background:
        radial-gradient(circle at top left, rgba(255, 247, 228, 0.9), rgba(255, 247, 228, 0) 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(252, 245, 232, 0.94));
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 26px 58px rgba(44, 29, 7, 0.08);
}

.product-gallery-panel {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.product-gallery-thumbs {
    display: grid;
    gap: 12px;
}

.product-thumb {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1.22;
    overflow: hidden;
    border: 1px solid rgba(228, 195, 111, 0.18);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.72);
    padding: 0;
    box-shadow: 0 12px 26px rgba(44, 29, 7, 0.05);
}

.product-thumb.is-active {
    border-color: rgba(189, 142, 46, 0.52);
    box-shadow: 0 16px 32px rgba(44, 29, 7, 0.12);
}

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

.product-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(420px, 48vw, 680px);
    overflow: hidden;
    border-radius: 4px;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.58), transparent 18%),
        linear-gradient(145deg, #f9f1e4 0%, #ead4b1 56%, #cca25d 100%);
    padding: clamp(18px, 3vw, 34px);
}

.product-stage-image {
    width: min(100%, 540px);
    max-height: 610px;
    object-fit: contain;
    filter: drop-shadow(0 30px 42px rgba(66, 46, 16, 0.18));
}

.product-stage-badge,
.product-discount-tag {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: linear-gradient(135deg, #d6b069, #b47f1f);
    color: #fff9ed;
    padding: 0 13px;
    font-size: 13px;
    font-weight: 600;
}

.product-stage-badge {
    position: absolute;
    top: 18px;
    right: 18px;
}

.product-info-panel {
    display: grid;
    gap: 18px;
    align-content: start;
    padding-top: 10px;
}

.product-kicker {
    color: var(--gold-3);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-info-panel h1 {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    line-height: 0.96;
}

.product-info-panel h2 {
    margin: -6px 0 0;
    color: var(--gold-3);
    font-family: var(--serif);
    font-size: clamp(24px, 2.1vw, 34px);
    font-weight: 500;
}

.product-intro {
    max-width: 480px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

.product-price-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    padding: 2px 0 4px;
}

.product-price-row strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 500;
}

.product-price-row del {
    color: rgba(118, 103, 88, 0.78);
    font-size: 24px;
    font-weight: 500;
}

.product-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.product-meta-grid div {
    display: grid;
    gap: 5px;
    border-top: 1px solid rgba(228, 195, 111, 0.22);
    padding-top: 12px;
}

.product-meta-grid dt {
    color: rgba(118, 103, 88, 0.8);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-meta-grid dd {
    margin: 0;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
}

.product-purchase-card {
    display: grid;
    gap: 14px;
    border: 1px solid rgba(228, 195, 111, 0.16);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.72);
    padding: 18px;
}

.product-qty {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    width: min(100%, 180px);
    border: 1px solid rgba(228, 195, 111, 0.28);
    border-radius: 3px;
    overflow: hidden;
}

.product-qty button,
.product-qty input {
    min-height: 46px;
    border: 0;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.product-qty input {
    outline: 0;
    padding: 0 8px;
    font-size: 16px;
}

.product-buy-btn {
    min-height: 50px;
}

.product-tabs-section {
    display: grid;
    gap: 18px;
}

.product-tabs-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-tabs-nav button {
    min-height: 42px;
    border: 1px solid rgba(228, 195, 111, 0.22);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.7);
    color: rgba(57, 42, 18, 0.88);
    padding: 0 18px;
    font-size: 13px;
    font-weight: 600;
}

.product-tabs-nav button.is-active {
    background: linear-gradient(135deg, #f5e3b0, #c48e2f);
    color: #1b140b;
}

.product-tab-panels {
    border: 1px solid rgba(228, 195, 111, 0.16);
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(252, 245, 232, 0.94));
    padding: clamp(22px, 4vw, 36px);
}

.product-tab-panel {
    display: none;
}

.product-tab-panel.is-active {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: center;
}

.product-tab-panel h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
}

.product-tab-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
}

.product-spec-list {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.product-related-section {
    display: grid;
    gap: 18px;
}

.related-grid .product-card {
    border-color: rgba(228, 195, 111, 0.2);
}

.product-empty {
    margin-top: 18px;
}


.checkout-section {
    margin: 16px 0 0;
    background: transparent;
}

.checkout-shell {
    position: relative;
    overflow: hidden;
    min-height: clamp(420px, 52vw, 550px);
    border-top: 1px solid rgba(223, 200, 160, 0.34);
    border-bottom: 1px solid rgba(223, 200, 160, 0.34);
    background:
        url("/assets/img/home-simple-order-banner.png") center center / cover no-repeat;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 20px 48px rgba(111, 83, 38, 0.08);
}

.checkout-shell::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 24%, rgba(255, 248, 236, 0.34), transparent 22%),
        radial-gradient(circle at 86% 16%, rgba(244, 223, 186, 0.24), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(248, 238, 220, 0.22));
    content: "";
}

.checkout-shell::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.34), rgba(251, 246, 236, 0.40)),
        linear-gradient(90deg, rgba(255, 253, 249, 0.78) 0%, rgba(255, 253, 249, 0.46) 16%, rgba(255, 253, 249, 0.32) 34%, rgba(255, 253, 249, 0.32) 66%, rgba(255, 253, 249, 0.46) 84%, rgba(255, 253, 249, 0.78) 100%);
    content: "";
    pointer-events: none;
}

.checkout-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 20px;
    padding: clamp(38px, 0vw, 70px) clamp(16px, 4vw, 71px) clamp(28px, 1vw, 38px);
}

.checkout-copy {
    display: grid;
    gap: 14px;
    max-width: 720px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.checkout-kicker {
    color: #ba8a27;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.checkout-copy h2 {
    margin: 0;
    color: #18130d;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
    line-height: 0.96;
}

.checkout-copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(44, 35, 25, 0.78);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.55;
}

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

.checkout-card {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 220px;
    border: 1px solid rgba(216, 190, 145, 0.5);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 254, 250, 0.94), rgba(255, 250, 243, 0.90)),
        rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 20px 46px rgba(92, 69, 31, 0.08);
    padding: 28px 24px 24px;
}

.checkout-number {
    color: #bc8b27;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.checkout-card h3 {
    margin: 0;
    color: #17130f;
    font-family: var(--serif);
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 500;
    line-height: 1.08;
}

.checkout-card p {
    margin: 0;
    color: rgba(46, 38, 28, 0.72);
    font-size: 15px;
    line-height: 1.55;
}

.checkout-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(218, 194, 150, 0.36);
}

.checkout-benefits article {
    display: grid;
    gap: 4px;
}

.checkout-benefits strong {
    color: #302214;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-benefits span {
    color: rgba(48, 34, 20, 0.72);
    font-size: 14px;
}


.discount-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    gap: 28px;
    align-items: stretch;
    padding: clamp(34px, 6vw, 74px) clamp(18px, 4vw, 70px) 36px;
}

.discount-hero-copy {
    display: grid;
    align-content: center;
    min-height: 360px;
    border: 1px solid rgba(228, 195, 111, 0.2);
    border-radius: 4px;
    background:
        radial-gradient(circle at 82% 20%, rgba(228, 195, 111, 0.18), transparent 25%),
        linear-gradient(135deg, #17130f, #2b1f15);
    color: #fff8e8;
    padding: clamp(28px, 5vw, 62px);
    box-shadow: var(--shadow);
}

.back-link {
    width: fit-content;
    margin-bottom: 20px;
    color: #f7dc94;
    font-size: 13px;
    font-weight: 600;
}

.discount-hero h1 {
    margin: 0;
    color: #fff8e8;
    font-family: var(--serif);
    font-size: clamp(44px, 5.8vw, 78px);
    font-weight: 500;
    line-height: 0.96;
}

.discount-hero p {
    max-width: 650px;
    margin: 18px 0 0;
    color: rgba(255, 248, 232, 0.72);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
}

.discount-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.discount-stats article,
.discount-hero-offers {
    border: 1px solid rgba(255, 248, 232, 0.14);
    border-radius: 4px;
    background: rgba(255, 248, 232, 0.08);
    padding: 16px;
}

.discount-stats strong {
    display: block;
    color: #f7dc94;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.discount-stats span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 248, 232, 0.65);
    font-size: 12px;
    font-weight: 600;
}

.discount-hero-offers {
    display: grid;
    align-content: end;
    min-height: 360px;
    border-color: rgba(189, 142, 46, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 242, 0.92)),
        linear-gradient(135deg, #fff1b7, #bd8e2e);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}

.discount-hero-offers > span {
    color: var(--gold-3);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.discount-hero-offers strong {
    margin-top: 10px;
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1;
}

.discount-hero-offers p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.discount-hero-offers em {
    width: fit-content;
    margin-top: 18px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff8e8;
    padding: 8px 12px;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

.sale-products-section {
    padding: 24px clamp(18px, 4vw, 70px) 82px;
}

.sale-grid .product-card {
    border-color: rgba(189, 142, 46, 0.24);
}

.category-page main {
    display: grid;
    gap: 0;
    padding: 22px clamp(18px, 4vw, 70px) 82px;
}

.category-products-section {
    display: grid;
    gap: 22px;
}

.category-empty {
    justify-items: center;
    text-align: center;
}

.sale-card .product-media {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 241, 183, 0.42), transparent 24%),
        linear-gradient(145deg, #fffaf2 0%, #f0dcba 64%, #d1a24b 100%);
}

.sale-empty {
    display: grid;
    justify-items: start;
    gap: 12px;
    min-height: 300px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.68);
    padding: clamp(24px, 5vw, 46px);
}

.sale-empty strong {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
}

.sale-empty p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.55;
}

.site-footer {
    display: grid;
    border-top: 1px solid rgba(228, 195, 111, 0.28);
    background:
        linear-gradient(180deg, #15120f 0%, #0d0b09 58%, #070604 100%);
    color: #f7ead2;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 520px);
    gap: 22px;
    align-items: center;
    min-height: 78px;
    border-bottom: 1px solid rgba(228, 195, 111, 0.2);
    padding: 18px clamp(20px, 5vw, 76px);
}

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

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

.newsletter-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    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));
}

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

.newsletter-icon::after {
    position: absolute;
    top: 13px;
    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: 13px;
    font-weight: 600;
}

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

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

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

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

.footer-newsletter-form button {
    min-height: 42px;
    border: 0;
    border-radius: 3px;
    background: linear-gradient(135deg, #f1d18a, var(--gold));
    color: #21180c;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 600;
}

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

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

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

.footer-brand small {
    display: block;
    margin-top: 16px;
    color: rgba(247, 234, 210, 0.5);
    font-size: 12px;
    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: 8px;
}

.footer-columns a,
.footer-columns span {
    color: rgba(247, 234, 210, 0.72);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    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,
.footer-bottom span,
.footer-bottom a {
    gap: 8px;
}

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

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
    border-top: 1px solid rgba(228, 195, 111, 0.18);
    background: rgba(255, 250, 241, 0.03);
    padding: 13px clamp(20px, 5vw, 76px);
}

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

.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(17, 16, 14, 0.46);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms 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(189, 142, 46, 0.24);
    background: #fffaf2;
    box-shadow: -24px 0 70px rgba(17, 16, 14, 0.22);
    padding: 22px;
    transform: translateX(102%);
    visibility: hidden;
    transition: transform 240ms ease;
}

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

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

.drawer-header h2 {
    margin: 0;
    font-family: var(--serif);
    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-empty {
    border: 1px solid var(--line);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.7);
    padding: 18px;
    color: var(--muted);
    font-weight: 600;
}

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

.cart-thumb {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border-radius: 3px;
    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: 600;
}

.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: 500;
}

.checkout-form input,
.checkout-form textarea,
.account-form input {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 3px;
    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: 3px;
    padding: 12px;
}

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

.full {
    width: 100%;
}

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

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

.simple-page-main {
    display: grid;
    gap: 34px;
    padding: 34px clamp(18px, 5vw, 76px) 78px;
}

.simple-page-hero {
    display: grid;
    gap: 14px;
    border: 1px solid rgba(222, 205, 176, 0.58);
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.7)),
        url("/assets/img/home-simple-order-banner.png") center / cover no-repeat;
    box-shadow: 0 22px 55px rgba(72, 52, 25, 0.08);
    padding: clamp(34px, 6vw, 78px);
}

.simple-page-hero span {
    color: #a87526;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.simple-page-hero h1 {
    margin: 0;
    color: #17110c;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 500;
    line-height: 0.98;
}

.simple-page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(54, 43, 31, 0.74);
    font-size: clamp(17px, 1.3vw, 21px);
    line-height: 1.65;
}

.simple-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.simple-page-grid article {
    border: 1px solid rgba(222, 205, 176, 0.58);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 38px rgba(72, 52, 25, 0.06);
    padding: 26px;
}

.simple-page-grid strong {
    display: block;
    margin-bottom: 10px;
    color: #17110c;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
}

.simple-page-grid p {
    margin: 0;
    color: rgba(54, 43, 31, 0.72);
    line-height: 1.65;
}

.simple-page-grid a {
    color: #9a6d23;
    font-weight: 700;
}

.simple-category-page {
    margin: 0;
    padding: 0;
}

.cart-page-main {
    display: grid;
    gap: 30px;
    padding: 0 0 88px;
}

.cart-page-luxe .elite-header-wrap {
    border-bottom-color: rgba(201, 167, 104, 0.18);
    background: rgba(255, 255, 255, 0.96);
}

.cart-hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 178px;
    padding: 34px 24px 30px;
    background:
        linear-gradient(180deg, rgba(252, 248, 241, 0.78), rgba(252, 248, 241, 0.78)),
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.88), transparent 44%),
        linear-gradient(90deg, rgba(238, 227, 209, 0.72), rgba(249, 245, 238, 0.22) 24%, rgba(249, 245, 238, 0.22) 76%, rgba(231, 216, 190, 0.68)),
        url("/assets/img/home-simple-order-banner.png") center / cover no-repeat;
    border-top: 1px solid rgba(214, 192, 156, 0.24);
    border-bottom: 1px solid rgba(214, 192, 156, 0.24);
    overflow: hidden;
}

.cart-hero::before,
.cart-hero::after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(24vw, 320px);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.55;
    content: "";
}

.cart-hero::before {
    left: 0;
    background:
        linear-gradient(90deg, rgba(228, 210, 183, 0.82), rgba(228, 210, 183, 0.08)),
        radial-gradient(circle at 16% 42%, rgba(195, 165, 121, 0.16), transparent 42%),
        repeating-linear-gradient(35deg, rgba(255, 255, 255, 0.22) 0 2px, transparent 2px 18px);
}

.cart-hero::after {
    right: 0;
    background:
        linear-gradient(270deg, rgba(228, 210, 183, 0.78), rgba(228, 210, 183, 0.08)),
        radial-gradient(circle at 84% 40%, rgba(188, 151, 96, 0.18), transparent 44%);
}

.cart-hero-copy {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
    width: 100%;
}

.cart-hero h1 {
    margin: 0;
    color: #1e1711;
    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 500;
    line-height: 0.96;
    text-align: center;
}

.cart-hero-ornament {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.cart-hero-ornament span {
    width: 58px;
    height: 1px;
    background: rgba(185, 145, 83, 0.72);
}

.cart-hero-ornament i {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #cba160, #a97736);
}

.cart-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.7fr);
    gap: 36px;
    align-items: start;
    padding: 0 clamp(20px, 5vw, 74px);
    margin-top: -38px;
    position: relative;
    z-index: 2;
}

.cart-page-panel,
.cart-page-sidebar {
    display: grid;
    gap: 18px;
}

.cart-page-panel {
    align-content: start;
}

.cart-page-empty {
    display: grid;
    gap: 12px;
    justify-items: start;
    border: 1px solid rgba(222, 205, 176, 0.58);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 45px rgba(106, 82, 45, 0.05);
    padding: 28px;
}

.cart-page-empty strong {
    font-family: var(--serif);
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 500;
}

.cart-page-empty p {
    margin: 0;
    color: rgba(54, 43, 31, 0.72);
}

.cart-page-lines {
    display: grid;
    gap: 16px;
}

.cart-page-line {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    border: 1px solid rgba(222, 205, 176, 0.58);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(106, 82, 45, 0.04);
    min-height: 138px;
    padding: 12px 16px;
}

.cart-page-thumb {
    display: block;
    width: 150px;
    height: 128px;
    overflow: hidden;
    border-radius: 6px;
    background: linear-gradient(180deg, #f7f2ec, #efe5d8);
    box-shadow: none;
}

.cart-page-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.7);
}

.cart-page-copy {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 14px;
    min-width: 0;
    align-self: stretch;
}

.cart-page-product strong {
    display: block;
    color: #261c14;
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.18;
}

.cart-page-product span {
    display: block;
    margin-top: 6px;
    color: #a57a43;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 500;
}

.cart-page-product small {
    display: block;
    margin-top: 12px;
    color: rgba(61, 48, 35, 0.66);
    font-size: 13px;
    font-weight: 500;
}

.cart-page-product {
    min-width: 0;
}

.cart-page-bottom-row {
    display: grid;
    grid-template-columns: minmax(170px, 1fr) 110px 110px;
    gap: 18px;
    align-items: end;
}

.cart-page-controls {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-self: start;
}

.cart-page-unit-price,
.cart-page-line-total {
    display: grid;
    justify-items: end;
    align-content: center;
    gap: 5px;
    min-width: 100px;
}

.cart-page-unit-price strong,
.cart-page-line-total strong {
    color: #241a13;
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 500;
}

.cart-page-unit-price span,
.cart-page-line-total::after {
    color: rgba(58, 45, 31, 0.56);
    font-size: 11px;
}

.cart-page-line-total::after {
    content: "Total";
}

.cart-remove-link {
    color: #a57a43;
    font-family: var(--serif);
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    height: 26px;
    border: 1px solid rgba(222, 205, 176, 0.72);
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
}

.qty-control button {
    width: 34px;
    height: 26px;
    border: 0;
    border-right: 1px solid rgba(222, 205, 176, 0.72);
    border-radius: 0;
    background: transparent;
    color: #8d693a;
    font-size: 14px;
    font-weight: 400;
}

.qty-control button:last-child {
    border-right: 0;
    border-left: 1px solid rgba(222, 205, 176, 0.72);
}

.qty-control span {
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    color: #2c2118;
    font-family: var(--serif);
    font-size: 13px;
}

.cart-gift-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(222, 205, 176, 0.58);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    padding: 20px 24px;
}

.cart-gift-icon {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(191, 151, 89, 0.48);
    border-radius: 50%;
}

.cart-gift-icon::before,
.cart-gift-icon::after {
    position: absolute;
    background: #bc9156;
    content: "";
}

.cart-gift-icon::before {
    top: 10px;
    left: 19px;
    width: 2px;
    height: 22px;
}

.cart-gift-icon::after {
    top: 19px;
    left: 10px;
    width: 22px;
    height: 2px;
}

.cart-gift-copy strong {
    display: block;
    color: #2b2118;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
}

.cart-gift-copy p {
    margin: 4px 0 0;
    color: rgba(56, 43, 31, 0.68);
    font-size: 14px;
}

.cart-gift-action,
.cart-continue-link {
    color: #8d693a;
    font-family: var(--serif);
    font-size: 16px;
    text-decoration: none;
}

.cart-gift-action {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.cart-continue-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 2px;
}

.cart-continue-link::before {
    content: "←";
}

.cart-checkout-card {
    display: grid;
    gap: 22px;
    border: 1px solid rgba(222, 205, 176, 0.62);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 24px 55px rgba(106, 82, 45, 0.09);
    padding: 28px 30px;
}

.cart-page-summary {
    display: grid;
    gap: 12px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(214, 192, 156, 0.6);
}

.cart-panel-kicker {
    color: #6c5432;
    font-family: var(--serif);
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cart-page-summary div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: #35281d;
    font-family: var(--serif);
    font-size: 16px;
}

.cart-page-summary .summary-total {
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(214, 192, 156, 0.6);
    font-size: 20px;
}

.cart-page-summary .summary-total strong {
    color: #b28443;
    font-size: 24px;
}

.cart-form-heading {
    display: grid;
    gap: 8px;
}

.cart-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.cart-page-form label {
    display: grid;
    gap: 7px;
    color: rgba(56, 43, 31, 0.8);
    font-size: 13px;
    font-weight: 500;
}

.cart-page-form .full-row {
    grid-column: 1 / -1;
}

.cart-page-form input,
.cart-page-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(217, 199, 169, 0.72);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: #231911;
    padding: 0 14px;
    outline: 0;
}

.cart-page-form textarea {
    min-height: 96px;
    padding: 14px;
    resize: vertical;
}

.cart-page-form fieldset {
    display: grid;
    gap: 10px;
    margin: 0;
    border: 1px solid rgba(217, 199, 169, 0.68);
    border-radius: 10px;
    padding: 14px 16px 16px;
}

.cart-page-form legend {
    padding: 0 6px;
    color: #a57a43;
    font-family: var(--serif);
    font-size: 16px;
}

.cart-page-form fieldset label {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.cart-page-form fieldset input {
    min-height: auto;
}

.cart-checkout-btn {
    min-height: 54px;
    border-radius: 10px;
    font-family: var(--serif);
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-payment-brands {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 2px;
}

.cart-payment-brands span {
    display: grid;
    place-items: center;
    min-height: 42px;
    border: 1px solid rgba(217, 199, 169, 0.72);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    color: #594330;
    font-size: 12px;
    font-weight: 700;
}

.cart-suggestions {
    display: grid;
    gap: 18px;
    padding: 0 clamp(20px, 5vw, 74px);
}

.cart-bottom-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 5vw, 74px);
    border-top: 1px solid rgba(214, 192, 156, 0.34);
    background: rgba(255, 253, 249, 0.92);
    padding: 28px clamp(24px, 9vw, 150px) 26px;
}

.cart-bottom-services article {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.cart-bottom-services strong {
    display: block;
    color: #2b2118;
    font-family: var(--body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.cart-bottom-services span {
    display: block;
    margin-top: 4px;
    color: rgba(56, 43, 31, 0.58);
    font-size: 12px;
    line-height: 1.2;
}

.cart-service-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    color: #b48645;
}

.cart-service-icon::before,
.cart-service-icon::after {
    position: absolute;
    content: "";
}

.cart-service-icon.delivery::before {
    left: 2px;
    top: 12px;
    width: 20px;
    height: 11px;
    border: 1.5px solid currentColor;
    border-radius: 2px;
}

.cart-service-icon.delivery::after {
    right: 4px;
    top: 15px;
    width: 9px;
    height: 8px;
    border: 1.5px solid currentColor;
    border-left: 0;
    border-radius: 0 2px 2px 0;
    box-shadow: -18px 9px 0 -6px currentColor, 1px 9px 0 -6px currentColor;
}

.cart-service-icon.returns {
    border: 1px solid rgba(180, 134, 69, 0.28);
    border-radius: 50%;
}

.cart-service-icon.returns::before {
    inset: 9px;
    border: 1.5px solid currentColor;
    border-left-color: transparent;
    border-radius: 50%;
}

.cart-service-icon.returns::after {
    left: 10px;
    top: 9px;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    transform: rotate(-35deg);
}

.cart-service-icon.payment::before {
    left: 8px;
    top: 13px;
    width: 18px;
    height: 14px;
    border: 1.5px solid currentColor;
    border-radius: 2px;
}

.cart-service-icon.payment::after {
    left: 12px;
    top: 7px;
    width: 10px;
    height: 10px;
    border: 1.5px solid currentColor;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.cart-service-icon.support::before {
    left: 7px;
    top: 8px;
    width: 20px;
    height: 17px;
    border: 1.5px solid currentColor;
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
}

.cart-service-icon.support::after {
    left: 5px;
    top: 18px;
    width: 5px;
    height: 9px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
    box-shadow: 19px 0 0 -1.5px currentColor;
}

.cart-page-sidebar {
    position: sticky;
    top: 120px;
}

.cart-page-sidebar .cart-checkout-card {
    margin-top: -58px;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 560ms ease, transform 560ms 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: 7px 16px;
        min-height: 58px;
        padding-block: 7px;
    }

    .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: 156px 1fr auto;
        gap: 16px;
    }

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

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

    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-copy {
        padding-right: clamp(24px, 6vw, 86px);
    }

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

    .hero-visual::before {
        background: linear-gradient(180deg, #fffaf2 0%, rgba(255, 250, 242, 0.22) 35%, rgba(255, 250, 242, 0) 100%);
    }

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

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

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

    .product-detail-shell,
    .product-tab-panel.is-active {
        grid-template-columns: 1fr;
    }

    .product-gallery-panel {
        grid-template-columns: 1fr;
    }

    .product-gallery-thumbs {
        grid-auto-flow: column;
        grid-auto-columns: minmax(84px, 108px);
        overflow-x: auto;
    }

    .product-reassurance-row {
        grid-template-columns: repeat(3, 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: 36px;
        overflow-x: auto;
        padding-inline: 16px;
    }

    .site-header {
        position: relative;
        grid-template-columns: minmax(120px, 1fr) auto;
        gap: 12px;
        min-height: auto;
        padding: 12px 16px;
    }

    .brand-link {
        width: 142px;
    }

    .header-actions {
        justify-content: flex-end;
        gap: 10px;
    }

    .main-nav {
        position: absolute;
        top: calc(100% - 2px);
        right: 16px;
        left: 16px;
        z-index: 60;
        display: grid;
        gap: 0;
        border: 1px solid rgba(214, 192, 156, 0.56);
        border-radius: 14px;
        background: rgba(255, 253, 248, 0.98);
        box-shadow: 0 24px 55px rgba(72, 52, 25, 0.16);
        padding: 8px;
        font-size: 17px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .site-header.is-menu-open .main-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 13px 14px;
        border-radius: 10px;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
        background: #fff5e3;
        color: #9a6d23;
    }

    .mobile-menu-toggle {
        display: grid;
    }

    .account-button {
        display: none;
    }

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

    .hero-copy {
        padding: 42px 16px 32px;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 12vw, 54px);
    }

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

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .primary-btn,
    .hero-actions .secondary-btn {
        width: 100%;
    }

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

    .hero-visual img {
        object-position: 68% center;
    }

    .service-band,
    .category-grid,
    .product-grid,
    .checkout-steps,
    .checkout-benefits,
    .cart-page-layout,
    .footer-columns,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

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

    .service-band {
        margin-inline: 0;
        padding-inline: 16px;
    }

    .checkout-content {
        gap: 24px;
        padding-inline: 16px;
    }

    .checkout-card {
        min-height: auto;
    }

    .cart-page-main {
        padding-inline: 16px;
    }

    .simple-page-main {
        padding: 18px 16px 58px;
    }

    .simple-page-hero {
        border-radius: 14px;
        padding: 28px 18px;
    }

    .simple-page-grid {
        grid-template-columns: 1fr;
    }

    .cart-hero {
        align-items: start;
        flex-direction: column;
        padding: 22px 16px;
    }

    .cart-hero-link {
        width: 100%;
    }

    .cart-page .checkout-alert.cart-confirmation-card {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 13px;
        width: 100%;
        margin: -10px 0 22px;
        border-radius: 14px;
        padding: 18px 16px;
    }

    .cart-page .cart-confirmation-icon {
        width: 44px;
        height: 44px;
    }

    .cart-page .checkout-alert.cart-confirmation-card strong {
        font-size: 23px;
    }

    .cart-page .checkout-alert.cart-confirmation-card span {
        font-size: 14px;
    }

    .cart-page .checkout-alert.cart-confirmation-card small {
        border-radius: 10px;
        line-height: 1.35;
    }

    .cart-page-line {
        grid-template-columns: 1fr;
    }

    .cart-page-thumb {
        width: 100%;
        height: 220px;
    }

    .cart-page-line-total {
        justify-items: start;
    }

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

    .filter-pills {
        justify-content: flex-start;
    }

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

    .product-media {
        margin: 14px 14px 0;
        height: 290px;
    }

    .product-body {
        padding: 18px 18px 20px;
    }

    .product-body h3 {
        font-size: 19px;
    }

    .product-body p {
        min-height: 72px;
        max-height: 72px;
        font-size: 14px;
    }

    .product-main {
        padding-inline: 16px;
    }

    .product-detail-shell,
    .product-tab-panels {
        padding: 20px 16px;
    }

    .product-gallery-thumbs {
        grid-auto-columns: 84px;
    }

    .product-stage {
        min-height: 320px;
    }

    .product-info-panel h1 {
        font-size: 30px;
    }

    .product-info-panel h2 {
        font-size: 24px;
    }

    .product-meta-grid,
    .product-card-actions {
        grid-template-columns: 1fr;
    }

    .product-detail-link,
    .add-btn {
        min-height: 48px;
        font-size: 14px;
    }

    .product-price-row del {
        font-size: 18px;
    }

    .product-tab-panel.is-active {
        gap: 16px;
    }

    .category-page main {
        padding-inline: 16px;
    }

    .discount-hero {
        gap: 16px;
        padding: 28px 16px;
    }

    .discount-hero-copy,
    .discount-hero-offers {
        min-height: auto;
        padding: 24px;
    }

    .discount-hero h1 {
        font-size: clamp(40px, 12vw, 56px);
    }

    .discount-stats {
        grid-template-columns: 1fr;
    }

    .sale-products-section {
        padding: 18px 16px 58px;
    }

    .category-page main {
        padding: 18px 16px 58px;
    }

    .collection-media {
        min-height: 300px;
    }

    .footer-newsletter,
    .footer-main {
        grid-template-columns: 1fr;
        padding-inline: 16px;
    }

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

    .footer-main {
        gap: 26px;
    }

    .footer-columns {
        gap: 22px;
    }

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

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

    .drawer {
        width: 100vw;
    }
}
