:root {
    --ink: #101114;
    --ink-2: #24272d;
    --muted: #737986;
    --line: rgba(16, 17, 20, 0.12);
    --paper: #fffaf2;
    --surface: #ffffff;
    --surface-2: #f5efe4;
    --red: #d71920;
    --red-dark: #aa1218;
    --teal: #007a78;
    --gold: #d69b2d;
    --shadow: 0 24px 70px rgba(16, 17, 20, 0.14);
    --radius: 8px;
    --ease: 0.28s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    border: 0;
    cursor: pointer;
}

img {
    display: block;
    width: 100%;
}

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

.section {
    padding: 88px 0;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: var(--surface);
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-mark {
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.18em;
}

.preloader-line {
    position: absolute;
    top: calc(50% + 52px);
    width: 210px;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
}

.preloader-line span {
    display: block;
    height: 100%;
    background: var(--red);
    animation: loadLine 1.2s ease forwards;
}

@keyframes loadLine {
    from { width: 0; }
    to { width: 100%; }
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 14px 0;
    transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 250, 242, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(16, 17, 20, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--surface);
    background: var(--red);
    border-radius: var(--radius);
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(215, 25, 32, 0.26);
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.05;
}

.brand strong {
    font-size: 1.05rem;
}

.brand small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-header:not(.scrolled) .brand strong,
.site-header:not(.scrolled) .nav-links a {
    color: var(--surface);
}

.site-header:not(.scrolled) .brand small {
    color: rgba(255, 255, 255, 0.58);
}

.site-header:not(.scrolled) .nav-links a:hover,
.site-header:not(.scrolled) .nav-links a.active {
    color: #ffc7c9;
    background: rgba(255, 255, 255, 0.12);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.nav-links a {
    padding: 10px 13px;
    border-radius: var(--radius);
    color: rgba(16, 17, 20, 0.76);
    font-size: 0.92rem;
    font-weight: 700;
    transition: background var(--ease), color var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
    background: rgba(215, 25, 32, 0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.74);
    font-weight: 800;
}

.cart-pill strong {
    display: grid;
    place-items: center;
    min-width: 24px;
    height: 24px;
    color: var(--surface);
    background: var(--teal);
    border-radius: 999px;
    font-size: 0.78rem;
}

.burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: var(--ink);
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--surface);
    transition: transform var(--ease), opacity var(--ease);
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.mobile-menu.open {
    display: grid;
    gap: 4px;
}

.mobile-menu a {
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

.mobile-menu a:hover {
    background: var(--surface-2);
    color: var(--red);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    color: var(--surface);
    background: var(--red);
    border-radius: var(--radius);
    font-weight: 900;
    transition: transform var(--ease), background var(--ease), box-shadow var(--ease);
    box-shadow: 0 14px 34px rgba(215, 25, 32, 0.23);
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--red-dark);
    box-shadow: 0 18px 44px rgba(215, 25, 32, 0.3);
}

.btn-small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.9rem;
}

.btn-wide {
    width: 100%;
}

.btn-ghost {
    color: var(--surface);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hero {
    position: relative;
    min-height: 96vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--surface);
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media {
    overflow: hidden;
}

.hero-media img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(16, 17, 20, 0.92), rgba(16, 17, 20, 0.63) 52%, rgba(16, 17, 20, 0.36)),
        linear-gradient(0deg, rgba(16, 17, 20, 0.32), transparent 36%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    align-items: center;
    gap: 58px;
    padding-top: 80px;
}

