/* Base */
:root {
    --bg: #090909;
    --surface: #111111;
    --surface-soft: #171717;
    --text: #ffffff;
    --muted: #bdbdbd;
    --line: rgba(255, 255, 255, 0.12);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    --radius: 8px;
    --nav-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 20% -10%, rgba(255, 255, 255, 0.08), transparent 30rem),
        linear-gradient(180deg, #090909 0%, #111111 45%, #090909 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background: #090909;
    opacity: 1;
    visibility: visible;
    will-change: opacity;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.loading-logo {
    position: relative;
    overflow: hidden;
    color: var(--text);
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 0.9;
    transform: scale(0.95);
    opacity: 0;
    will-change: opacity, transform;
    animation: loader-logo 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.loading-logo::after {
    content: "";
    position: absolute;
    inset: -20% -34%;
    background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.04) 43%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.04) 57%, transparent 64%);
    transform: translate3d(-115%, 0, 0);
    will-change: transform;
    animation: loader-sheen 560ms cubic-bezier(0.65, 0, 0.35, 1) both;
    pointer-events: none;
}

.loading-complete main,
.loading-complete .site-header,
.loading-complete .site-footer {
    animation: page-arrive 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.no-js .loading-screen {
    display: none;
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    border-bottom: 1px solid transparent;
    transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
    background: rgba(9, 9, 9, 0.74);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.nav {
    height: 100%;
    width: min(100% - 32px, 1440px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.logo {
    font-weight: 900;
    letter-spacing: 0.18em;
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-right {
    justify-content: flex-end;
}

.icon-button {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: inline-grid;
    place-items: center;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-button:hover,
.icon-button.active {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.1);
}

.icon-button svg,
.mobile-menu svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--text);
    color: var(--bg);
    font-size: 0.72rem;
    font-weight: 900;
}

.currency-chip {
    height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
}

.mobile-toggle,
.mobile-bag {
    display: none;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    width: min(88vw, 390px);
    padding: 22px;
    border-right: 1px solid var(--line);
    background: rgba(9, 9, 9, 0.92);
    backdrop-filter: blur(20px);
    transform: translateX(-105%);
    transition: transform 260ms ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.mobile-menu a,
.mobile-menu .button {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
}

main {
    padding-top: var(--nav-height);
}

/* Buttons */
.button {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.055);
    font-weight: 900;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.34);
}

.button.primary {
    color: var(--bg);
    background: var(--text);
    border-color: var(--text);
}

.button.secondary {
    color: var(--text);
}

.button.wide {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    display: grid;
    align-items: end;
    padding: clamp(56px, 8vw, 104px) 0 34px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(9, 9, 9, 0.98), rgba(9, 9, 9, 0.76), rgba(9, 9, 9, 0.3)),
        url("../images/hero/hero-room.jpg") center right / min(72vw, 940px) auto no-repeat;
}

.home-page::before {
    background:
        linear-gradient(180deg, rgba(9, 9, 9, 0.1), #090909 74%),
        url("../images/hero/hero-room.jpg") center top / cover no-repeat;
    opacity: 0.24;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(9, 9, 9, 0.18), #090909 100%),
        radial-gradient(circle at 74% 38%, rgba(255, 255, 255, 0.18), transparent 22rem);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 0;
    height: 30%;
    background: linear-gradient(180deg, transparent, #090909);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1320px);
    margin: 0 auto;
}

.eyebrow {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.not-found h1 {
    margin: 16px 0 18px;
    max-width: 1000px;
    font-size: clamp(4rem, 14vw, 13rem);
    line-height: 0.82;
    font-weight: 900;
    letter-spacing: 0;
}

.hero p,
.page-hero p {
    max-width: 620px;
    color: var(--muted);
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.65;
}

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

/* Sections */
.section,
.page-hero {
    padding: clamp(58px, 8vw, 112px) 0;
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(2.1rem, 5vw, 5.5rem);
    line-height: 0.95;
}

.section-head p {
    max-width: 380px;
    color: var(--muted);
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.product-card {
    contain: layout paint;
    content-visibility: auto;
    contain-intrinsic-size: 420px 560px;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    transition: transform 220ms ease, border-color 220ms ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-image {
    position: relative;
    aspect-ratio: 4 / 5;
    display: block;
    overflow: hidden;
    background: var(--surface-soft);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
}

.product-card:hover .product-image img {
    transform: scale(1.055);
}

.product-image span {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(9, 9, 9, 0.68);
    backdrop-filter: blur(10px);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-info {
    padding: 15px;
}

.product-meta,
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-meta {
    color: var(--muted);
    font-size: 0.84rem;
}

.product-info h3 {
    min-height: 2.5em;
    margin: 10px 0 8px;
    font-size: 1rem;
    line-height: 1.25;
}

.product-info p {
    min-height: 3.2em;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.price-row strong {
    font-size: 1.04rem;
}

.price-row s {
    color: #8f8f8f;
}

.card-actions {
    margin-top: 14px;
    display: flex;
    gap: 10px;
}

.card-actions .button {
    flex: 1;
}

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

.category-card {
    contain: layout paint;
    position: relative;
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: end;
    padding: 18px;
    background: linear-gradient(135deg, #202020, #090909);
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card span {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 900;
}

/* Newsletter */
.newsletter {
    margin-bottom: clamp(58px, 8vw, 112px);
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 24px;
    align-items: center;
    background: rgba(255, 255, 255, 0.045);
}

.newsletter h2 {
    margin: 10px 0 0;
    font-size: clamp(2rem, 5vw, 4.6rem);
    line-height: 0.95;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.045);
}

textarea {
    min-height: 150px;
    padding-top: 14px;
    resize: vertical;
}

/* Shop */
.shop-page::before {
    background:
        linear-gradient(180deg, rgba(9, 9, 9, 0.38), #090909 46%, #090909 100%),
        linear-gradient(90deg, rgba(9, 9, 9, 0.96), rgba(9, 9, 9, 0.72), rgba(9, 9, 9, 0.94)),
        url("../images/hero/shop-room.jpg") center top / cover no-repeat;
    opacity: 0.62;
}

.shop-page main {
    position: relative;
}

.shop-page main::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;
    height: min(68vh, 620px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 70%),
        radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.16), transparent 24rem);
    pointer-events: none;
}

.shop-page .page-hero {
    min-height: 38vh;
    display: grid;
    align-content: end;
}

.shop-shell {
    padding-bottom: clamp(58px, 8vw, 112px);
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.filters {
    position: sticky;
    top: calc(var(--nav-height) + 18px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.filters h2 {
    margin: 0 0 14px;
}

.filter-buttons {
    display: grid;
    gap: 8px;
}

.filter-buttons button {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    background: transparent;
}

.filter-buttons button.active {
    color: var(--bg);
    background: var(--text);
}

.shop-toolbar {
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 12px;
}

.product-count {
    color: var(--muted);
}

/* Product Page */
.product-layout {
    padding: clamp(58px, 8vw, 112px) 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.75fr);
    gap: clamp(18px, 4vw, 44px);
    align-items: start;
}

.gallery-main {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface-soft);
}

.gallery-main img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.gallery-thumbs {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-thumbs button {
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: transparent;
}

.gallery-thumbs button.active {
    border-color: var(--text);
}

.gallery-thumbs img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.purchase-panel,
.summary-card,
.contact-card,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: var(--shadow);
}

.purchase-panel {
    position: sticky;
    top: calc(var(--nav-height) + 18px);
}

.purchase-panel h1 {
    margin: 10px 0;
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    line-height: 0.92;
}

.purchase-panel p,
.rating,
.stock {
    color: var(--muted);
    line-height: 1.6;
}

.price-large {
    margin: 18px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.5rem;
}

.price-large s {
    color: #8f8f8f;
}

.quantity {
    display: grid;
    grid-template-columns: 44px 58px 44px;
    width: max-content;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.quantity.small {
    grid-template-columns: 38px 48px 38px;
}

.quantity button,
.quantity input {
    border: 0;
    text-align: center;
    color: var(--text);
    background: transparent;
}

.purchase-panel .button {
    margin-top: 12px;
}

.details {
    margin-top: 18px;
    border-top: 1px solid var(--line);
}

.details details {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.details p {
    margin-bottom: 0;
}

/* Cart */
.cart-layout {
    padding-bottom: clamp(58px, 8vw, 112px);
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px;
    align-items: start;
}

.cart-line {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    background: rgba(255, 255, 255, 0.035);
}

.cart-line img {
    width: 96px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}

.cart-line span {
    display: block;
    margin: 5px 0 10px;
    color: var(--muted);
}

.cart-line button[data-remove] {
    border: 0;
    color: var(--muted);
    background: transparent;
    padding: 0;
}

.summary-card {
    position: sticky;
    top: calc(var(--nav-height) + 18px);
}

.summary-card h2 {
    margin-top: 0;
}

.summary-card > div:not(.shipping-progress) {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.summary-card .total {
    font-size: 1.25rem;
}

.shipping-progress {
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.shipping-progress span {
    display: block;
    height: 100%;
    background: var(--text);
}

.empty-state {
    grid-column: 1 / -1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    text-align: center;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.035);
}

/* Contact */
.contact-layout {
    padding-bottom: clamp(58px, 8vw, 112px);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 18px;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
}

/* Policies */
.policy-layout {
    padding-bottom: clamp(58px, 8vw, 112px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.policy-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(20px, 3vw, 34px);
    background: rgba(255, 255, 255, 0.04);
}

.policy-card h2 {
    margin: 12px 0 14px;
    font-size: clamp(1.8rem, 4vw, 3.6rem);
    line-height: 0.95;
}

.policy-card p {
    color: var(--muted);
    line-height: 1.7;
}

/* Modal and Toast */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    padding: 20px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(14px);
}

.modal-panel {
    width: min(760px, 100%);
    max-height: min(720px, calc(100vh - 40px));
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.modal-head {
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-panel {
    width: min(520px, 100%);
    padding: clamp(20px, 4vw, 34px);
}

.offer-panel h2,
.offer-success h2 {
    margin: 12px 0;
    font-size: clamp(2rem, 8vw, 4.8rem);
    line-height: 0.9;
}

.offer-panel p,
.offer-panel small,
.offer-success p {
    color: var(--muted);
    line-height: 1.6;
}

.offer-form {
    margin: 22px 0 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.offer-success {
    text-align: center;
}

.search-input {
    margin-bottom: 14px;
}

.search-results {
    display: grid;
    gap: 10px;
}

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

.search-result img {
    width: 72px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}

.search-result small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 220;
    transform: translateX(-50%) translateY(18px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 16px;
    opacity: 0;
    pointer-events: none;
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(14px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 44px 0;
    color: var(--muted);
}

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

.footer-grid strong {
    color: var(--text);
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
    display: block;
    margin: 9px 0;
    color: var(--muted);
}

.not-found {
    min-height: 72vh;
    display: grid;
    place-content: center;
}

/* Motion */
@keyframes loader-logo {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    34%,
    78% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loader-sheen {
    0%,
    36% {
        transform: translate3d(-115%, 0, 0);
    }

    68%,
    100% {
        transform: translate3d(115%, 0, 0);
    }
}

@keyframes page-arrive {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].revealed {
    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;
        animation-iteration-count: 1 !important;
    }
}

@media (hover: none) {
    .button:hover,
    .icon-button:hover,
    .product-card:hover,
    .product-card:hover .product-image img {
        transform: none;
    }
}

/* Responsive */
@media (max-width: 980px) {
    .hero {
        background:
            linear-gradient(90deg, rgba(9, 9, 9, 0.98), rgba(9, 9, 9, 0.72)),
            url("../images/hero/hero-room.jpg") center top / cover no-repeat;
    }

    .nav {
        grid-template-columns: auto 1fr auto;
    }

    .nav-group {
        display: none;
    }

    .mobile-toggle,
    .mobile-bag {
        display: inline-grid;
    }

    .drawer-backdrop,
    .mobile-menu,
    .modal,
    .toast {
        backdrop-filter: none;
    }

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

    .category-grid,
    .newsletter,
    .shop-shell,
    .product-layout,
    .cart-layout,
    .contact-layout,
    .policy-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .filters,
    .purchase-panel,
    .summary-card {
        position: static;
    }
}

@media (max-width: 620px) {
    :root {
        --nav-height: 68px;
    }

    .home-page::before,
    .shop-page::before {
        display: none;
    }

    .hero {
        min-height: calc(92vh - var(--nav-height));
        padding-bottom: 28px;
        background:
            linear-gradient(180deg, rgba(9, 9, 9, 0.6), #090909 92%),
            linear-gradient(90deg, rgba(9, 9, 9, 0.92), rgba(9, 9, 9, 0.62)),
            url("../images/hero/hero-room.jpg") 58% top / auto 62vh no-repeat;
    }

    .shop-page .page-hero {
        min-height: 30vh;
    }

    .container {
        width: min(100% - 24px, 1240px);
    }

    .nav {
        width: min(100% - 18px, 1440px);
        gap: 8px;
    }

    .logo {
        font-size: 0.9rem;
        letter-spacing: 0.12em;
    }

    .icon-button {
        width: 40px;
        height: 40px;
    }

    .hero h1,
    .page-hero h1,
    .not-found h1 {
        font-size: clamp(3.4rem, 17vw, 6.4rem);
    }

    .shop-toolbar,
    .newsletter form {
        grid-template-columns: 1fr;
    }

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

    .product-info {
        padding: 8px;
    }

    .product-meta,
    .product-info p,
    .product-image span {
        display: none;
    }

    .product-info h3 {
        min-height: 2.55em;
        margin: 0 0 7px;
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 1px;
    }

    .price-row strong {
        font-size: 0.78rem;
    }

    .price-row s {
        font-size: 0.68rem;
    }

    .card-actions {
        margin-top: 8px;
        gap: 5px;
    }

    .card-actions .button {
        min-height: 34px;
        padding: 0 7px;
        font-size: 0.72rem;
    }

    .card-actions .icon-button {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 180px;
    }

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

    .cart-line {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 10px;
    }

    .cart-line img {
        width: 72px;
    }

    .cart-line > .quantity,
    .cart-line > b {
        grid-column: 2;
    }

    .search-result {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .search-result img {
        width: 56px;
    }

    .search-result b {
        grid-column: 2;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}
