:root {
    --ink: #080808;
    --charcoal: #1F2937;
    --graphite: #252525;
    --gold: #c9a227;
    --gold-soft: #f3df99;
    --lime: #cfea1d;
    --lime-dark: #71810a;
    --lime-soft: #f7fbdc;
    --white: #ffffff;
    --paper: #f7f5ef;
    --muted: #6b7280;
    --line: #E5E7EB;
    --danger: #b42318;
    --success: #157347;
    --trust-blue: #2563EB;
    --trust-blue-soft: #EFF6FF;
}

* { box-sizing: border-box; }

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.5;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

p, h1, h2, h3, strong, a, td, th {
    overflow-wrap: anywhere;
}

.announcement-banner {
    position: relative;
    z-index: 60;
    width: 100%;
    background: #101827;
    color: #ffffff;
    border-bottom: 1px solid rgba(207, 234, 29, 0.32);
}

.announcement-banner-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 34px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.025em;
}

.announcement-shipping,
.announcement-update {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.announcement-shipping {
    color: var(--lime);
    text-transform: uppercase;
}

.announcement-shipping svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.announcement-update {
    color: rgba(255,255,255,0.76);
}

.announcement-update i {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(207, 234, 29, 0.12);
}

.newsletter-open {
    overflow: hidden;
}

.newsletter-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(4, 8, 14, 0.72);
    backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.newsletter-modal.show {
    opacity: 1;
    visibility: visible;
}

.newsletter-dialog {
    position: relative;
    width: min(470px, 100%);
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(207, 234, 29, 0.32);
    border-radius: 16px;
    background:
        radial-gradient(circle at 100% 0%, rgba(207, 234, 29, 0.12), transparent 32%),
        #ffffff;
    color: #111827;
    box-shadow: 0 34px 90px rgba(0,0,0,0.34);
    transform: translateY(18px) scale(.98);
    transition: transform .25s ease;
}

.newsletter-modal.show .newsletter-dialog {
    transform: translateY(0) scale(1);
}

.age-gate {
    cursor: default;
}

.age-gate .newsletter-dialog {
    max-width: 440px;
    text-align: center;
}

.age-gate .newsletter-age {
    text-align: left;
}

.newsletter-dialog::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--lime);
}

.newsletter-accent {
    margin-bottom: 9px;
    color: var(--lime-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.newsletter-dialog h2 {
    padding-right: 34px;
    font-size: clamp(29px, 5vw, 40px);
    letter-spacing: -.025em;
}

.newsletter-dialog > p {
    margin: 12px 0 22px;
    color: #64748B;
    font-size: 15px;
    line-height: 1.6;
}

.newsletter-dialog form {
    display: grid;
    gap: 15px;
}

.newsletter-age {
    display: grid;
    grid-template-columns: 19px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 12px;
    border: 1px solid #E2E8F0;
    border-radius: 9px;
    background: #F8FAFC;
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
}

.newsletter-age input {
    width: 18px;
    min-height: 18px;
    margin: 1px 0 0;
    accent-color: var(--lime-dark);
}

.newsletter-dialog .btn {
    width: 100%;
    border-radius: 9px;
}

.newsletter-message {
    min-height: 20px;
    margin: 0;
    color: #566307;
    text-align: center;
    font-size: 13px;
    font-weight: 850;
}

.newsletter-dialog small {
    display: block;
    margin-top: 14px;
    color: #94A3B8;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 12px 30px rgba(31, 41, 55, 0.06);
    backdrop-filter: blur(14px);
}

.nav-wrap {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--charcoal);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-logo {
    width: auto;
    height: 52px;
    max-width: min(300px, 52vw);
    object-fit: contain;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 900;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.35vw, 18px);
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid #DDE3EA;
    border-radius: 9px;
    background: #ffffff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: #1F2937;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links a:hover, .nav-links a.active { color: var(--lime-dark); }

.cart-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(201,162,39,0.55);
    padding: 9px 13px;
    background: #fffdf7;
    color: var(--charcoal);
}

.cart-icon-link {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
}

.cart-icon-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-icon-link [data-cart-count] {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--lime);
    color: #172006;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    filter: drop-shadow(0 12px 22px rgba(15, 23, 42, 0.24));
    animation: whatsapp-bounce 2.6s ease-in-out infinite;
}

.whatsapp-float-label {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    background: #172006;
    color: #f7fbdc;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .2s ease, transform .2s ease;
}

.whatsapp-float-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 3px solid #ffffff;
    border-radius: 999px;
    background: #25D366;
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.14);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float-icon svg {
    width: 31px;
    height: 31px;
    fill: #ffffff;
}

.whatsapp-float:hover {
    animation-play-state: paused;
}

.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-float-icon {
    transform: scale(1.07);
    box-shadow: 0 0 0 7px rgba(207, 234, 29, 0.22), 0 16px 34px rgba(15, 23, 42, 0.24);
}

.whatsapp-float:focus-visible {
    outline: none;
}

.whatsapp-float:focus-visible .whatsapp-float-icon {
    outline: 3px solid var(--lime);
    outline-offset: 4px;
}

@keyframes whatsapp-bounce {
    0%, 72%, 100% { transform: translateY(0); }
    80% { transform: translateY(-10px); }
    86% { transform: translateY(0); }
    92% { transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float { animation: none; }
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.62) 44%, rgba(0,0,0,0.2)),
        url('../images/wallpapers/hero-home.png') center / cover no-repeat;
    color: var(--white);
}

.hero-content { max-width: 680px; padding: 84px 0; }
.eyebrow {
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 900;
}

h1, h2, h3 { line-height: 1.05; margin: 0; }
h1 { font-size: clamp(42px, 6vw, 78px); letter-spacing: 0; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 21px; }

.hero p, .section-intro {
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    max-width: 640px;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    background: var(--ink);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
}

