@font-face {
  font-family: "ABeeZee";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/abeezee-regular.ttf") format("truetype");
}
@font-face {
  font-family: "ABeeZee";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/abeezee-italic.ttf") format("truetype");
}
@font-face {
  font-family: "Merienda One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/merienda-one.ttf") format("truetype");
}

:root {
  --dark: #1b171c;
  --dark-soft: #2d2630;
  --purple: #3e3147;
  --pink: #da5a95;
  --pink-light: #ef77b1;
  --cyan: #01acb7;
  --cyan-light: #5fcac7;
  --yellow: #eeee22;
  --paper: #fff8fc;
  --surface: #f8f5f9;
  --ink: #29232c;
  --muted: #716a75;
  --line: #e5dde8;
  --shadow: 0 22px 58px rgba(34, 24, 39, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "ABeeZee", Arial, sans-serif;
  font-size: 16px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { color: inherit; font: inherit; }
button { border: 0; cursor: pointer; }
button:focus-visible, input:focus-visible, a:focus-visible {
  outline: 3px solid rgba(1,172,183,.35);
  outline-offset: 3px;
}
::selection { background: rgba(238,238,34,.5); color: var(--dark); }

.site-header {
  color: #fff;
  left: 0;
  padding: 18px clamp(16px,4vw,64px) 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 30;
}
.header-shell {
  align-items: center;
  backdrop-filter: blur(22px);
  background: linear-gradient(100deg,rgba(62,49,71,.91),rgba(27,23,28,.88));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  box-shadow: 0 20px 55px rgba(10,8,12,.2), inset 0 1px 0 rgba(255,255,255,.08);
  display: flex;
  height: 86px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1480px;
  padding: 0 18px 0 14px;
}
.brand { align-items: center; display: inline-flex; gap: 14px; min-width: 0; }
.brand-logo {
  filter: drop-shadow(0 11px 15px rgba(0,0,0,.28));
  flex: 0 0 auto;
  height: 68px;
  object-fit: contain;
  width: 68px;
}
.brand > span { display: flex; flex-direction: column; min-width: 0; }
.brand strong { color: #fff; font-family: "Merienda One", cursive; font-size: 19px; font-weight: 400; white-space: nowrap; }
.brand small { color: var(--yellow); font-size: 8.5px; letter-spacing: 1.8px; margin-top: 4px; text-transform: uppercase; }
.header-actions { align-items: center; display: flex; gap: 22px; }
.site-header nav { align-items: center; display: flex; gap: 8px; }
.site-header nav > a { border-radius: 999px; color: rgba(255,248,252,.78); font-size: 12px; padding: 11px 14px; transition: color .18s ease,background .18s ease; }
.site-header nav > a:hover { background: rgba(255,255,255,.07); color: var(--pink-light); }
.site-header .header-button {
  align-items: center;
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(238,238,34,.13);
  color: #29291c;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  gap: 11px;
  letter-spacing: .3px;
  padding: 10px 10px 10px 16px;
  text-transform: uppercase;
  transition: transform .18s ease,box-shadow .18s ease;
}
.site-header .header-button:hover { box-shadow: 0 14px 30px rgba(238,238,34,.2); transform: translateY(-1px); }
.site-header .header-button i { align-items: center; background: rgba(41,41,28,.11); border-radius: 50%; display: flex; font-size: 14px; font-style: normal; height: 31px; justify-content: center; width: 31px; }

.hero {
  background:
    radial-gradient(circle at 13% 23%, rgba(218,90,149,.3), transparent 26rem),
    radial-gradient(circle at 89% 72%, rgba(1,172,183,.26), transparent 32rem),
    radial-gradient(circle at 71% 5%, rgba(238,238,34,.08), transparent 20rem),
    linear-gradient(145deg, #3e3147 0%, #211b23 50%, #151216 100%);
  color: #fff;
  min-height: 710px;
  overflow: hidden;
  padding: 142px clamp(20px,6vw,96px) 68px;
  position: relative;
}
.hero::before {
  background-image: radial-gradient(rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg,#000,transparent 67%);
  opacity: .22;
  position: absolute;
}
.hero::after { background: linear-gradient(90deg,var(--cyan),var(--pink),var(--yellow)); bottom: 0; content: ""; height: 5px; left: 0; position: absolute; right: 0; }
.hero-orbit { border: 1px solid rgba(255,255,255,.08); border-radius: 50%; pointer-events: none; position: absolute; }
.orbit-one { height: 520px; right: -190px; top: -200px; width: 520px; }
.orbit-two { bottom: -310px; height: 670px; left: -290px; width: 670px; }
.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(48px,6vw,92px);
  grid-template-columns: minmax(0,1fr) minmax(420px,.78fr);
  margin: 0 auto;
  max-width: 1480px;
  position: relative;
  z-index: 2;
}
.hero-copy { max-width: 720px; }
.hero-kicker-row { align-items: center; display: flex; gap: 12px; }
.kicker, .section-kicker { color: var(--pink-light); font-size: 11px; font-weight: 700; letter-spacing: 2.6px; text-transform: uppercase; }
.hero-city { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); border-radius: 999px; color: rgba(255,248,252,.68); font-size: 9px; letter-spacing: 1px; padding: 7px 10px; text-transform: uppercase; }
.hero h1 {
  color: #fff;
  font-family: "Merienda One", cursive;
  font-size: clamp(52px,5.8vw,84px);
  font-weight: 400;
  letter-spacing: -2.7px;
  line-height: 1.04;
  margin: 22px 0 25px;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-copy p { color: rgba(255,248,252,.72); font-size: clamp(16px,1.3vw,19px); line-height: 1.67; margin: 0 0 30px; max-width: 670px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 11px; }
.hero-button {
  align-items: center;
  background: linear-gradient(135deg,var(--pink),var(--pink-light));
  border-radius: 999px;
  box-shadow: 0 15px 32px rgba(218,90,149,.3);
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 18px;
  letter-spacing: .3px;
  padding: 16px 18px 16px 22px;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease;
}
.hero-button:hover { box-shadow: 0 19px 40px rgba(218,90,149,.4); transform: translateY(-2px); }
.hero-button span { align-items: center; background: rgba(255,255,255,.18); border-radius: 50%; display: flex; height: 31px; justify-content: center; width: 31px; }
.hero-secondary { align-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,248,252,.84); display: inline-flex; font-size: 11px; font-weight: 700; gap: 15px; padding: 14px 16px 14px 19px; text-transform: uppercase; transition: background .18s ease,border-color .18s ease; }
.hero-secondary:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.22); }
.hero-secondary span { color: var(--cyan-light); font-size: 16px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 29px; }
.hero-tags span { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); border-radius: 999px; color: rgba(255,248,252,.56); font-size: 9px; font-weight: 700; letter-spacing: 1px; padding: 8px 11px; text-transform: uppercase; }
.hero-tags span::before { background: var(--cyan); border-radius: 50%; content: ""; display: inline-block; height: 4px; margin-right: 7px; vertical-align: 2px; width: 4px; }
.hero-tags span:nth-child(2)::before { background: var(--pink-light); }
.hero-tags span:nth-child(3)::before { background: var(--yellow); }
.hero-showcase { min-height: 475px; position: relative; }
.hero-photo {
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 36px;
  box-shadow: 0 35px 85px rgba(0,0,0,.34);
  height: 455px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.hero-photo::after { background: linear-gradient(180deg,transparent 47%,rgba(20,16,22,.8)); content: ""; inset: 0; position: absolute; }
.hero-photo img { display: block; height: 100%; object-fit: cover; width: 100%; }
.hero-photo-caption { bottom: 25px; display: flex; flex-direction: column; left: 27px; position: absolute; z-index: 2; }
.hero-photo-caption small { color: var(--pink-light); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.hero-photo-caption strong { color: #fff; font-family: "Merienda One",cursive; font-size: 16px; font-weight: 400; margin-top: 6px; }
.hero-logo-card {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255,248,252,.92);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 24px;
  bottom: -20px;
  box-shadow: 0 22px 55px rgba(0,0,0,.26);
  color: var(--ink);
  display: flex;
  gap: 14px;
  left: -31px;
  padding: 10px 18px 10px 9px;
  position: absolute;
  z-index: 3;
}
.hero-logo-card img { height: 76px; object-fit: contain; width: 76px; }
.hero-logo-card div { display: flex; flex-direction: column; }
.hero-logo-card small { color: var(--pink); font-size: 8px; letter-spacing: .8px; margin-bottom: 5px; text-transform: uppercase; }
.hero-logo-card b { color: var(--purple); font-family: "Merienda One",cursive; font-size: 16px; font-weight: 400; }
.hero-live-card { align-items: center; backdrop-filter: blur(16px); background: rgba(29,24,31,.86); border: 1px solid rgba(255,255,255,.13); border-radius: 18px; box-shadow: 0 18px 45px rgba(0,0,0,.22); display: flex; gap: 11px; padding: 12px 15px; position: absolute; right: -22px; top: 24px; z-index: 3; }
.hero-live-card > i { background: #40dc9b; border-radius: 50%; box-shadow: 0 0 0 5px rgba(64,220,155,.12); height: 8px; width: 8px; }
.hero-live-card div { display: flex; flex-direction: column; }
.hero-live-card strong { color: #fff; font-size: 10px; font-weight: 400; }
.hero-live-card small { color: rgba(255,248,252,.48); font-size: 8px; margin-top: 3px; }

.intro {
  background:
    linear-gradient(rgba(255,248,252,.9),rgba(255,248,252,.96)),
    url("brand-banner.webp") center/cover no-repeat;
  overflow: hidden;
  padding: clamp(90px,10vw,150px) 24px;
  position: relative;
  text-align: center;
}
.intro::before { background: radial-gradient(circle,rgba(1,172,183,.12),transparent 65%); content: ""; height: 560px; position: absolute; right: -190px; top: -180px; width: 560px; }
.intro h2, .catalog-heading h2, .contact-section h2 {
  color: var(--dark);
  font-family: "Merienda One", cursive;
  font-size: clamp(42px,5.4vw,70px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 20px 0 25px;
  position: relative;
}
.intro p { color: var(--muted); font-size: 17px; line-height: 1.75; margin: 0 auto; max-width: 760px; position: relative; }
.intro-points { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3,1fr); margin: 62px auto 0; max-width: 980px; position: relative; }
.intro-points span { color: #5e5661; font-size: 12px; font-weight: 700; letter-spacing: 1px; padding: 24px 10px 0; text-transform: uppercase; }
.intro-points b { color: var(--pink); font-family: "Merienda One",cursive; font-size: 15px; font-weight: 400; margin-right: 10px; }

.catalog-section {
  background:
    radial-gradient(circle at 5% 5%,rgba(218,90,149,.08),transparent 25rem),
    radial-gradient(circle at 95% 95%,rgba(1,172,183,.09),transparent 30rem),
    #f7f4f8;
  padding: clamp(82px,8vw,120px) clamp(20px,6vw,96px) 125px;
}
.catalog-heading { align-items: flex-end; display: flex; gap: 30px; justify-content: space-between; margin: 0 auto 40px; max-width: 1480px; }
.catalog-heading h2 { margin-bottom: 13px; }
.catalog-heading p { color: var(--muted); font-size: 13px; margin: 0; }
.print-button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .7px;
  padding: 14px 19px;
  text-transform: uppercase;
}
.print-button:hover { border-color: var(--cyan); color: #007e87; }
.catalog-tools { align-items: center; display: flex; gap: 18px; margin: 0 auto 25px; max-width: 1480px; }
.search-box {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 9px 28px rgba(34,24,39,.05);
  display: flex;
  flex: 0 0 min(370px,100%);
  gap: 11px;
  padding: 0 17px;
}
.search-box svg { fill: none; height: 18px; stroke: var(--cyan); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; width: 18px; }
.search-box input { background: transparent; border: 0; font-size: 13px; height: 49px; outline: 0; width: 100%; }
.category-list { display: flex; gap: 7px; overflow-x: auto; padding: 4px 3px; scrollbar-width: none; }
.category-list::-webkit-scrollbar { display: none; }
.category-list button { background: transparent; border: 1px solid transparent; border-radius: 999px; color: #6f6672; flex: 0 0 auto; font-size: 11px; font-weight: 700; padding: 12px 15px; }
.category-list button:hover { border-color: var(--line); }
.category-list button.active { background: linear-gradient(135deg,var(--purple),var(--dark)); box-shadow: 0 9px 22px rgba(34,24,39,.18); color: #fff; }
.catalog-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit,minmax(245px,1fr)); margin: 0 auto; max-width: 1480px; }
.product-card {
  animation: card-in .5s both;
  animation-delay: var(--delay);
  background: #fff;
  border: 1px solid rgba(62,49,71,.1);
  border-radius: 21px;
  box-shadow: 0 10px 35px rgba(41,29,46,.07);
  min-width: 0;
  overflow: hidden;
  transition: transform .2s ease,box-shadow .2s ease;
}
.product-card:hover { box-shadow: 0 19px 46px rgba(41,29,46,.13); transform: translateY(-4px); }
@keyframes card-in { from { opacity: 0; transform: translateY(17px); } }
.product-visual { align-items: center; background: linear-gradient(145deg,#65dbe0,#01acb7); display: flex; height: 145px; justify-content: center; overflow: hidden; position: relative; }
.product-visual::before,.product-visual::after { border: 1px solid rgba(255,255,255,.34); border-radius: 50%; content: ""; position: absolute; }
.product-visual::before { height: 190px; right: -76px; top: -100px; width: 190px; }
.product-visual::after { bottom: -59px; height: 130px; left: -47px; width: 130px; }
.product-visual.tone-1 { background: linear-gradient(145deg,#f39ac3,#da5a95); }
.product-visual.tone-2 { background: linear-gradient(145deg,#f5f56b,#dddd16); }
.product-visual.tone-3 { background: linear-gradient(145deg,#8f759b,#3e3147); }
.product-visual.tone-4 { background: linear-gradient(145deg,#ff9fc2,#5fcac7); }
.visual-mark { color: rgba(255,255,255,.95); font-family: "Merienda One",cursive; font-size: 36px; letter-spacing: -2.5px; position: relative; text-shadow: 0 5px 16px rgba(29,22,31,.13); z-index: 2; }
.tone-2 .visual-mark { color: #393624; }
.product-brand-mark { height: 62px; object-fit: contain; opacity: .25; position: absolute; right: 6px; top: 3px; transform: rotate(5deg); width: 62px; }
.product-visual i { align-items: center; backdrop-filter: blur(8px); background: rgba(255,255,255,.21); border: 1px solid rgba(255,255,255,.34); border-radius: 50%; bottom: 11px; color: #fff; display: flex; font-size: 12px; font-style: normal; height: 30px; justify-content: center; position: absolute; right: 11px; width: 30px; }
.tone-2 i { color: #393624; }
.product-copy { padding: 16px 17px 18px; }
.product-category { color: var(--pink); font-size: 9px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.product-copy h3 { color: var(--purple); font-family: "Merienda One",cursive; font-size: 17.5px; font-weight: 400; line-height: 1.28; margin: 7px 0 12px; min-height: 45px; }
.product-meta { color: #8b828e; display: flex; flex-wrap: wrap; font-size: 9.5px; gap: 6px 11px; }
.product-meta span::before { color: var(--cyan); content: "•"; margin-right: 6px; }
.product-price { align-items: flex-end; border-top: 1px solid var(--line); display: flex; gap: 10px; justify-content: space-between; margin-top: 13px; padding-top: 13px; }
.product-price small { color: #8d838f; font-size: 9px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; }
.product-price strong { color: #00838c; font-family: "Merienda One",cursive; font-size: 18.5px; font-weight: 400; white-space: nowrap; }
.loading-card { animation: shimmer 1.25s infinite linear; background: linear-gradient(90deg,#eae4ec 25%,#faf7fb 50%,#eae4ec 75%); background-size: 200% 100%; border-radius: 21px; height: 325px; }
@keyframes shimmer { to { background-position: -200% 0; } }
.empty-catalog { align-items: center; border: 1px dashed #d2c8d6; border-radius: 25px; color: var(--muted); display: flex; flex-direction: column; gap: 9px; grid-column: 1/-1; justify-content: center; min-height: 300px; text-align: center; }
.empty-catalog > span { color: var(--cyan); font-size: 30px; }
.empty-catalog strong { color: var(--purple); font-family: "Merienda One",cursive; font-size: 23px; font-weight: 400; }
.empty-catalog p { font-size: 12px; margin: 0; }
.catalog-error { background: #ffe8ef; border: 1px solid rgba(189,62,97,.12); border-radius: 20px; color: #9d3150; margin: 20px auto; max-width: 640px; padding: 27px; text-align: center; }
.catalog-error strong { font-family: "Merienda One",cursive; font-size: 21px; font-weight: 400; }
.catalog-error p { font-size: 12px; }
.catalog-error button { background: #9d3150; border-radius: 999px; color: #fff; font-size: 11px; padding: 11px 15px; }

.contact-section {
  align-items: center;
  background:
    radial-gradient(circle at 13% 10%,rgba(218,90,149,.26),transparent 25rem),
    radial-gradient(circle at 92% 90%,rgba(1,172,183,.21),transparent 28rem),
    linear-gradient(135deg,#3e3147,#1b171c 62%);
  color: #fff;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.15fr .85fr;
  padding: clamp(85px,9vw,135px) clamp(22px,9vw,145px);
}
.contact-heading { align-items: center; display: flex; gap: 25px; }
.contact-heading > img { filter: drop-shadow(0 17px 25px rgba(0,0,0,.25)); height: clamp(110px,12vw,170px); object-fit: contain; width: clamp(110px,12vw,170px); }
.contact-section h2 { color: #fff; margin-bottom: 0; }
.contact-card { border-left: 1px solid rgba(255,255,255,.16); padding: 24px 0 24px 52px; }
.contact-card p { color: rgba(255,248,252,.7); font-size: 16px; line-height: 1.7; margin: 0 0 25px; max-width: 460px; }
.contact-card a { color: var(--yellow); display: block; font-family: "Merienda One",cursive; font-size: clamp(25px,3vw,39px); margin-bottom: 15px; }
.contact-card small { color: rgba(255,248,252,.48); font-size: 10px; letter-spacing: .8px; }

footer {
  align-items: center;
  background: #121014;
  color: rgba(255,248,252,.58);
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 44px clamp(20px,6vw,92px);
}
.footer-brand .brand-logo { height: 62px; width: 62px; }
.footer-brand strong { color: #fff; }
footer p { font-size: 13px; line-height: 1.6; margin: 0; }
footer > div { display: flex; gap: 20px; justify-content: flex-end; }
footer > div a { color: var(--pink-light); font-size: 10px; font-weight: 700; }

* { scrollbar-color: rgba(62,49,71,.3) transparent; scrollbar-width: thin; }
::-webkit-scrollbar { height: 8px; width: 8px; }
::-webkit-scrollbar-thumb { background: rgba(62,49,71,.28); border-radius: 99px; }

@media (max-width: 1180px) {
  .hero { padding-left: 40px; padding-right: 40px; }
  .hero-grid { gap: 45px; grid-template-columns: minmax(0,1fr) minmax(370px,.76fr); }
  .hero h1 { font-size: clamp(50px,5.8vw,72px); }
  .hero-photo { height: 425px; }
  .hero-showcase { min-height: 445px; }
  .hero-logo-card { left: -18px; }
  .hero-live-card { right: -12px; }
  .catalog-grid { grid-template-columns: repeat(auto-fit,minmax(235px,1fr)); }
  .contact-section { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { min-height: auto; }
  .hero-grid { gap: 52px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-showcase { margin: 0 auto; min-height: 425px; width: min(100%,640px); }
  .hero-photo { height: 405px; width: 100%; }
  .hero-logo-card { left: 5px; }
  .hero-live-card { right: 8px; }
  .catalog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .catalog-tools { align-items: stretch; flex-direction: column; }
  .search-box { flex-basis: auto; }
  .contact-section { gap: 42px; grid-template-columns: 1fr; }
  .contact-card { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); padding: 32px 0 0; }
  footer { grid-template-columns: 1fr; }
  footer > div { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .site-header { padding: 10px 10px 0; }
  .header-shell { border-radius: 20px; height: 72px; padding: 0 8px 0 7px; }
  .brand { gap: 9px; }
  .brand-logo { height: 55px; width: 55px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 7px; letter-spacing: 1px; }
  .header-actions { gap: 0; }
  .site-header .header-button { font-size: 8.5px; gap: 7px; padding: 7px 7px 7px 11px; }
  .site-header .header-button i { height: 28px; width: 28px; }
  .hero { padding: 111px 14px 43px; }
  .hero h1 { font-size: clamp(42px,12vw,55px); letter-spacing: -1.8px; margin: 18px 0 21px; }
  .hero-copy p { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-button,.hero-secondary { justify-content: space-between; width: 100%; }
  .hero-tags { margin-top: 21px; }
  .hero-showcase { min-height: 325px; }
  .hero-photo { border-radius: 27px; height: 305px; }
  .hero-photo-caption { bottom: 20px; left: 20px; }
  .hero-photo-caption strong { font-size: 13px; }
  .hero-logo-card { border-radius: 19px; bottom: -9px; left: 4px; padding: 8px 12px 8px 7px; }
  .hero-logo-card img { height: 62px; width: 62px; }
  .hero-logo-card b { font-size: 13px; }
  .hero-logo-card small { font-size: 7px; }
  .hero-live-card { right: 7px; top: 10px; }
  .intro { padding-left: 16px; padding-right: 16px; }
  .intro h2, .catalog-heading h2, .contact-section h2 { font-size: 40px; letter-spacing: -1.4px; }
  .intro p { font-size: 15px; }
  .intro-points { grid-template-columns: 1fr; }
  .intro-points span { border-bottom: 1px solid var(--line); padding: 18px 10px; }
  .catalog-section { padding-left: 14px; padding-right: 14px; }
  .catalog-heading { align-items: flex-start; flex-direction: column; }
  .catalog-grid { grid-template-columns: 1fr; }
  .product-visual { height: 155px; }
  .contact-section { padding-left: 18px; padding-right: 18px; }
  .contact-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .contact-heading > img { height: 105px; width: 105px; }
  footer { padding-left: 17px; padding-right: 17px; }
}

@media (max-width: 390px) {
  .brand strong { font-size: 13px; }
  .brand small { display: none; }
  .site-header .header-button { padding: 6px; }
  .site-header .header-button > span { display: none; }
  .hero-button { font-size: 10px; }
  .hero-logo-card small { display: none; }
  .hero-live-card { padding: 10px 11px; }
}

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

@media print {
  .site-header,.hero,.intro,.catalog-tools,.print-button,.contact-section,footer { display: none!important; }
  body,.catalog-section { background: #fff; }
  .catalog-section { padding: 20px; }
  .catalog-grid { display: block; }
  .product-card { break-inside: avoid; box-shadow: none; display: grid; grid-template-columns: 100px 1fr; margin-bottom: 9px; }
  .product-visual { height: 100%; min-height: 120px; }
  .product-brand-mark { display: none; }
  .product-copy { padding: 11px 15px; }
  .product-copy h3 { min-height: 0; }
  .catalog-heading h2 { font-size: 36px; }
}