.eyebrow {
    margin-bottom: 13px;
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.hero .eyebrow {
    color: #ffb1b4;
}

.hero h1,
.section-head h2,
.delivery-copy h2,
.contact-copy h2 {
    max-width: 760px;
    font-size: clamp(2.5rem, 6vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: 0;
    font-weight: 900;
}

.hero-text {
    max-width: 610px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.brand-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 660px;
    margin-top: 22px;
}

.brand-strip span {
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 620px;
    margin-top: 42px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.hero-stats div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    font-size: 1.55rem;
    line-height: 1;
}

.hero-stats span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
}

.hero-card {
    padding: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    color: var(--ink);
}

.hero-card img {
    height: 260px;
    border-radius: var(--radius);
    object-fit: contain;
    background: #f7f7f7;
    padding: 18px;
}

.sale-label {
    position: absolute;
    margin: 14px;
    z-index: 2;
    padding: 7px 12px;
    color: var(--surface);
    background: var(--teal);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.hero-card-body {
    padding: 18px 8px 4px;
}

.hero-card-body p {
    color: var(--muted);
    font-weight: 700;
}

.hero-card-body strong {
    display: block;
    margin: 6px 0 16px;
    font-size: 1.5rem;
}

.section-head {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-head h2,
.delivery-copy h2,
.contact-copy h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-head p:not(.eyebrow),
.delivery-copy p,
.contact-copy p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 1.03rem;
}

.catalog {
    background: var(--paper);
}

.shop-tools {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 16px;
    align-items: end;
    margin-bottom: 26px;
}

.search-box {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.search-box input {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--ease), box-shadow var(--ease);
}

.search-box input:focus {
    border-color: rgba(215, 25, 32, 0.55);
    box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.1);
}

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

.catalog-empty {
    display: none;
    margin-bottom: 22px;
    padding: 14px 16px;
    color: var(--red);
    background: rgba(215, 25, 32, 0.08);
    border-radius: var(--radius);
    font-weight: 800;
}

.catalog-empty.show {
    display: block;
}

.order-limits {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 36px rgba(16, 17, 20, 0.06);
}

.order-limits .eyebrow {
    margin-bottom: 6px;
}

.order-limits strong {
    display: block;
    line-height: 1.25;
}

.order-total {
    min-width: 190px;
    padding: 14px 16px;
    color: var(--surface);
    background: var(--ink);
    border-radius: var(--radius);
    text-align: right;
}

.order-total span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.order-total strong {
    margin-top: 4px;
    font-size: 1.55rem;
}

.cart-preview {
    margin-bottom: 26px;
    padding: 16px;
    background: rgba(0, 122, 120, 0.08);
    border: 1px solid rgba(0, 122, 120, 0.18);
    border-radius: var(--radius);
}

.cart-preview p {
    color: var(--muted);
    font-weight: 700;
}

.cart-preview ul {
    display: grid;
    gap: 8px;
    margin-top: 10px;
    list-style: none;
}

.cart-preview li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: var(--surface);
    border-radius: var(--radius);
    font-weight: 800;
}

.filter-btn {
    padding: 10px 16px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 900;
    transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--surface);
    background: var(--ink);
    border-color: var(--ink);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 36px rgba(16, 17, 20, 0.06);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(215, 25, 32, 0.28);
    box-shadow: var(--shadow);
}

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

.product-image {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f3f5f7 100%);
}

.product-image img {
    height: 100%;
    object-fit: contain;
    padding: 22px;
    transition: transform 0.5s ease;
}

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

.product-image span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 11px;
    color: var(--surface);
    background: var(--red);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-body {
    padding: 20px;
}

.product-type {
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-body h3 {
    margin-top: 7px;
    font-size: 1.18rem;
    line-height: 1.2;
}

.product-desc {
    min-height: 50px;
    margin-top: 9px;
    color: var(--muted);
    font-size: 0.92rem;
}

.product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0;
}

.product-row strong {
    font-size: 1.22rem;
}

.product-row span {
    padding: 5px 9px;
    color: var(--ink);
    background: var(--surface-2);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 112px;
    gap: 9px;
}

.product-button,
.details-button {
    width: 100%;
    min-height: 44px;
    color: var(--surface);
    background: var(--ink);
    border-radius: var(--radius);
    font-weight: 900;
    transition: background var(--ease), transform var(--ease);
}

.product-button:hover {
    background: var(--red);
    transform: translateY(-1px);
}

.details-button {
    color: var(--ink);
    background: var(--surface-2);
}

.details-button:hover {
    color: var(--surface);
    background: var(--teal);
    transform: translateY(-1px);
}

.delivery {
    background: var(--surface);
}

.delivery-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.benefit-card {
    min-height: 180px;
    padding: 22px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.benefit-card span {
    color: var(--red);
    font-weight: 900;
}

.benefit-card h3 {
    margin-top: 18px;
    font-size: 1.1rem;
}

.benefit-card p {
    margin-top: 8px;
    color: var(--muted);
}

.sets {
    background: var(--ink);
    color: var(--surface);
}

.sets .section-head p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.65);
}

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

.set-card {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    transition: transform var(--ease), background var(--ease);
}

