:root {
  --red: #df1824;
  --red-deep: #b90d18;
  --red-soft: #fff1f2;
  --ink: #151515;
  --muted: #6d6d6d;
  --line: rgba(21, 21, 21, 0.11);
  --paper: #fffdfb;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(22, 16, 17, 0.08);
  --shadow-lg: 0 28px 80px rgba(22, 16, 17, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 4%, rgba(223, 24, 36, 0.07), transparent 24rem),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(223,24,36,.18); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.container { width: var(--container); margin-inline: auto; }
.section { padding: 108px 0; position: relative; }
.section--tight { padding: 80px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--red-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); border-radius: 99px; }
.section-title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 780;
}
.section-title span { color: var(--red); }
.section-copy { max-width: 660px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 48px; }

.topbar {
  position: relative;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  font-size: .82rem;
}
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar__inner span { opacity: .86; }
.topbar__inner a { display: inline-flex; gap: 8px; align-items: center; font-weight: 700; }

.header {
  position: sticky;
  top: 0;
  z-index: 45;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(0,0,0,.045); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; justify-content: center; min-width: 164px; height: 52px; padding: 10px 16px; border-radius: 14px; background: var(--red); box-shadow: 0 10px 24px rgba(223,24,36,.22); }
.brand img { width: 140px; height: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: .92rem; font-weight: 700; position: relative; }
.nav__links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: .25s ease; }
.nav__links a:hover::after, .nav__links a.active::after { right: 0; }
.menu-btn { display: none; width: 46px; height: 46px; border: 0; background: var(--ink); color: #fff; border-radius: 50%; align-items: center; justify-content: center; cursor: pointer; }
.menu-btn svg { width: 22px; }

.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: .91rem;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 13px 30px rgba(223,24,36,.24); }
.btn--primary:hover { background: var(--red-deep); box-shadow: 0 17px 34px rgba(223,24,36,.3); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--ghost { border-color: var(--line); background: rgba(255,255,255,.76); }
.btn--ghost:hover { border-color: rgba(223,24,36,.35); color: var(--red); }
.btn--white { background: #fff; color: var(--red-deep); }

.hero { min-height: calc(100vh - 114px); display: flex; align-items: center; padding: 54px 0 70px; position: relative; overflow: hidden; }
.hero::before {
  content: "MJ";
  position: absolute;
  right: -3vw;
  top: 1vw;
  font-size: min(34vw, 440px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.09em;
  color: rgba(223,24,36,.035);
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(35px, 7vw, 92px); }
.hero__content { position: relative; z-index: 2; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid rgba(223,24,36,.16); background: var(--red-soft); color: var(--red-deep); border-radius: 999px; font-size: .78rem; font-weight: 800; }
.hero__badge i { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 6px rgba(223,24,36,.09); }
.hero h1 { margin: 24px 0 24px; font-size: clamp(3.2rem, 7vw, 7.25rem); line-height: .87; letter-spacing: -.075em; font-weight: 820; }
.hero h1 span { display: block; color: var(--red); font-style: italic; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.05em; }
.hero__lead { max-width: 580px; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.16rem); line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__proof { display: flex; align-items: center; gap: 18px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.rating { display: flex; gap: 2px; color: var(--red); }
.rating svg { width: 16px; fill: currentColor; }
.hero__proof strong { display: block; font-size: 1.05rem; }
.hero__proof small { color: var(--muted); }
.hero__visual { position: relative; min-height: 620px; }
.hero__image-wrap { position: absolute; inset: 0 0 40px 70px; border-radius: 190px 34px 190px 34px; overflow: hidden; box-shadow: var(--shadow-lg); transform: rotate(1.4deg); background: #eee; }
.hero__image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.28)); }
.hero__image { width: 100%; height: 100%; object-fit: cover; }
.hero__card { position: absolute; left: 0; bottom: 0; z-index: 4; width: min(310px, 80%); padding: 22px; border-radius: 24px; color: #fff; background: rgba(21,21,21,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-lg); }
.hero__card-top { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.hero__card-icon { width: 45px; height: 45px; border-radius: 14px; background: var(--red); display: grid; place-items: center; }
.hero__card-icon svg { width: 22px; }
.hero__card strong { font-size: 1.02rem; }
.hero__card p { margin: 8px 0 0; font-size: .85rem; line-height: 1.55; color: rgba(255,255,255,.72); }
.hero__circle { position: absolute; right: -28px; top: 36px; width: 130px; height: 130px; border-radius: 50%; border: 1px solid rgba(223,24,36,.3); animation: spin 18s linear infinite; }
.hero__circle::before, .hero__circle::after { content: ""; position: absolute; border-radius: 50%; background: var(--red); }
.hero__circle::before { width: 12px; height: 12px; top: 4px; left: 25px; }
.hero__circle::after { width: 8px; height: 8px; bottom: 10px; right: 18px; }
@keyframes spin { to { transform: rotate(360deg); } }

.marquee { overflow: hidden; background: var(--red); color: #fff; transform: rotate(-1.1deg); width: calc(100% + 30px); margin-left: -15px; }
.marquee__track { display: flex; width: max-content; animation: marquee 24s linear infinite; }
.marquee__item { padding: 16px 28px; font-size: .88rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; display: flex; align-items: center; gap: 28px; }
.marquee__item::after { content: "✦"; }
@keyframes marquee { to { transform: translateX(-50%); } }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { padding: 26px; border: 1px solid var(--line); background: rgba(255,255,255,.72); border-radius: var(--radius-md); transition: .3s ease; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-sm); border-color: rgba(223,24,36,.22); }
.feature-card__num { color: var(--red); font-size: .76rem; font-weight: 900; letter-spacing: .13em; }
.feature-card h3 { margin: 34px 0 12px; font-size: 1.15rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.62; }

.products-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.product-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-sm); border-color: rgba(223,24,36,.25); }
.product-card__image { position: relative; aspect-ratio: 1 / .92; overflow: hidden; background: #f4f2f2; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card__tag { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.product-card__quick { position: absolute; right: 14px; bottom: 14px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; cursor: pointer; transform: translateY(8px); opacity: 0; transition: .25s ease; }
.product-card:hover .product-card__quick { transform: none; opacity: 1; }
.product-card__quick svg { width: 19px; }
.product-card__body { padding: 20px; }
.product-card__meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.product-card h3 { margin: 10px 0 15px; font-size: 1.15rem; letter-spacing: -.02em; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
.product-card__footer span { font-size: .82rem; color: var(--muted); }
.product-card__footer a { color: var(--red); font-weight: 850; font-size: .84rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-media { position: relative; min-height: 600px; }
.about-media__main { position: absolute; inset: 0 54px 42px 0; border-radius: 32px 130px 32px 130px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-media__main img { width: 100%; height: 100%; object-fit: cover; }
.about-media__accent { position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: 1; padding: 16px; background: #fff; border-radius: 28px; box-shadow: var(--shadow-lg); }
.about-media__accent img { width: 100%; height: 100%; object-fit: cover; border-radius: 19px; }
.about-media__stamp { position: absolute; right: -16px; top: 30px; width: 118px; height: 118px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; text-align: center; font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transform: rotate(8deg); box-shadow: 0 18px 35px rgba(223,24,36,.26); }
.about-copy p { color: var(--muted); line-height: 1.75; }
.about-list { display: grid; gap: 14px; margin: 28px 0 32px; }
.about-list__item { display: flex; align-items: center; gap: 13px; font-weight: 750; }
.about-list__item i { width: 27px; height: 27px; background: var(--red-soft); color: var(--red); border-radius: 50%; display: grid; place-items: center; font-style: normal; }

.review-wrap { background: var(--ink); color: #fff; border-radius: 40px; padding: clamp(34px, 6vw, 74px); overflow: hidden; position: relative; }
.review-wrap::after { content: "“"; position: absolute; right: 28px; top: -60px; color: rgba(255,255,255,.05); font-family: Georgia, serif; font-size: 330px; line-height: 1; }
.review-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.review-score { display: flex; align-items: end; gap: 16px; }
.review-score strong { font-size: clamp(4.8rem, 8vw, 8rem); line-height: .8; letter-spacing: -.07em; color: var(--red); }
.review-score span { color: rgba(255,255,255,.6); padding-bottom: 6px; }
.review-card { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.review-card:first-child { padding-top: 0; }
.review-card:last-child { border-bottom: 0; padding-bottom: 0; }
.review-card p { margin: 12px 0; color: rgba(255,255,255,.78); line-height: 1.65; }
.review-card strong { font-size: .9rem; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: stretch; }
.contact-panel { border-radius: 32px; background: var(--red); color: #fff; padding: clamp(32px, 5vw, 62px); position: relative; overflow: hidden; }
.contact-panel::after { content: "MJ"; position: absolute; right: -26px; bottom: -30px; font-size: 160px; font-weight: 900; color: rgba(255,255,255,.08); letter-spacing: -.08em; }
.contact-panel h2 { position: relative; z-index: 2; margin: 0 0 20px; font-size: clamp(2.4rem, 4.5vw, 4.8rem); line-height: .95; letter-spacing: -.055em; }
.contact-panel p { position: relative; z-index: 2; color: rgba(255,255,255,.82); line-height: 1.7; }
.contact-list { position: relative; z-index: 2; display: grid; gap: 14px; margin-top: 34px; }
.contact-list a, .contact-list div { display: flex; gap: 13px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.contact-list svg { width: 20px; flex: 0 0 20px; margin-top: 2px; }
.contact-map { min-height: 540px; border-radius: 32px; overflow: hidden; border: 1px solid var(--line); background: #eee; position: relative; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) contrast(1.03); }
.contact-map__float { position: absolute; left: 20px; bottom: 20px; right: 20px; padding: 17px; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-radius: 18px; display: flex; justify-content: space-between; align-items: center; gap: 18px; box-shadow: var(--shadow-sm); }
.contact-map__float strong { display: block; }
.contact-map__float small { color: var(--muted); }

.footer { background: #0d0d0d; color: #fff; padding: 70px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 60px; padding-bottom: 50px; }
.footer__brand { width: 220px; height: 70px; padding: 17px; background: var(--red); border-radius: 16px; display: flex; align-items: center; }
.footer__brand img { width: 100%; }
.footer p { color: rgba(255,255,255,.58); line-height: 1.7; max-width: 460px; }
.footer h4 { margin: 0 0 20px; font-size: .86rem; text-transform: uppercase; letter-spacing: .12em; }
.footer nav { display: grid; gap: 12px; }
.footer nav a { color: rgba(255,255,255,.67); font-size: .92rem; }
.footer nav a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.11); padding-top: 24px; display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.43); font-size: .79rem; }

.float-actions { position: fixed; right: 20px; bottom: 20px; z-index: 40; display: grid; gap: 10px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.2); transition: .25s ease; }
.float-btn--ig { background: radial-gradient(circle at 30% 105%, #fdf497 0 8%, #fdf497 9%, #fd5949 43%, #d6249f 64%, #285aeb 100%); }
.float-btn--wa { background: #1eaf5d; }
.float-btn:hover { transform: translateY(-4px) scale(1.03); }
.float-btn svg { width: 25px; height: 25px; }
.icon-instagram { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-instagram__dot { fill: currentColor; stroke: none; }
.icon-whatsapp { fill: currentColor; stroke: none; }

/* Catalog page */
.page-hero { padding: 78px 0 56px; position: relative; overflow: hidden; }
.page-hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.page-hero h1 { margin: 8px 0 20px; font-size: clamp(3.2rem, 7vw, 7rem); line-height: .88; letter-spacing: -.075em; }
.page-hero p { max-width: 650px; color: var(--muted); font-size: 1.06rem; line-height: 1.7; }
.page-hero__visual { height: 360px; border-radius: 160px 28px 160px 28px; overflow: hidden; box-shadow: var(--shadow-lg); }
.page-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.catalog-toolbar { position: sticky; top: 78px; z-index: 30; padding: 17px 0; background: rgba(255,253,251,.88); backdrop-filter: blur(18px); border-block: 1px solid var(--line); }
.catalog-toolbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.filters { display: flex; gap: 9px; flex-wrap: wrap; }
.filter-btn { border: 1px solid var(--line); background: #fff; min-height: 42px; padding: 0 16px; border-radius: 999px; cursor: pointer; font-size: .8rem; font-weight: 800; transition: .2s ease; }
.filter-btn:hover, .filter-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.catalog-search { position: relative; min-width: min(100%, 280px); }
.catalog-search input { width: 100%; height: 44px; padding: 0 44px 0 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; outline: none; }
.catalog-search input:focus { border-color: rgba(223,24,36,.45); box-shadow: 0 0 0 4px rgba(223,24,36,.08); }
.catalog-search svg { position: absolute; right: 15px; top: 50%; width: 18px; transform: translateY(-50%); color: var(--muted); }
.catalog-count { margin: 0 0 24px; color: var(--muted); font-size: .9rem; }
.catalog-empty { display: none; padding: 80px 20px; text-align: center; border: 1px dashed var(--line); border-radius: 26px; color: var(--muted); }

.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: .25s ease; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10,10,10,.68); backdrop-filter: blur(7px); }
.modal__dialog { position: relative; width: min(920px, 100%); max-height: calc(100vh - 40px); overflow: auto; background: #fff; border-radius: 28px; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr; transform: translateY(18px) scale(.985); transition: .3s ease; }
.modal.is-open .modal__dialog { transform: none; }
.modal__image { min-height: 520px; background: #eee; }
.modal__image img { width: 100%; height: 100%; object-fit: cover; }
.modal__content { padding: clamp(30px, 5vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.modal__close { position: absolute; right: 15px; top: 15px; z-index: 2; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-sm); }
.modal__close svg { width: 18px; }
.modal__tag { color: var(--red); font-weight: 900; text-transform: uppercase; font-size: .75rem; letter-spacing: .12em; }
.modal h2 { margin: 12px 0 20px; font-size: clamp(2.1rem, 4vw, 4rem); line-height: .95; letter-spacing: -.055em; }
.modal p { color: var(--muted); line-height: 1.7; }
.modal__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 30px; }
.modal__spec { padding: 14px; border: 1px solid var(--line); border-radius: 14px; }
.modal__spec small { display: block; color: var(--muted); margin-bottom: 5px; }
.modal__spec strong { text-transform: capitalize; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.cursor-dot, .cursor-ring { position: fixed; left: 0; top: 0; pointer-events: none; z-index: 9999; border-radius: 50%; transform: translate(-50%,-50%); display: none; }
.cursor-dot { width: 6px; height: 6px; background: var(--red); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(223,24,36,.52); transition: width .2s ease, height .2s ease, border-color .2s ease; }
.cursor-ring.is-hover { width: 48px; height: 48px; border-color: rgba(223,24,36,.8); }
@media (pointer: fine) and (min-width: 1025px) {
  .cursor-dot, .cursor-ring { display: block; }
  body, a, button, input, select { cursor: none !important; }
}

@media (max-width: 1024px) {
  :root { --container: min(100% - 32px, 920px); }
  .nav__links { position: fixed; inset: 114px 0 0; background: rgba(255,255,255,.98); flex-direction: column; justify-content: center; gap: 28px; transform: translateX(100%); transition: .35s cubic-bezier(.2,.8,.2,1); }
  .nav__links.is-open { transform: none; }
  .menu-btn { display: inline-flex; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero__grid, .about-grid, .contact-grid, .page-hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 570px; }
  .hero__image-wrap { inset: 0 20px 40px 70px; }
  .feature-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 50px; }
  .review-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero__visual { height: 330px; }
  .catalog-toolbar { top: 78px; }
  .catalog-toolbar__inner { align-items: stretch; flex-direction: column; }
  .catalog-search { min-width: 100%; }
}

@media (max-width: 680px) {
  :root { --container: calc(100% - 24px); }
  .topbar__inner { justify-content: center; min-height: 38px; }
  .topbar__inner span { display: none; }
  .nav { min-height: 70px; }
  .brand { min-width: 146px; height: 47px; }
  .nav__links { inset: 108px 0 0; }
  .section { padding: 80px 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .hero { padding: 50px 0 55px; }
  .hero h1 { font-size: clamp(3.15rem, 17vw, 5rem); }
  .hero__visual { min-height: 480px; margin-top: 12px; }
  .hero__image-wrap { inset: 0 0 50px 20px; border-radius: 110px 24px 110px 24px; }
  .hero__card { width: 88%; padding: 18px; }
  .hero__circle { display: none; }
  .feature-grid, .products-grid { grid-template-columns: 1fr; }
  .about-media { min-height: 480px; }
  .about-media__main { inset: 0 25px 35px 0; }
  .about-media__stamp { width: 96px; height: 96px; right: -4px; }
  .review-wrap { border-radius: 28px; }
  .contact-map { min-height: 470px; }
  .contact-map__float { align-items: flex-start; flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; }
  .float-actions { right: 12px; bottom: 12px; }
  .float-btn { width: 52px; height: 52px; }
  .page-hero { padding-top: 56px; }
  .page-hero h1 { font-size: clamp(3.3rem, 17vw, 5rem); }
  .page-hero__visual { height: 270px; border-radius: 100px 22px 100px 22px; }
  .filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex: 0 0 auto; }
  .modal__dialog { grid-template-columns: 1fr; }
  .modal__image { min-height: 300px; max-height: 40vh; }
  .modal__content { padding: 28px; }
  .modal__specs { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