.btn.gold { background: var(--lime); color: #172006; }
.btn.light { background: var(--white); color: var(--ink); }
.btn.ghost { border-color: rgba(255,255,255,0.35); background: transparent; }
.btn.outline { border-color: var(--lime-dark); color: var(--ink); background: transparent; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

.notice-band {
    background: var(--ink);
    color: rgba(255,255,255,0.78);
    border-top: 1px solid rgba(201,162,39,0.26);
    border-bottom: 1px solid rgba(201,162,39,0.26);
}

.notice-band .container {
    padding: 14px 0;
    font-size: 13px;
}

.section { padding: 78px 0; }
.section.dark { background: var(--ink); color: var(--white); }
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-head p { max-width: 560px; color: var(--muted); margin: 8px 0 0; }
.dark .section-head p { color: rgba(255,255,255,0.68); }

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

.feature-card, .product-card, .panel, .summary-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.dark .feature-card {
    background: #151515;
    border-color: rgba(201,162,39,0.24);
}

.feature-card { padding: 24px; }
.feature-card strong { color: var(--gold); text-transform: uppercase; font-size: 12px; letter-spacing: 0.14em; }
.feature-card p { margin-bottom: 0; color: var(--muted); }
.dark .feature-card p { color: rgba(255,255,255,0.68); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.blog-page .section-head h1 {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
}

.blog-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.blog-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #f4f1e9;
}

.blog-card div {
    padding: 22px;
}

.blog-card strong {
    display: block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-card span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.blog-card h3 {
    margin: 12px 0 10px;
    font-size: 22px;
    line-height: 1.18;
}

.blog-card p {
    margin: 0;
    color: var(--muted);
}

.blog-card a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faqs-page .section-head h1 {
    max-width: 700px;
    margin: 0 auto;
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.08;
}

.faq-accordion {
    display: grid;
    gap: 12px;
    max-width: 920px;
    margin: 34px auto 0;
}

.faq-accordion details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-accordion summary {
    display: grid;
    grid-template-columns: minmax(120px, 160px) minmax(0, 1fr) 22px;
    gap: 16px;
    align-items: center;
    padding: 20px 22px;
    color: var(--ink);
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
    list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion summary::after {
    content: '+';
    color: var(--gold);
    font-size: 24px;
    line-height: 1;
    text-align: right;
}

.faq-accordion details[open] summary::after {
    content: '-';
}

.faq-accordion summary span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.faq-accordion p {
    margin: 0;
    padding: 0 22px 22px 198px;
    color: var(--muted);
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

select, input, textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    padding: 10px 12px;
    font: inherit;
}

.filters select, .filters input { width: auto; min-width: 180px; }

.password-control {
    position: relative;
}

.password-control input {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #64748b;
    cursor: pointer;
}

.password-toggle:hover,
.password-toggle[aria-pressed="true"] {
    color: #9b7a16;
    background: #fff8df;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shop-page {
    background: var(--paper);
}

.shop-section,
.detail-page,
.blog-page,
.faqs-page,
.checkout-page,
.contact-page,
.account-section,
.cart-page,
.not-found-page {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 390px;
}

.shop-section {
    position: relative;
    isolation: isolate;
    background-image: none;
    background-color: var(--paper);
}

.shop-section::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;
    height: 500px;
    background-image:
        linear-gradient(90deg, rgba(5, 10, 20, 0.88) 0%, rgba(8, 15, 27, 0.76) 38%, rgba(8, 14, 24, 0.42) 68%, rgba(8, 13, 22, 0.26) 100%),
        linear-gradient(180deg, rgba(7, 12, 21, 0.04) 0%, rgba(7, 12, 21, 0.14) 270px, rgba(247,245,239,0.92) 455px, var(--paper) 500px),
        url('../images/wallpapers/hero-service.png');
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.detail-page {
    background-image:
        linear-gradient(180deg, rgba(5,8,14,0.58), rgba(174,174,171,0.88) 340px, var(--paper) 390px),
        url('../images/wallpapers/hero-shop.png');
}

.blog-page,
.faqs-page {
    background-image:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(247,245,239,0.86) 340px, var(--paper) 390px),
        url('../images/wallpapers/hero-info.png');
}

.checkout-page,
.contact-page,
.account-section,
.cart-page,
.not-found-page {
    background-image:
        linear-gradient(180deg, rgba(8,8,8,0.24), rgba(247,245,239,0.84) 340px, var(--paper) 390px),
        url('../images/wallpapers/hero-service.png');
}

.shop-section {
    padding-top: 72px;
}

.shop-heading {
    align-items: flex-end;
    margin-bottom: 34px;
}

.shop-heading .eyebrow,
.shop-page .catalog-bar .eyebrow {
    color: #9b7a16;
}

.shop-heading .eyebrow {
    color: var(--lime);
    text-shadow: 0 1px 12px rgba(0,0,0,0.28);
}

.shop-heading h1 {
    max-width: 720px;
    color: #F8FAFC;
    font-size: clamp(38px, 4.6vw, 64px);
    font-weight: 850;
    letter-spacing: -0.035em;
    text-shadow: 0 5px 28px rgba(0,0,0,0.32);
}

.shop-heading .section-intro {
    max-width: 620px;
    margin-top: 16px;
    color: #D7DEE8;
    font-size: 18px;
    line-height: 1.72;
    text-shadow: 0 2px 16px rgba(0,0,0,0.28);
}

.shop-layout {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: 104px;
}

.sidebar-panel {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(250,250,249,0.98));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

.sidebar-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background:
        radial-gradient(circle at top right, rgba(201,162,39,0.18), transparent 38%),
        linear-gradient(135deg, #111827, #263244);
    color: var(--white);
}

.sidebar-head-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: var(--lime);
}

.sidebar-head-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.sidebar-head span {
    display: block;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    font-weight: 900;
}

.sidebar-head strong {
    display: block;
    margin-top: 5px;
    font-size: 21px;
    line-height: 1.1;
}

.shop-sidebar .toolbar {
    display: block;
    margin: 0;
    padding: 24px;
}

.shop-sidebar .filters {
    display: grid;
    gap: 19px;
}

.shop-sidebar .filter-field,
.price-filter label {
    display: grid;
    gap: 8px;
}

.shop-sidebar .filter-field > span,
.price-filter legend,
.price-filter label > span {
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    font-weight: 900;
}

.price-filter {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.price-filter legend {
    margin-bottom: 9px;
}

.price-inputs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.price-filter label > span {
    color: #6B7280;
    font-size: 9px;
}

.search-control,
.money-input {
    position: relative;
}

.search-control svg {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 1;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    fill: none;
    stroke: #64748B;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.search-control input {
    padding-left: 42px;
}

.money-input b {
    position: absolute;
    top: 50%;
    left: 12px;
    z-index: 1;
    transform: translateY(-50%);
    color: #64748B;
    font-size: 14px;
}

.money-input input {
    padding-left: 27px;
}

.shop-sidebar select,
.shop-sidebar input {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    border-color: #CBD5E1;
    border-radius: 9px;
    background: #ffffff;
    color: #0F172A;
    box-shadow: 0 1px 2px rgba(15,23,42,0.03);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.shop-sidebar select:focus,
.shop-sidebar input:focus {
    outline: none;
    border-color: var(--lime-dark);
    box-shadow: 0 0 0 4px rgba(207, 234, 29, 0.20);
}

.filter-reset {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid #D7DEE7;
    border-radius: 9px;
    background: #F8FAFC;
    color: #334155;
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.filter-reset:hover {
    border-color: var(--lime);
    background: var(--lime-soft);
    color: #566307;
}

.filter-reset svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sidebar-note {
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 12px;
    padding: 17px 24px 20px;
    border-top: 1px solid #E5E7EB;
    background: rgba(248,250,252,0.72);
}

.sidebar-note span {
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 999px;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(207, 234, 29, 0.16);
}

.sidebar-note p {
    margin: 0;
    color: #6B7280;
    font-size: 13px;
    line-height: 1.55;
}

.sidebar-note p strong {
    display: block;
    color: #334155;
    font-size: 12px;
}

.shop-products {
    min-width: 0;
}

.catalog-bar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 18px 46px rgba(31, 41, 55, 0.07);
}

.catalog-bar h2 {
    color: #111827;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.02em;
}

.catalog-count {
    flex: 0 0 auto;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid rgba(113, 129, 10, 0.28);
    border-radius: 999px;
    background: var(--lime-soft);
    color: #566307;
    font-size: 13px;
    font-weight: 800;
}

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

.shop-page .product-card {
    border-color: #DDE3EA;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 18px 46px rgba(31, 41, 55, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shop-page .product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(207, 234, 29, 0.78);
    box-shadow: 0 26px 66px rgba(31, 41, 55, 0.13);
}

.shop-page .product-media {
    aspect-ratio: 4 / 3;
    padding: 18px;
    background: linear-gradient(180deg, #ffffff, #f4f6f8);
}

.shop-page .product-media img {
    object-fit: contain;
}

.shop-page .product-body {
    gap: 10px;
    padding: 16px;
}

.shop-page .product-body h3 {
    color: #111827;
    min-height: 36px;
    font-size: 14px;
    line-height: 1.3;
}

.shop-page .product-body .muted {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.shop-page .tag {
    width: fit-content;
    min-height: 24px;
    padding: 4px 8px;
    border-color: rgba(113, 129, 10, 0.24);
    background: var(--lime-soft);
    color: #566307;
    font-size: 11px;
}

.shop-page .product-body .btn-row {
    display: block;
    margin-top: 4px;
}

.shop-page .product-body .btn {
    width: 100%;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.shop-page .empty-state {
    grid-column: 1 / -1;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-media {
    aspect-ratio: 4 / 3;
    background: #f2f2f2;
    display: grid;
    place-items: center;
}

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

.product-body { padding: 18px; display: grid; gap: 10px; }
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fbfaf6;
    color: var(--graphite);
    font-size: 12px;
    font-weight: 800;
}

.price { font-size: 24px; font-weight: 900; color: var(--ink); }
.muted { color: var(--muted); }

.detail-layout {
    display: grid;
    grid-template-columns: minmax(420px, 1.18fr) minmax(320px, 0.92fr);
    gap: 40px;
    align-items: start;
}

.detail-content h1 {
    max-width: 560px;
    color: #111827;
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.detail-content > .price {
    margin-top: 14px;
    font-size: 26px;
}

.product-sku {
    color: rgb(198, 227, 9);
}

.product-detail-empty {
    grid-column: 1 / -1;
    padding: 72px 24px;
    text-align: center;
}

.product-detail-empty p {
    margin: 12px 0 24px;
    color: var(--muted);
}

.detail-image {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    max-height: 470px;
}

.product-gallery {
    min-width: 0;
}

.detail-image img {
    width: 100%;
    height: clamp(330px, 36vw, 470px);
    object-fit: contain;
    padding: 14px;
    background: linear-gradient(180deg, #ffffff, #F8FAFC);
}

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

.product-thumbnails.single-image {
    grid-template-columns: minmax(100px, 140px);
}

.product-thumbnail {
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-thumbnail:hover {
    transform: translateY(-2px);
    border-color: #CBD5E1;
}

.product-thumbnail.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(184, 134, 11, .14);
}

.product-thumbnail:focus-visible {
    outline: 3px solid rgba(37, 99, 235, .28);
    outline-offset: 2px;
}

.product-thumbnail img {
    display: block;
    width: 100%;
    height: 96px;
    padding: 6px;
    object-fit: contain;
    background: linear-gradient(180deg, #ffffff, #F8FAFC);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0;
}

.spec {
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.spec span { display: block; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.spec strong { display: block; margin-top: 4px; }

.purchase-panel {
    display: grid;
    grid-template-columns: minmax(150px, 190px) minmax(180px, 260px);
    gap: 14px;
    align-items: end;
    margin: 20px 0;
}

.quantity-control {
    display: grid;
    gap: 8px;
}

.quantity-control > span,
.product-taxonomy span,
.product-description span {
    display: block;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 11px;
    font-weight: 900;
}

.quantity-control > div {
    display: grid;
    grid-template-columns: 38px minmax(54px, 1fr) 38px;
    overflow: hidden;
    min-height: 44px;
    border: 1px solid #D1D5DB;
    border-radius: 7px;
    background: #ffffff;
}

.quantity-control button,
.quantity-control input {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
    font-weight: 900;
}

.quantity-control button {
    color: #111827;
    cursor: pointer;
}

.quantity-control button:hover {
    background: #FFF8DF;
}

.quantity-control input {
    border-left: 1px solid #E5E7EB;
    border-right: 1px solid #E5E7EB;
    padding: 0 6px;
}

.purchase-panel .btn-row {
    display: block;
    margin-top: 0;
}

.purchase-panel .btn {
    width: 100%;
    min-height: 44px;
    border-radius: 6px;
}

.product-taxonomy {
    display: grid;
    gap: 12px;
    margin: 22px 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.82);
}

.product-taxonomy strong {
    display: block;
    margin-top: 7px;
    color: #111827;
    font-size: 15px;
}

.product-taxonomy p {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 9px 0 0;
}

.product-taxonomy em {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 9px;
    border: 1px solid #DDE3EA;
    border-radius: 999px;
    background: #F9FAFB;
    color: #374151;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.product-description {
    margin: 22px 0 14px;
}

.product-description p {
    margin: 8px 0 0;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.7;
}

.product-description .product-seo-copy {
    padding: 12px 14px;
    border-left: 3px solid var(--lime);
    background: #F8FAFC;
    font-size: 13px;
}

.product-description ul {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.product-description li {
    position: relative;
    padding-left: 18px;
    color: #4B5563;
    font-size: 14px;
    line-height: 1.55;
}

.product-description li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #C9A227;
}

.product-description li strong {
    color: #111827;
    font-size: 14px;
}

.cart-notice {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    max-width: min(360px, calc(100vw - 32px));
    padding: 14px 18px;
    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 8px;
    background: #111827;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 22px 58px rgba(17, 24, 39, 0.24);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-notice.show {
    opacity: 1;
    transform: translateY(0);
}

.cart-page {
    background-image:
        linear-gradient(180deg, rgba(8,8,8,0.24), rgba(247,245,239,0.84) 340px, var(--paper) 390px),
        url('../images/wallpapers/hero-service.png');
}

.checkout-layout.cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 370px);
    gap: 40px;
}

.cart-main {
    display: grid;
    align-content: start;
}

.cart-main .eyebrow {
    color: var(--gold-soft);
    margin: 0 0 18px;
}

.cart-main h1 {
    max-width: 720px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 850;
    letter-spacing: -0.035em;
    text-shadow: 0 12px 34px rgba(0,0,0,0.34);
}

.cart-list { display: grid; gap: 14px; }
.cart-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.cart-item img {
    width: 92px;
    height: 76px;
    object-fit: cover;
    border-radius: 6px;
    background: #f2f2f2;
}

.cart-item h3 {
    color: #111827;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.25;
}

.cart-item .muted {
    margin: 6px 0 0;
    font-size: 13px;
}

.cart-actions {
    display: grid;
    justify-items: end;
    gap: 8px;
}

.cart-actions strong {
    color: #111827;
    font-size: 18px;
    font-weight: 800;
}

.cart-actions .btn {
    min-height: 38px;
    padding: 9px 13px;
    border-color: #D1D5DB;
    border-radius: 6px;
    color: #374151;
    font-size: 13px;
    font-weight: 750;
}

.cart-page .empty-state {
    min-height: 132px;
    display: grid;
    place-items: center;
    padding: 34px;
    color: #64748B;
    font-size: 16px;
    box-shadow: 0 18px 46px rgba(31, 41, 55, 0.06);
}

.cart-page .summary-card {
    position: sticky;
    top: 104px;
    padding: 28px;
    border-color: #DDE3EA;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 24px 64px rgba(31, 41, 55, 0.10);
}

.cart-page .summary-card h3 {
    margin-bottom: 14px;
    color: #111827;
    font-size: 24px;
    font-weight: 780;
    letter-spacing: -0.02em;
}

.cart-page .summary-row {
    padding: 16px 0;
    color: #475569;
    font-size: 15px;
}

.cart-page .summary-row strong {
    color: #0F172A;
    font-size: 15px;
    font-weight: 760;
}

.cart-page .summary-row.total {
    padding-top: 20px;
    font-size: 22px;
    font-weight: 800;
}

.cart-page .summary-row.total strong {
    font-size: 24px;
    font-weight: 820;
}

.cart-page .btn-row {
    display: grid;
    grid-template-columns: minmax(120px, 0.95fr) minmax(170px, 1.45fr);
    gap: 12px;
    margin-top: 28px;
}

.cart-page .btn-row .btn {
    min-height: 48px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 760;
}

.cart-page .btn.gold {
    background: #D2AA2C;
}

.cart-page .btn.outline {
    border-color: rgba(201, 162, 39, 0.55);
    background: #ffffff;
}

.checkout-page {
    background-image:
        linear-gradient(180deg, rgba(8,8,8,0.22), rgba(247,245,239,0.84) 340px, var(--paper) 390px),
        url('../images/wallpapers/hero-service.png');
}

.checkout-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
    min-height: 238px;
    margin-bottom: 28px;
    padding: 28px 0 46px;
}

.checkout-heading h1 {
    max-width: 760px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: -0.02em;
    text-shadow: 0 12px 34px rgba(0,0,0,0.36);
}

.checkout-heading .muted {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(255,255,255,0.84);
    font-size: 16px;
    line-height: 1.7;
}

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 18px 42px rgba(31, 41, 55, 0.08);
}

.checkout-steps span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 7px 12px 7px 8px;
    border-radius: 999px;
    color: #4B5563;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.checkout-steps strong {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #FFF7D6;
    color: #8A6A0F;
    font-size: 12px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
    gap: 28px;
    align-items: start;
}

.checkout-card,
.checkout-summary {
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(31, 41, 55, 0.08);
}

.checkout-card {
    overflow: hidden;
}

.checkout-card form {
    display: grid;
}

.checkout-auth-banner {
    padding: 14px 22px;
    background: #FFF8E5;
    border-bottom: 1px solid var(--line);
    color: #5C4A0F;
    font-size: 14px;
    line-height: 1.5;
}

.checkout-auth-banner a {
    color: #8A6A12;
    font-weight: 600;
    text-decoration: underline;
}

.checkout-section {
    padding: 28px;
    border-bottom: 1px solid var(--line);
}

.checkout-section:nth-last-of-type(2) {
    border-bottom: 0;
}

.checkout-section-head {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-bottom: 20px;
}

.checkout-section-head > span {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #111827;
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 900;
}

.checkout-section-head h2 {
    color: #111827;
    font-size: 21px;
    letter-spacing: -0.01em;
}

.checkout-section-head p {
    max-width: 640px;
    margin: 7px 0 0;
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
}

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

.form-grid.single { grid-template-columns: 1fr; }

.form-group.full { grid-column: 1 / -1; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 900;
}

.checkout-card .form-group label {
    color: #1F2937;
}

.checkout-card input,
.checkout-card textarea {
    min-height: 48px;
    border-color: #D1D5DB;
    background: #ffffff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.checkout-card input:focus,
.checkout-card textarea:focus {
    outline: none;
    border-color: rgba(201, 162, 39, 0.9);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}

.checkout-card textarea {
    resize: vertical;
}

.compliance-check {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin: 4px 0 0 !important;
    padding: 14px;
    border: 1px solid rgba(201, 162, 39, 0.38);
    border-radius: 8px;
    background: #FFFBEA;
    color: #374151;
    font-size: 13px !important;
    line-height: 1.55;
}

.compliance-check input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
    accent-color: var(--gold);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.payment-option {
    display: grid;
    grid-template-columns: 24px 44px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.payment-option:hover {
    border-color: rgba(201, 162, 39, 0.7);
    background: #FFFDF6;
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
    margin: 0;
}

.payment-option:has(input[type="radio"]:checked) {
    border-color: var(--gold);
    background: #FFFCEC;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}

.payment-option-icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    background: #111827;
    color: var(--gold-soft);
}

.payment-option-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.payment-option-body {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.payment-option-body strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
}

.payment-option-body span {
    color: #6B7280;
    font-size: 13px;
    line-height: 1.55;
}

.payment-option-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--gold);
    color: #111827;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.payment-option-crypto {
    border-color: rgba(201, 162, 39, 0.55);
    background: linear-gradient(180deg, #FFFCEC, #ffffff 70%);
}

.summary-row.summary-discount strong {
    color: var(--success);
}

.checkout-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px 28px;
    background: #F9FAFB;
    border-top: 1px solid var(--line);
}

.checkout-actions .btn {
    min-width: 220px;
    border-radius: 6px;
}

.checkout-actions .muted {
    max-width: 360px;
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.panel, .summary-card { padding: 22px; }
.checkout-summary {
    position: sticky;
    top: 104px;
    padding: 24px;
}

.summary-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.summary-header h3 {
    color: #111827;
    font-size: 23px;
}

.summary-kicker {
    padding: 5px 9px;
    border-radius: 999px;
    background: #EFF6FF;
    color: #1D4ED8;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: #4B5563;
    font-size: 14px;
}

.summary-row strong {
    color: #111827;
    text-align: right;
}

.summary-row.total {
    border-bottom: 0;
    color: #111827;
    font-size: 22px;
    font-weight: 900;
}

.summary-note {
    margin-top: 18px;
    padding: 16px;
    border-radius: 8px;
    background: #F9FAFB;
    border: 1px solid var(--line);
}

.summary-note strong {
    display: block;
    color: #111827;
    font-size: 14px;
}

.summary-note p {
    margin: 6px 0 0;
    color: #6B7280;
    font-size: 13px;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.contact-page {
    background-image:
        linear-gradient(180deg, rgba(8,8,8,0.24), rgba(247,245,239,0.84) 340px, var(--paper) 390px),
        url('../images/wallpapers/hero-service.png');
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
    gap: 34px;
    align-items: start;
}

.contact-intro {
    display: grid;
    gap: 22px;
}

.contact-intro h1 {
    max-width: 650px;
    color: #ffffff;
    font-size: clamp(34px, 4.4vw, 56px);
    letter-spacing: -0.025em;
    text-shadow: 0 12px 34px rgba(0,0,0,0.34);
}

.contact-intro .section-intro {
    max-width: 580px;
    margin: 0;
    color: rgba(255,255,255,0.84);
    font-size: 17px;
    line-height: 1.75;
}

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 8px;
}

.contact-method {
    position: relative;
    overflow: hidden;
    padding: 22px 24px 22px 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 18px 48px rgba(31, 41, 55, 0.07);
}

.contact-method::before {
    content: '';
    position: absolute;
    inset: 20px auto 20px 0;
    width: 4px;
    border-radius: 999px;
    background: var(--gold);
}

.contact-method strong,
.contact-card-head span {
    color: #9b7a16;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 900;
}

.contact-method h3 {
    margin-top: 8px;
    color: #111827;
    font-size: 18px;
    line-height: 1.2;
}

.contact-method p {
    margin: 12px 0 0;
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
}

.contact-card {
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 28px 80px rgba(31, 41, 55, 0.10);
}

.contact-card-head {
    margin-bottom: 24px;
}

.contact-card-head h2 {
    margin-top: 8px;
    color: #111827;
    font-size: clamp(26px, 3vw, 36px);
    letter-spacing: -0.02em;
}

.contact-card-head p {
    max-width: 560px;
    margin: 10px 0 0;
    color: #6B7280;
    font-size: 14px;
    line-height: 1.65;
}

.contact-card input,
.contact-card textarea {
    min-height: 48px;
    border-color: #D1D5DB;
    background: #ffffff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
    outline: none;
    border-color: rgba(201, 162, 39, 0.9);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}

.contact-card textarea {
    resize: vertical;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
}

.contact-actions .btn {
    min-width: 170px;
    border-radius: 6px;
}

.contact-actions .muted {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.contact-actions a {
    color: #1D4ED8;
    font-weight: 800;
}

.account-page {
    background: var(--paper);
}

.account-section {
    padding-top: 64px;
    background-image:
        linear-gradient(180deg, rgba(8,8,8,0.24), rgba(247,245,239,0.84) 340px, var(--paper) 390px),
        url('../images/wallpapers/hero-service.png');
}

.account-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
    gap: 48px;
    align-items: start;
}

.account-intro {
    display: grid;
    align-content: start;
    gap: 14px;
    max-width: 520px;
}

.account-intro .eyebrow,
.account-card-head span {
    color: #9b7a16;
}

.account-intro .eyebrow {
    color: var(--gold-soft);
}

.account-intro h1 {
    max-width: 500px;
    color: #ffffff;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-shadow: 0 12px 34px rgba(0,0,0,0.34);
}

.account-intro .section-intro {
    margin: 0;
    color: rgba(255,255,255,0.84);
    font-size: 15px;
    line-height: 1.65;
}

.account-status {
    min-height: 44px;
    margin-top: 10px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: #4B5563;
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 14px 34px rgba(31, 41, 55, 0.06);
}

.account-card {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,250,251,0.96));
    box-shadow: 0 30px 82px rgba(31, 41, 55, 0.12);
}

.account-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #C9A227, rgba(37, 99, 235, 0.65));
}

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

.auth-grid form {
    display: grid;
    align-content: start;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.auth-grid form + form {
    padding-left: 34px;
    border-left: 1px solid #DDE3EA;
}

.account-card-head {
    margin-bottom: 4px;
}

.account-card-head span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    font-weight: 900;
}

.account-card-head h2 {
    margin-top: 7px;
    color: #111827;
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.account-card .form-grid {
    gap: 13px;
}

.account-card .form-group label {
    margin-bottom: 6px;
    color: #111827;
    font-size: 12px;
    letter-spacing: 0.01em;
}

.account-card input {
    min-height: 44px;
    border-color: #D1D5DB;
    border-radius: 7px;
    background: #ffffff;
    font-size: 15px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.account-card input:focus {
    outline: none;
    border-color: rgba(201, 162, 39, 0.9);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.14);
}

.account-card .btn {
    width: 100%;
    min-height: 44px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 14px 28px rgba(31, 41, 55, 0.08);
}

.account-card .btn.outline {
    border-color: rgba(201, 162, 39, 0.72);
    background: #ffffff;
    color: #111827;
}

.account-card .btn.outline:hover {
    background: #FFF9EA;
}

.form-message {
    min-height: 22px;
    margin: 0;
    color: #6B7280;
    font-size: 13px;
}

.form-message.error { color: var(--danger); }
.form-message.success { color: var(--success); }

.account-dashboard {
    grid-column: 2;
}

.account-detail-list {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.account-detail-list p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #F9FAFB;
}

.account-detail-list span {
    color: #6B7280;
    font-size: 13px;
    font-weight: 800;
}

.account-detail-list strong {
    color: #111827;
    text-align: right;
}

.account-orders {
    grid-column: 1 / -1;
}

.my-order {
    padding: 16px 18px;
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.my-order:first-of-type {
    margin-top: 18px;
}

.my-order-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.my-order-head strong {
    color: #111827;
    font-size: 15px;
}

.my-order-head .muted {
    display: block;
    margin-top: 2px;
    color: #6B7280;
    font-size: 12px;
}

.my-order-status {
    padding: 4px 10px;
    border-radius: 999px;
    background: #F3F4F6;
    color: #374151;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.my-order-status.status-pending { background: #FEF3C7; color: #92400E; }
.my-order-status.status-processing { background: #DBEAFE; color: #1E40AF; }
.my-order-status.status-completed { background: #D1FAE5; color: #065F46; }
.my-order-status.status-cancelled { background: #FEE2E2; color: #991B1B; }

.my-order-items {
    list-style: none;
    margin: 8px 0 12px;
    padding: 0;
    display: grid;
    gap: 6px;
    color: #374151;
    font-size: 14px;
}

.my-order-items li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.my-order-items li span {
    color: #6B7280;
}

.my-order-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    font-size: 14px;
}

.my-order-foot strong {
    color: #111827;
    font-size: 16px;
}

.site-footer {
    background: #050505;
    color: rgba(255,255,255,0.72);
    padding: 34px 0;
    border-top: 1px solid rgba(201,162,39,0.3);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.empty-state {
    padding: 34px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
}

/* Bright luxury homepage */
.home-luxury {
    background: #F9FAFB;
    color: #1F2937;
}

.home-luxury .container,
.home-luxury .nav-wrap {
    width: min(1080px, calc(100% - 40px));
}

.home-luxury .brand,
.home-luxury .nav-links,
.home-luxury .cart-pill {
    color: #1F2937;
}

.home-luxury .brand-mark {
    background: #fff9e8;
    border-color: #C9A227;
    color: #9b7a16;
}

.home-luxury .nav-links a:hover,
.home-luxury .nav-links a.active {
    color: #9b7a16;
}

.home-luxury .cart-pill {
    background: #fffdf7;
    border-color: rgba(201, 162, 39, 0.38);
}

.luxury-hero {
    position: relative;
    min-height: clamp(720px, calc(100vh - 76px), 980px);
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(86px, 12vh, 138px) 0;
    background:
        linear-gradient(180deg, rgba(4, 8, 14, 0.30), rgba(4, 8, 14, 0.58)),
        radial-gradient(circle at 50% 38%, rgba(201, 162, 39, 0.18), transparent 30%),
        radial-gradient(circle at 72% 22%, rgba(37, 99, 235, 0.14), transparent 32%),
        url('../images/wallpapers/hero-home.png') center / cover no-repeat;
    color: #ffffff;
}

.luxury-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(4,8,14,0.58), rgba(4,8,14,0.18) 48%, rgba(4,8,14,0.58)),
        linear-gradient(180deg, rgba(4,8,14,0.04), rgba(4,8,14,0.46));
}

.luxury-hero::after {
    content: '';
    position: absolute;
    inset: auto 12% 9% 12%;
    height: 1px;
    z-index: -1;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.7), transparent);
    box-shadow: 0 0 34px rgba(201,162,39,0.28);
}

.luxury-hero-content {
    display: grid;
    justify-items: center;
    gap: 24px;
    max-width: 940px;
    text-align: center;
}

.home-luxury .eyebrow {
    color: #9b7a16;
}

.luxury-hero .eyebrow {
    color: #F3DF99;
    text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}

.luxury-hero h1 {
    max-width: 760px;
    color: #ffffff;
    font-size: clamp(36px, 4.8vw, 64px);
    letter-spacing: -0.02em;
    text-shadow: 0 16px 42px rgba(0,0,0,0.42);
}

.luxury-hero p {
    max-width: 640px;
    margin: 0;
    color: rgba(255,255,255,0.86);
    font-size: 16px;
    line-height: 1.65;
    text-shadow: 0 8px 26px rgba(0,0,0,0.38);
}

.luxury-hero .btn-row {
    justify-content: center;
    margin-top: 8px;
}

.luxury-hero .btn {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 13px;
}

.home-luxury .btn {
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(31, 41, 55, 0.08);
}

.home-luxury .btn.gold {
    background: var(--lime);
    color: #172006;
}

.home-luxury .btn.gold:hover {
    background: #bad516;
}

.home-luxury .btn.outline {
    background: #ffffff;
    border-color: #E5E7EB;
    color: #1F2937;
}

.luxury-hero .btn.outline {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.36);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.home-luxury .btn.outline:hover {
    border-color: var(--lime);
    color: var(--lime-dark);
}

.home-luxury .btn.outline.blue {
    border-color: rgba(37, 99, 235, 0.25);
    color: #1D4ED8;
}

.home-luxury .btn.outline.blue:hover {
    border-color: #2563EB;
    color: #1D4ED8;
    background: #EFF6FF;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.trust-strip span {
    padding: 9px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    background: rgba(255,255,255,0.74);
    color: #4B5563;
    font-size: 13px;
    font-weight: 800;
}

.luxury-hero .trust-strip span {
    border-color: rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
    font-size: 11px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    backdrop-filter: blur(10px);
}

.trust-strip span:nth-child(2) {
    border-color: rgba(37, 99, 235, 0.2);
    background: #EFF6FF;
    color: #1D4ED8;
}

.luxury-hero .trust-strip span:nth-child(2) {
    border-color: rgba(147, 197, 253, 0.36);
    background: rgba(37, 99, 235, 0.18);
    color: #DBEAFE;
}

.home-luxury .notice-band {
    background: #ffffff;
    color: #4B5563;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.home-luxury .notice-band .container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    font-weight: 700;
}

.home-luxury .notice-band .container::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #C9A227;
    flex: 0 0 auto;
}

.brand-intro-section {
    background: #ffffff;
    padding-top: clamp(86px, 9vw, 128px);
}

.brand-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 76px);
    align-items: start;
    max-width: 980px;
}

.brand-intro-section .eyebrow {
    position: relative;
    margin-bottom: 70px;
    color: #9b7a16;
}

.brand-intro-section .eyebrow::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 78px;
    height: 2px;
    background: #C9A227;
}

.brand-intro-grid h2,
.collection-copy-card h2,
.home-cta h2 {
    color: #1F2937;
    letter-spacing: -0.02em;
}

.brand-intro-grid h2 {
    max-width: 520px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.16;
    text-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
}

.intro-copy {
    display: grid;
    gap: 24px;
    padding-top: 48px;
    color: #1F2937;
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.78;
}

.intro-copy p {
    margin: 0;
}

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

.brand-stat {
    position: relative;
    min-height: 220px;
    display: grid;
    align-content: start;
    gap: 8px;
    overflow: hidden;
    padding: 22px 28px 20px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(31, 41, 55, 0.10);
}

.brand-stat::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--stat-accent, #C9A227);
}

.brand-stat::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 28% 16%, var(--stat-glow, rgba(201, 162, 39, 0.12)), transparent 36%);
    pointer-events: none;
}