.set-card.featured {
    background: var(--surface);
    color: var(--ink);
}

.set-card:hover {
    transform: translateY(-5px);
}

.set-card span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 10px;
    color: var(--surface);
    background: var(--red);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
}

.set-card h3 {
    font-size: 1.5rem;
}

.set-card p {
    margin-top: 10px;
    color: currentColor;
    opacity: 0.72;
}

.set-card strong {
    display: block;
    margin-top: 28px;
    font-size: 1.35rem;
}

.set-card a {
    display: inline-flex;
    margin-top: 20px;
    color: var(--red);
    font-weight: 900;
}

.reviews {
    background: var(--surface-2);
}

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

.review-card {
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.review-card p {
    color: var(--ink-2);
}

.review-card strong {
    display: block;
    margin-top: 20px;
    color: var(--red);
}

.contact {
    background: var(--paper);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.contact-list a,
.contact-list span {
    display: flex;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 800;
}

.order-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.order-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 900;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--ease), box-shadow var(--ease);
}

.order-form textarea {
    resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    border-color: rgba(215, 25, 32, 0.55);
    box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.1);
}

.form-success {
    display: none;
    padding: 12px;
    color: #176a45;
    background: rgba(0, 122, 120, 0.1);
    border-radius: var(--radius);
    font-weight: 800;
}

.form-success.show {
    display: block;
}

.form-warning {
    padding: 12px;
    color: var(--red);
    background: rgba(215, 25, 32, 0.08);
    border-radius: var(--radius);
    font-weight: 800;
}

.form-warning.ready {
    color: #176a45;
    background: rgba(0, 122, 120, 0.1);
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 1800;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal.open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 17, 20, 0.72);
    backdrop-filter: blur(10px);
}

.modal-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    width: min(860px, 100%);
    max-height: min(720px, calc(100vh - 40px));
    overflow: hidden;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: modalIn 0.22s ease both;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-panel img {
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    background: var(--surface-2);
}

.modal-content {
    padding: 34px;
}

.modal-content h3 {
    margin-bottom: 10px;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.05;
}

.modal-content strong {
    display: block;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 1.6rem;
}

.modal-content p:not(.eyebrow) {
    margin-bottom: 24px;
    color: var(--muted);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius);
    font-size: 1.6rem;
    line-height: 1;
}

.footer {
    padding: 48px 0;
    color: rgba(255, 255, 255, 0.75);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
    gap: 32px;
}

.footer .brand {
    color: var(--surface);
}

.footer p {
    max-width: 360px;
    margin-top: 16px;
}

.footer h4 {
    margin-bottom: 12px;
    color: var(--surface);
}

.footer a:not(.brand) {
    display: block;
    margin-top: 8px;
    transition: color var(--ease);
}

.footer a:hover {
    color: var(--surface);
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--surface);
    background: var(--red);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(215, 25, 32, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
    transform: translateY(26px);
}

.reveal-left {
    transform: translateX(-26px);
}

.reveal-right {
    transform: translateX(26px);
}

.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 980px) {
    .nav-links,
    .nav-actions .btn-small,
    .cart-pill span {
        display: none;
    }

    .burger {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 64px;
    }

    .hero-grid,
    .delivery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 520px;
    }

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

    .order-limits {
        align-items: stretch;
        flex-direction: column;
    }

    .order-total {
        text-align: left;
    }

    .shop-tools {
        grid-template-columns: 1fr;
    }

    .modal-panel {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .modal-panel img {
        min-height: 260px;
        max-height: 320px;
    }

    .reveal-left,
    .reveal-right {
        transform: translateY(26px);
    }

    .revealed {
        transform: translate(0, 0);
    }
}

@media (max-width: 680px) {
    .section {
        padding: 64px 0;
    }

    .brand small {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 13vw, 4rem);
    }

    .hero-stats,
    .product-grid,
    .benefit-grid,
    .set-grid,
    .review-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats div {
        padding: 15px;
    }

    .product-image {
        height: 220px;
    }

    .order-form {
        padding: 20px;
    }

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

    .modal-content {
        padding: 24px;
    }
}

@media (max-width: 980px) {
    .hero-media img {
        transform: none;
    }

    .reveal-left,
    .reveal-right {
        transform: translateY(26px);
    }

    .revealed {
        transform: translate(0, 0);
    }
}