.brand-stat > * {
    position: relative;
    z-index: 1;
}

.brand-stat.gold {
    --stat-accent: #C9A227;
    --stat-glow: rgba(201, 162, 39, 0.16);
    background: linear-gradient(135deg, #ffffff, #FFF9EA);
}

.brand-stat.green {
    --stat-accent: #4C8F3F;
    --stat-glow: rgba(76, 143, 63, 0.13);
    background: linear-gradient(135deg, #ffffff, #F6FBF4);
}

.brand-stat.blue {
    --stat-accent: #2563EB;
    --stat-glow: rgba(37, 99, 235, 0.16);
    background: linear-gradient(135deg, #ffffff, #EFF6FF);
}

.stat-icon-wrap {
    width: 58px;
    height: 58px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 8px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.72));
    box-shadow: 0 18px 40px rgba(31, 41, 55, 0.10);
}

.stat-icon-wrap svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--stat-accent, #C9A227);
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-stat strong {
    width: max-content;
    padding-bottom: 7px;
    border-bottom: 2px solid var(--stat-accent, #C9A227);
    color: var(--stat-accent, #9b7a16);
    font-size: clamp(34px, 3.2vw, 44px);
    line-height: 1;
}

.brand-stat span {
    margin-top: 4px;
    color: #111827;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.brand-stat p {
    margin: 0;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.45;
}

.brand-wall-section {
    background: #ffffff;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    padding: 70px 0;
}

.section-head.centered {
    justify-content: center;
    text-align: center;
}

.brand-wall-section .section-head {
    margin-bottom: 28px;
}

.brand-wall-section .section-head h2 {
    max-width: 920px;
    margin: 0 auto;
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.015em;
}

.brand-wall-section .section-head p {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.65;
}

.section-head.centered p {
    margin-left: auto;
    margin-right: auto;
}

.brand-wall {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(31, 41, 55, 0.06);
}

.brand-wall span,
.brand-wall a {
    min-height: 82px;
    display: grid;
    place-items: center;
    padding: 16px;
    border: 0;
    border-right: 1px solid #E5E7EB;
    border-radius: 0;
    background: #ffffff;
    color: #1F2937;
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.01em;
    box-shadow: none;
}

.brand-wall span:last-child,
.brand-wall a:last-child {
    border-right: 0;
}

.brand-wall span:nth-child(even),
.brand-wall a:nth-child(even) {
    background: #FFFCF4;
}

.brand-wall span:nth-child(3),
.brand-wall a:nth-child(3) {
    background: #F8FBFF;
}

.brand-wall span:hover,
.brand-wall a:hover {
    color: #9b7a16;
    background: #FFF8DF;
}

.seo-category-section {
    background: #ffffff;
}

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

.seo-category-grid a {
    min-height: 170px;
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 28px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff, #F8FAFC);
    box-shadow: 0 16px 42px rgba(15, 23, 42, .07);
    transition: transform .2s ease, border-color .2s ease;
}

.seo-category-grid a:hover {
    transform: translateY(-3px);
    border-color: var(--lime);
}

.seo-category-grid strong {
    color: #111827;
    font-size: 20px;
}

.seo-category-grid span {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
}

.catalog-seo-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin: 0 auto 28px;
}

.catalog-seo-links a {
    padding: 8px 12px;
    border: 1px solid #DDE3EA;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #334155;
    font-size: 12px;
    font-weight: 800;
}

.catalog-seo-links a:hover {
    border-color: var(--lime);
    background: var(--lime-soft);
    color: #566307;
}

.seo-catalog-main {
    background:
        linear-gradient(180deg, #101827 0, #172235 360px, #F7F5EF 520px);
}

.seo-breadcrumbs,
.product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748B;
    font-size: 12px;
    font-weight: 750;
}

.seo-breadcrumbs {
    margin-bottom: 26px;
    color: rgba(255,255,255,.72);
}

.product-breadcrumbs,
.product-breadcrumbs a,
.product-breadcrumbs span {
    color: #ffffff;
}

.seo-breadcrumbs a:hover,
.product-breadcrumbs a:hover {
    color: var(--lime-dark);
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, select, [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    pointer-events: auto;
}

.seo-catalog-hero {
    max-width: 880px;
    margin-bottom: 50px;
    color: #ffffff;
}

.seo-catalog-hero .eyebrow {
    color: var(--lime);
}

.seo-catalog-hero h1 {
    max-width: 760px;
    font-size: clamp(40px, 6vw, 68px);
}

.seo-catalog-hero > p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.7;
}

.seo-catalog-hero .catalog-seo-links {
    justify-content: flex-start;
    margin: 24px 0 0;
}

.seo-catalog-products {
    padding: 30px;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 26px 70px rgba(15,23,42,.12);
}

.seo-catalog-products .section-head {
    align-items: center;
}

.seo-catalog-page .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.seo-catalog-page .product-media {
    background: linear-gradient(180deg, #ffffff, #F8FAFC);
}

.seo-catalog-page .product-media img {
    object-fit: contain;
}

.product-related-links {
    margin: 22px 0;
    padding: 18px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background: #F8FAFC;
}

.product-related-links > strong {
    color: #111827;
    font-size: 14px;
}

.product-related-links p {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 0;
}

.product-related-links a {
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--lime-soft);
    color: #566307;
    font-size: 11px;
    font-weight: 800;
}

.seo-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, .7fr));
    gap: 34px;
}

.seo-footer-grid > div p {
    max-width: 440px;
    margin: 10px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.65;
}

.seo-footer-grid nav {
    display: grid;
    align-content: start;
    gap: 8px;
}

.seo-footer-grid strong {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 13px;
}

.seo-footer-grid nav a {
    color: rgba(255,255,255,.68);
    font-size: 12px;
}

.seo-footer-grid nav a:hover {
    color: var(--lime);
}

.seo-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.48);
    font-size: 11px;
}

.home-luxury .section {
    background: #F9FAFB;
}

.home-luxury .section:nth-of-type(2) {
    background: #ffffff;
}

.home-luxury .section-head {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 34px;
}

.home-luxury .section-head p {
    margin-left: auto;
    margin-right: auto;
}

.home-luxury .section-head h2 {
    color: #1F2937;
    letter-spacing: -0.02em;
    font-size: clamp(26px, 3.1vw, 42px);
}

.home-luxury .section-head p {
    color: #6B7280;
}

.home-luxury .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-content: center;
}

.home-luxury .product-card {
    background: #ffffff;
    border-color: #E5E7EB;
    box-shadow: 0 18px 46px rgba(31, 41, 55, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-luxury .product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.42);
    box-shadow: 0 24px 60px rgba(31, 41, 55, 0.12);
}

.home-luxury .product-media {
    background: linear-gradient(180deg, #ffffff, #f8f6f0);
}

.home-luxury .product-body {
    padding: 20px;
}

.home-luxury .product-body h3 {
    color: #1F2937;
    font-size: 18px;
}

.home-luxury .home-product-card .product-body {
    gap: 14px;
    padding: 18px;
}

.home-luxury .home-product-card .product-body h3 {
    min-height: 44px;
    font-size: 17px;
    line-height: 1.22;
}

.home-luxury .home-product-card .price {
    font-size: 22px;
}

.home-luxury .home-product-card .btn {
    width: 100%;
    min-height: 42px;
    box-shadow: none;
}

.home-luxury .tag {
    border-color: rgba(113, 129, 10, 0.24);
    background: var(--lime-soft);
    color: #566307;
}

.home-luxury .price {
    color: #1F2937;
}

.luxury-services {
    background:
        radial-gradient(circle at 50% 0%, rgba(201,162,39,0.08), transparent 30%),
        linear-gradient(180deg, #ffffff, #F8FAFC);
    border-top: 1px solid #E5E7EB;
}

.home-luxury .feature-card {
    position: relative;
    min-height: 220px;
    padding: 30px 30px 28px;
    background: #ffffff;
    border-color: #E5E7EB;
    box-shadow: 0 22px 54px rgba(31, 41, 55, 0.08);
    overflow: hidden;
}

.home-luxury .feature-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, #C9A227, rgba(201,162,39,0.2));
}

.home-luxury .feature-card h3 {
    color: #1F2937;
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.2;
}

.home-luxury .feature-card strong {
    color: #9b7a16;
}

.home-luxury .feature-card p {
    color: #4B5563;
    font-size: 14px;
    line-height: 1.65;
}

.home-luxury .feature-card.blue-card {
    border-color: rgba(37, 99, 235, 0.22);
    background:
        radial-gradient(circle at 82% 10%, rgba(37,99,235,0.12), transparent 28%),
        linear-gradient(180deg, #ffffff, #F8FBFF);
}

.home-luxury .feature-card.blue-card::before {
    background: linear-gradient(90deg, #2563EB, rgba(37,99,235,0.2));
}

.home-luxury .feature-card.blue-card strong {
    color: #2563EB;
}

.collection-focus-section {
    background:
        linear-gradient(180deg, #ffffff, #F9FAFB);
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.collection-focus-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.88fr);
    gap: 0;
    align-items: stretch;
    max-width: 980px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(31, 41, 55, 0.10);
}

.collection-image-card,
.collection-copy-card {
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    overflow: hidden;
}

.collection-image-card {
    display: grid;
    place-items: center;
    min-height: 480px;
    padding: clamp(24px, 4vw, 48px);
    background: linear-gradient(145deg, #ffffff, #F8F6EF);
}

.collection-image-card img {
    width: min(100%, 390px);
    height: auto;
    max-height: 430px;
    min-height: 0;
    object-fit: contain;
    object-position: center;
}

.collection-copy-card {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: clamp(28px, 4vw, 48px);
    border-left: 1px solid #E5E7EB;
}

.collection-copy-card .eyebrow {
    margin-bottom: 0;
}

.collection-copy-card h2 {
    max-width: 440px;
    font-size: clamp(28px, 3.1vw, 42px);
    line-height: 1.12;
}

.collection-copy-card p {
    margin: 0;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.72;
}

.collection-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.collection-list span {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #F9FAFB;
    color: #374151;
    font-size: 13px;
    font-weight: 800;
}

.collection-list span:nth-child(2) {
    background: #EFF6FF;
    color: #1D4ED8;
    border-color: rgba(37, 99, 235, 0.2);
}

.collection-copy-card .btn-row {
    margin-top: 14px;
}

.buying-process-section {
    background:
        linear-gradient(180deg, #F9FAFB, #ffffff);
    border-top: 1px solid #E5E7EB;
}

.buying-process-section .section-head {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.buying-process-section .section-head h2 {
    max-width: 840px;
    font-size: clamp(26px, 3.1vw, 40px);
}

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

.process-step {
    position: relative;
    min-height: 260px;
    padding: 34px 30px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(31, 41, 55, 0.07);
    overflow: hidden;
}

.process-step::after {
    content: '';
    position: absolute;
    inset: auto 26px 0 26px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.5), transparent);
}

.process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: #FFF8DF;
    color: #9b7a16;
    font-weight: 900;
}

.process-step:nth-child(2) span {
    background: #EFF6FF;
    color: #2563EB;
}

.process-step h3 {
    color: #1F2937;
    font-size: 17px;
    line-height: 1.25;
}

.process-step p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
}

.home-cta {
    padding: 86px 0;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78)),
        linear-gradient(135deg, #FFF8DF, #EFF6FF);
    border-top: 1px solid #E5E7EB;
}

.home-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 44px;
    align-items: center;
    padding: clamp(34px, 5vw, 58px);
    border: 1px solid rgba(201, 162, 39, 0.34);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.74));
    box-shadow: 0 28px 80px rgba(31, 41, 55, 0.10);
}

.home-cta h2 {
    max-width: 620px;
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.12;
}

.home-cta p:not(.eyebrow) {
    max-width: 680px;
    color: #4B5563;
    font-size: 17px;
    line-height: 1.7;
}

.home-cta .btn-row {
    justify-content: flex-end;
    margin-top: 0;
}

.home-luxury .site-footer {
    background: #ffffff;
    color: #4B5563;
    border-top: 1px solid #E5E7EB;
}

.home-luxury .site-footer strong {
    color: #1F2937;
}

.home-luxury .site-footer.seo-site-footer {
    background: #050505;
    color: rgba(255,255,255,.72);
    border-top-color: rgba(207,234,29,.25);
}

.home-luxury .site-footer.seo-site-footer strong {
    color: #ffffff;
}

@media (max-width: 900px) {
    .nav-wrap {
        position: relative;
        min-height: 68px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 10px 9px;
        padding: 10px 0;
    }
    .brand { min-width: 0; }
    .brand-logo { max-width: min(220px, 62vw); }
    .nav-toggle { display: block; }
    .header-mobile-cart {
        grid-column: 2;
        grid-row: 1;
        width: 42px;
        height: 42px;
        justify-self: end;
        background: #ffffff;
    }
    .nav-toggle {
        grid-column: 3;
        grid-row: 1;
    }
    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        right: auto;
        left: 50%;
        z-index: 70;
        width: 100vw;
        max-height: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        overflow: hidden;
        padding: 0;
        border: 0 solid #E5E7EB;
        border-radius: 0 0 12px 12px;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 22px 44px rgba(15, 23, 42, 0.18);
        backdrop-filter: blur(16px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, -8px);
        transition: max-height .28s ease, opacity .2s ease, padding .28s ease, border-width .2s ease, transform .2s ease, visibility .2s ease;
    }
    .nav-open .nav-links {
        max-height: 520px;
        padding: 10px;
        border-width: 1px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }
    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 10px 12px;
        border-radius: 7px;
        white-space: normal;
    }
    .nav-links .cart-icon-link {
        width: 44px;
        justify-self: start;
        padding: 0;
    }
    .hero { min-height: 620px; }
    .feature-grid, .product-grid, .admin-grid, .detail-layout, .checkout-layout, .contact-grid, .contact-layout, .blog-grid { grid-template-columns: 1fr; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .shop-sidebar .filters {
        grid-template-columns: minmax(0, 1.4fr) minmax(180px, .8fr) minmax(260px, 1fr) auto;
        align-items: end;
    }
    .filter-reset {
        width: auto;
        padding: 0 18px;
    }
    .shop-page .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .checkout-heading { grid-template-columns: 1fr; align-items: start; }
    .checkout-steps { width: 100%; justify-content: space-between; border-radius: 8px; }
    .checkout-steps span { flex: 1; justify-content: center; }
    .checkout-summary { position: static; }
    .cart-page .summary-card { position: static; }
    .contact-layout { gap: 26px; }
    .account-layout,
    .auth-grid { grid-template-columns: 1fr; }
    .account-layout { gap: 26px; }
    .account-intro { max-width: none; }
    .account-dashboard { grid-column: auto; }
    .auth-grid form + form { padding-left: 0; padding-top: 26px; border-left: 0; border-top: 1px solid var(--line); }
    .section-head { align-items: flex-start; flex-direction: column; }
    .home-luxury .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .brand-intro-grid,
    .collection-focus-grid,
    .home-cta-grid { grid-template-columns: 1fr; }
    .brand-stat-grid,
    .process-grid { grid-template-columns: 1fr; }
    .brand-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .brand-intro-section .eyebrow { margin-bottom: 48px; }
    .intro-copy { padding-top: 0; }
    .brand-stat { min-height: auto; }
    .collection-image-card { min-height: 380px; }
    .collection-copy-card { border-left: 0; border-top: 1px solid #E5E7EB; }
    .home-cta .btn-row { justify-content: flex-start; }
    .checkout-layout.cart-layout { grid-template-columns: 1fr; gap: 24px; }
    .purchase-panel { grid-template-columns: minmax(130px, 180px) minmax(0, 1fr); }
    .seo-category-grid { grid-template-columns: 1fr; }
    .seo-catalog-page .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .seo-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .shop-sidebar .filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .filter-search,
    .price-filter {
        grid-column: 1 / -1;
    }
    .filter-reset {
        width: 100%;
    }
    .checkout-actions,
    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .checkout-actions .btn,
    .contact-actions .btn {
        width: 100%;
        min-width: 0;
    }
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container, .nav-wrap { width: min(100% - 24px, 1180px); }
    .announcement-banner-inner {
        width: min(100% - 20px, 1180px);
        min-height: 52px;
        justify-content: center;
        flex-direction: column;
        gap: 2px;
        padding: 7px 0;
        text-align: center;
        font-size: 9px;
        line-height: 1.35;
    }
    .announcement-shipping svg {
        width: 15px;
        height: 15px;
    }
    .newsletter-modal {
        align-items: end;
        padding: 10px;
    }
    .newsletter-dialog {
        width: 100%;
        padding: 28px 20px 22px;
        border-radius: 16px 16px 10px 10px;
    }
    .newsletter-dialog h2 {
        font-size: 28px;
    }
    .newsletter-dialog > p {
        margin-bottom: 17px;
        font-size: 13px;
    }
    .hero-content { padding: 64px 0; }
    .filters, .filters select, .filters input, .btn-row .btn { width: 100%; }
    .shop-section { padding-top: 52px; }
    .shop-heading h1 { font-size: 44px; }
    .shop-heading .section-intro { font-size: 16px; }
    .sidebar-head,
    .shop-sidebar .toolbar,
    .catalog-bar { padding-left: 18px; padding-right: 18px; }
    .sidebar-note { padding-left: 18px; padding-right: 18px; }
    .shop-sidebar .filters { grid-template-columns: 1fr; }
    .filter-reset { width: 100%; }
    .catalog-bar { align-items: flex-start; flex-direction: column; }
    .catalog-bar {
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
    }
    .shop-products {
        width: 100%;
        margin-inline: auto;
    }
    .shop-page .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px;
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
    }
    .shop-page .product-card {
        min-width: 0;
        border-radius: 10px;
        box-shadow: 0 10px 28px rgba(31, 41, 55, 0.08);
    }
    .shop-page .product-card:hover {
        transform: none;
    }
    .shop-page .product-media {
        aspect-ratio: 4 / 3;
        padding: 6px;
    }
    .shop-page .product-media img {
        max-width: 86%;
        max-height: 86%;
        margin: auto;
    }
    .shop-page .product-body {
        gap: 7px;
        padding: 11px;
    }
    .shop-page .product-body h3 {
        min-height: 34px;
        margin: 0;
        font-size: 12px;
        line-height: 1.35;
    }
    .shop-page .product-body .muted {
        font-size: 11px;
        line-height: 1.35;
    }
    .shop-page .product-body .price,
    .shop-page .price {
        font-size: 17px;
    }
    .shop-page .tag {
        min-height: 21px;
        padding: 3px 6px;
        font-size: 9px;
    }
    .shop-page .product-body .btn-row {
        margin-top: 2px;
    }
    .shop-page .product-body .btn {
        min-height: 34px;
        padding: 7px 8px;
        font-size: 11px;
    }
    .checkout-page { padding-top: 52px; }
    .checkout-heading h1 { font-size: 36px; }
    .checkout-steps { align-items: stretch; flex-direction: column; padding: 10px; }
    .checkout-steps span { justify-content: flex-start; }
    .checkout-section { padding: 22px 18px; }
    .checkout-section-head { grid-template-columns: 1fr; }
    .checkout-actions { align-items: stretch; flex-direction: column; padding: 22px 18px; }
    .checkout-actions .btn { width: 100%; min-width: 0; }
    .checkout-summary { padding: 20px; }
    .faq-accordion summary { grid-template-columns: minmax(0, 1fr) 22px; gap: 8px 12px; }
    .faq-accordion summary span { grid-column: 1 / -1; }
    .faq-accordion p { padding: 0 22px 22px; }
    .contact-page { padding-top: 52px; }
    .contact-intro h1 { font-size: 32px; }
    .contact-method { padding: 20px 18px 20px 22px; }
    .contact-card { padding: 22px 18px; }
    .contact-actions { align-items: stretch; flex-direction: column; }
    .contact-actions .btn { width: 100%; min-width: 0; }
    .account-section { padding-top: 52px; }
    .account-intro h1 { font-size: 32px; }
    .account-intro .section-intro { font-size: 14px; }
    .account-card { padding: 22px 18px; }
    .account-detail-list p { align-items: flex-start; flex-direction: column; gap: 5px; }
    .account-detail-list strong { text-align: left; }
    .detail-content h1 { font-size: 32px; }
    .detail-image img { height: 360px; padding: 14px; }
    .purchase-panel { grid-template-columns: 1fr; }
    .purchase-panel .btn-row { grid-template-columns: 1fr; }
    .cart-notice { right: 12px; bottom: 12px; left: 12px; max-width: none; }
    .whatsapp-float { right: 14px; bottom: 14px; }
    .whatsapp-float-icon { width: 54px; height: 54px; }
    .whatsapp-float-label { display: none; }
    .form-grid, .spec-grid { grid-template-columns: 1fr; }
    .cart-layout { gap: 22px; }
    .cart-main h1 { font-size: 38px; margin-bottom: 20px; }
    .cart-page .summary-card { padding: 22px 18px; }
    .cart-page .btn-row { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 72px minmax(0, 1fr); }
    .cart-item img { width: 72px; height: 62px; }
    .cart-item .cart-actions { grid-column: 1 / -1; }
    .cart-actions { justify-items: stretch; }
    .luxury-hero {
        min-height: auto;
        padding: 58px 0 48px;
    }
    .luxury-hero-content {
        gap: 17px;
    }
    .luxury-hero .eyebrow {
        font-size: 10px;
        letter-spacing: 0.16em;
    }
    .luxury-hero h1 {
        max-width: 330px;
        font-size: clamp(30px, 9.5vw, 38px);
        line-height: 1.06;
    }
    .luxury-hero p {
        max-width: 330px;
        font-size: 13px;
        line-height: 1.55;
    }
    .luxury-hero .btn-row {
        width: 100%;
        gap: 9px;
        margin-top: 4px;
    }
    .luxury-hero .btn {
        min-height: 40px;
        padding: 9px 14px;
        font-size: 11px;
    }
    .luxury-hero .trust-strip {
        gap: 7px;
        margin-top: 3px;
    }
    .luxury-hero .trust-strip span {
        padding: 7px 9px;
        font-size: 9px;
    }
    .home-luxury .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px;
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
    }
    .home-luxury .product-card {
        min-width: 0;
        border-radius: 10px;
        box-shadow: 0 10px 28px rgba(31, 41, 55, 0.08);
    }
    .home-luxury .product-card:hover {
        transform: none;
    }
    .home-luxury .product-media {
        aspect-ratio: 4 / 3;
        padding: 6px;
    }
    .home-luxury .product-media img {
        max-width: 86%;
        max-height: 86%;
        margin: auto;
        object-fit: contain;
    }
    .home-luxury .home-product-card .product-body {
        gap: 7px;
        padding: 11px;
    }
    .home-luxury .home-product-card .product-body h3 {
        min-height: 34px;
        margin: 0;
        font-size: 12px;
        line-height: 1.35;
    }
    .home-luxury .home-product-card .price {
        font-size: 17px;
    }
    .home-luxury .home-product-card .btn {
        min-height: 34px;
        padding: 7px 8px;
        font-size: 11px;
    }
    .brand-wall,
    .collection-list { grid-template-columns: 1fr; }
    .collection-image-card {
        min-height: 300px;
        padding: 24px 18px;
    }
    .collection-image-card img {
        width: min(100%, 280px);
        max-height: 300px;
        min-height: 0;
    }
    .brand-logo { height: 42px; max-width: 220px; }
    .nav-links { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .hero { min-height: auto; }
    .hero-content { padding: 72px 0; }
    .hero h1 { font-size: clamp(36px, 11vw, 48px); }
    .home-luxury .section-head h2,
    .brand-wall-section .section-head h2,
    .brand-intro-grid h2,
    .collection-copy-card h2,
    .buying-process-section .section-head h2,
    .home-cta h2 {
        font-size: clamp(26px, 8vw, 32px);
        line-height: 1.15;
    }
    .home-luxury .section-head p,
    .intro-copy,
    .collection-copy-card > p,
    .home-cta p:not(.eyebrow) {
        font-size: 14px;
        line-height: 1.6;
    }
    .brand-stat span,
    .home-luxury .feature-card h3,
    .process-step h3 {
        font-size: 16px;
    }
    .brand-wall { grid-template-columns: 1fr; }
    .product-thumbnails { gap: 8px; }
    .product-thumbnail img { height: 76px; }
    .detail-image img { height: min(78vw, 330px); }
    .summary-header,
    .summary-row { align-items: flex-start; }
    .summary-row { flex-direction: column; gap: 5px; }
    .summary-row strong { text-align: left; }
    .checkout-section-head { grid-template-columns: 36px minmax(0, 1fr); }
    .checkout-section-head > span { width: 36px; height: 36px; }
    .payment-review-card {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
        padding: 19px 16px 19px 20px;
    }
    .payment-review-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .payment-review-card strong { font-size: 15px; }
    .footer-grid { flex-direction: column; }
    .home-cta-grid { padding: 26px 20px; }
    .process-step { min-height: auto; padding: 26px 22px; }
    .seo-catalog-main { padding-top: 48px; }
    .seo-catalog-hero { margin-bottom: 30px; }
    .seo-catalog-hero h1 { font-size: 36px; }
    .seo-catalog-hero > p:not(.eyebrow) { font-size: 14px; }
    .seo-catalog-products { padding: 18px 12px; }
    .seo-catalog-page .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }
    .seo-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .seo-footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 380px) {
    .container,
    .nav-wrap { width: min(100% - 18px, 1180px); }
    .brand-logo { max-width: 190px; }
    .shop-heading h1,
    .cart-main h1 { font-size: 36px; }
    .price-inputs { grid-template-columns: 1fr; }
    .purchase-panel { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 60px minmax(0, 1fr); padding: 10px; }
    .cart-item img { width: 60px; height: 54px; }
    .shop-page .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
        gap: 8px;
    }
    .shop-page .product-media {
        aspect-ratio: 4 / 3;
        max-height: 118px;
        padding: 4px;
    }
    .shop-page .product-body {
        padding: 9px;
    }
    .shop-page .product-body h3 {
        min-height: 32px;
        font-size: 11px;
    }
    .shop-page .product-body .price,
    .shop-page .price {
        font-size: 15px;
    }
    .shop-page .product-body .btn {
        min-height: 32px;
        font-size: 10px;
    }
    .home-luxury .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
        gap: 8px;
    }
    .home-luxury .product-media {
        max-height: 118px;
        padding: 4px;
    }
    .home-luxury .home-product-card .product-body {
        padding: 9px;
    }
    .home-luxury .home-product-card .product-body h3 {
        min-height: 32px;
        font-size: 11px;
    }
    .home-luxury .home-product-card .price {
        font-size: 15px;
    }
    .home-luxury .home-product-card .btn {
        min-height: 32px;
        font-size: 10px;
    }
}
