@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --ink: #352719;
  --ink-soft: #6f5b43;
  --brown: #4b3421;
  --brown-deep: #24170f;
  --gold: #c69a55;
  --gold-light: #ead09d;
  --cream: #f8f0e2;
  --paper: #fffaf1;
  --line: rgba(82, 57, 31, 0.14);
  --shadow: 0 24px 70px rgba(62, 39, 18, 0.12);
  font-family: "Vazirmatn", Tahoma, sans-serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 8% 12%, rgba(198, 154, 85, 0.14), transparent 24rem),
    radial-gradient(circle at 92% 82%, rgba(108, 75, 42, 0.1), transparent 28rem),
    linear-gradient(180deg, #fbf5ea, #f6eddf);
}

::selection { background: var(--gold); color: white; }
a { color: inherit; }
button, input { font: inherit; }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.app-container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.55);
  background: rgba(255, 250, 241, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(61, 38, 17, 0.05);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-shell {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 17px;
  padding: 4px;
  background: linear-gradient(135deg, var(--gold-light), #76502f);
  box-shadow: 0 10px 28px rgba(79, 49, 23, .18);
}

.brand-logo-shell::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(198, 154, 85, .35);
  border-radius: 21px;
  animation: logoRing 3s ease-in-out infinite;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.brand-copy { display: grid; gap: .12rem; }
.brand-copy small { color: #8f7049; font-size: .72rem; }
.brand-copy strong { font-size: 1rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  position: relative;
  color: var(--ink-soft);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.55rem;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.nav-menu a:hover { color: var(--brown); }
.nav-menu a:hover::after { transform: scaleX(1); }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 1.2rem;
  color: #fff8ea;
  background: var(--brown);
  border-radius: 14px;
  font-size: .82rem;
  box-shadow: 0 12px 28px rgba(63, 38, 18, .17);
}

.header-cta:hover { transform: translateY(-2px); background: #5b4029; }

.hero {
  position: relative;
  min-height: 760px;
  padding: 6rem 0 0;
  overflow: hidden;
  color: #fff8ec;
  background:
    linear-gradient(110deg, rgba(36, 23, 15, .97), rgba(78, 54, 34, .95)),
    var(--brown-deep);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineTravel 5s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .5;
  pointer-events: none;
}

.hero-orb--one {
  width: 520px;
  height: 520px;
  top: -250px;
  left: -150px;
  background: radial-gradient(circle, rgba(224, 180, 101, .28), transparent 68%);
  animation: drift 11s ease-in-out infinite;
}

.hero-orb--two {
  width: 430px;
  height: 430px;
  right: 30%;
  bottom: -260px;
  background: radial-gradient(circle, rgba(198, 154, 85, .2), transparent 70%);
  animation: drift 13s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.eyebrow-dot,
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(198, 154, 85, .13);
  animation: dotPulse 2s ease-out infinite;
}

.hero-copy h1,
.catalog-title h1 {
  margin: 1.4rem 0;
  font-size: clamp(2.9rem, 5vw, 5.5rem);
  line-height: 1.2;
  letter-spacing: -.045em;
}

.hero-copy h1 em,
.catalog-title h1 em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 900;
  text-shadow: 0 8px 38px rgba(198, 154, 85, .2);
}

.hero-description {
  max-width: 630px;
  margin: 0;
  color: rgba(255,248,236,.7);
  font-size: 1.08rem;
  line-height: 2.1;
}

.hero-actions { display: flex; gap: .85rem; margin-top: 2.2rem; }
.button { min-height: 56px; padding: 0 1.65rem; border-radius: 17px; }
.button--gold { color: #2c1c10; background: linear-gradient(135deg, #efd6a2, #bd8842); box-shadow: 0 18px 45px rgba(198,154,85,.2); }
.button--gold:hover { transform: translateY(-4px); box-shadow: 0 24px 55px rgba(198,154,85,.3); }
.button--ghost { color: #f9edda; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.button--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }

.hero-trust { display: flex; gap: 1.5rem; margin-top: 2.2rem; color: rgba(255,248,236,.55); font-size: .78rem; }
.hero-trust span { display: flex; align-items: center; gap: .45rem; }
.hero-trust span::before { content: "✓"; color: var(--gold-light); }

.hero-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

.visual-rings {
  position: absolute;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(234,208,157,.17);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.visual-rings::before,
.visual-rings::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(234,208,157,.15);
}
.visual-rings::before { inset: 38px; animation: spin 18s linear infinite reverse; }
.visual-rings::after { inset: 83px; border-style: solid; }

.hero-logo-card {
  position: relative;
  z-index: 2;
  width: min(360px, 85%);
  padding: 2.1rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  backdrop-filter: blur(18px);
  box-shadow: 0 35px 90px rgba(0,0,0,.27);
  transform: translateZ(35px);
}

.card-kicker { color: var(--gold-light); font-size: .75rem; }
.hero-logo-wrap { width: 170px; height: 170px; margin: 1.35rem auto; padding: 8px; border-radius: 38px; background: linear-gradient(135deg, var(--gold-light), #75502f); box-shadow: 0 25px 50px rgba(0,0,0,.25); }
.hero-logo-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 31px; }
.hero-logo-card h2 { margin: .5rem 0; font-size: 1.35rem; }
.hero-logo-card p { margin: 0; color: rgba(255,255,255,.62); font-size: .83rem; line-height: 1.8; }

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 15px;
  color: #f8ead3;
  background: rgba(39,25,16,.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(0,0,0,.2);
  font-size: .78rem;
}
.floating-chip--top { top: 14%; right: -3%; animation: chipFloat 5s ease-in-out infinite; }
.floating-chip--bottom { bottom: 15%; left: -1%; animation: chipFloat 5.5s ease-in-out infinite reverse; }
.chip-icon { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 9px; color: var(--brown); background: var(--gold-light); font-size: 1rem; }
.chip-wave { width: 30px; height: 15px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 15' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 12l5-5 4 3 6-8 5 5 8-6' fill='none' stroke='%23e5c384' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat; }

.stats-strip {
  position: relative;
  z-index: 3;
  min-height: 125px;
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.1);
}

.stat-item { padding: 0 2rem; border-left: 1px solid rgba(255,255,255,.1); }
.stat-item:first-child { padding-right: 0; }
.stat-item strong { display: block; color: #fff8ec; font-size: 1.7rem; }
.stat-item strong b { color: var(--gold-light); font-size: 1rem; }
.stat-item small { color: rgba(255,255,255,.48); }
.stat-note { display: flex; align-items: center; justify-content: flex-end; gap: .8rem; color: rgba(255,255,255,.6); font-size: .78rem; }
.stat-note .live-dot { width: 6px; height: 6px; }

.section-space { padding: 7rem 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 4rem; margin-bottom: 3.2rem; }
.section-heading > div { max-width: 590px; }
.section-kicker { display: inline-block; margin-bottom: .8rem; color: #9a713b; font-size: .78rem; font-weight: 800; }
.section-heading h2,
.showcase-copy h2,
.contact-intro h2,
.catalog-toolbar h2 { margin: 0; font-size: clamp(2rem, 3vw, 3.25rem); line-height: 1.4; letter-spacing: -.03em; }
.section-heading > p { max-width: 430px; margin: 0; color: var(--ink-soft); line-height: 2; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.value-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  min-height: 310px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(198,154,85,.15), transparent 12rem),
    rgba(255,250,241,.72);
  box-shadow: 0 16px 50px rgba(75,48,23,.06);
  transition: transform .2s ease, box-shadow .3s ease, border-color .3s ease;
}
.value-card:hover { box-shadow: var(--shadow); border-color: rgba(198,154,85,.45); }
.value-card--featured { color: #fff8ec; background: linear-gradient(145deg, #5a3e27, #2d1d12); transform: translateY(-18px); box-shadow: 0 28px 65px rgba(61,38,18,.2); }
.value-number { position: absolute; top: 1.8rem; left: 1.8rem; color: rgba(108,77,42,.28); font-size: 2.6rem; font-weight: 900; }
.value-card--featured .value-number { color: rgba(255,255,255,.12); }
.value-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; color: #80582c; background: #f2dfbc; font-size: 1.35rem; }
.value-card h3 { margin: 3rem 0 .7rem; font-size: 1.25rem; }
.value-card p { margin: 0; color: var(--ink-soft); line-height: 1.9; font-size: .9rem; }
.value-card--featured p { color: rgba(255,255,255,.62); }
.card-line { position: absolute; right: 2rem; left: 2rem; bottom: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform .45s ease; }
.value-card:hover .card-line { transform: scaleX(1); }

.showcase-section { position: relative; overflow: hidden; color: #fff8ec; background: #2c1d13; }
.showcase-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(198,154,85,.16), transparent 35%), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: auto, 85px 85px; }
.showcase-grid { position: relative; min-height: 590px; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 5rem; }
.section-kicker--light { color: var(--gold-light); }
.showcase-copy p { color: rgba(255,255,255,.6); line-height: 2; }
.text-link { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.2rem; color: var(--gold-light); text-decoration: none; font-weight: 700; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(-6px); }

.orbit-system { position: relative; width: 470px; height: 470px; margin: auto; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(234,208,157,.15); border-radius: 50%; }
.orbit--outer { inset: 0; animation: spin 30s linear infinite; }
.orbit--outer::before, .orbit--outer::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px var(--gold); }
.orbit--outer::before { top: 12%; right: 20%; }
.orbit--outer::after { bottom: 8%; left: 28%; }
.orbit--inner { inset: 85px; border-style: dashed; animation: spin 20s linear infinite reverse; }
.orbit-center { width: 170px; height: 170px; padding: 7px; border-radius: 44px; background: linear-gradient(135deg, var(--gold-light), #7c5732); box-shadow: 0 25px 70px rgba(0,0,0,.35); animation: centerFloat 5s ease-in-out infinite; }
.orbit-center img { width: 100%; height: 100%; object-fit: cover; border-radius: 37px; }
.orbit-node { position: absolute; min-width: 92px; padding: .75rem 1rem; text-align: center; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; color: #f5e3c5; background: rgba(255,255,255,.07); backdrop-filter: blur(10px); font-size: .8rem; box-shadow: 0 15px 30px rgba(0,0,0,.18); }
.orbit-node--one { top: 7%; left: 3%; animation: chipFloat 5s ease-in-out infinite; }
.orbit-node--two { top: 41%; right: -3%; animation: chipFloat 6s ease-in-out infinite reverse; }
.orbit-node--three { bottom: 5%; left: 14%; animation: chipFloat 5.5s ease-in-out infinite .6s; }

.contact-section { padding-bottom: 8rem; }
.contact-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 4rem; padding: 4rem; border: 1px solid rgba(198,154,85,.2); border-radius: 34px; background: rgba(255,250,241,.76); box-shadow: var(--shadow); }
.contact-intro p { color: var(--ink-soft); line-height: 2; }
.contact-list { display: grid; gap: .8rem; }
.contact-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; min-height: 82px; padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: 19px; text-decoration: none; background: rgba(255,255,255,.42); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
a.contact-item:hover { transform: translateX(-6px); border-color: rgba(198,154,85,.5); background: white; }
.contact-icon { display: grid; place-items: center; width: 45px; height: 45px; border-radius: 14px; color: #7e572e; background: #f0dfc2; font-weight: 800; }
.contact-item span:nth-child(2) { display: grid; gap: .2rem; }
.contact-item small { color: #9b856b; }
.contact-item b { font-size: .9rem; }
.contact-item i { color: var(--gold); font-style: normal; }

.footer { color: rgba(255,255,255,.58); background: #21160f; }
.footer-inner { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; color: #f7ead5; font-weight: 700; }
.footer-brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 12px; }
.footer p { font-size: .78rem; }
.back-to-top { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; text-decoration: none; transition: background .25s ease, transform .25s ease; }
.back-to-top:hover { color: #2c1c10; background: var(--gold-light); transform: translateY(-4px); }

/* Catalog */
.catalog-hero { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; color: white; background: linear-gradient(115deg, #24170f, #593d26); }
.catalog-glow { position: absolute; width: 650px; height: 650px; left: -250px; top: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(215,174,101,.25), transparent 67%); animation: drift 12s ease-in-out infinite; }
.catalog-hero-inner { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.catalog-title { max-width: 750px; }
.catalog-title h1 { font-size: clamp(2.7rem, 5vw, 5rem); }
.catalog-title p { max-width: 620px; color: rgba(255,255,255,.65); line-height: 2; }
.catalog-mark { position: relative; flex: 0 0 190px; height: 190px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: rgba(255,255,255,.06); backdrop-filter: blur(14px); }
.catalog-mark-ring { position: absolute; inset: 0; border: 1px solid rgba(234,208,157,.35); border-radius: 50%; border-right-style: dashed; animation: spin 12s linear infinite; }
.catalog-mark strong { color: var(--gold-light); font-size: 3rem; line-height: 1; }
.catalog-mark span { margin-top: .45rem; color: rgba(255,255,255,.6); font-size: .75rem; }
.product-section { min-height: 700px; }
.catalog-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3rem; }
.search-box { width: min(360px, 100%); height: 56px; display: flex; align-items: center; gap: .8rem; padding: 0 1.2rem; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.65); box-shadow: 0 12px 30px rgba(69,42,18,.05); }
.search-box span { color: #9b7645; font-size: 1.4rem; }
.search-box input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; }
.search-box input::placeholder { color: #ab9a87; }
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: -1rem 0 2.2rem;
}
.category-filter {
  min-width: 92px;
  height: 44px;
  padding: 0 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink-soft);
  background: rgba(255,255,255,.55);
  cursor: pointer;
  font-weight: 700;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.category-filter:hover {
  border-color: rgba(198,154,85,.5);
  transform: translateY(-2px);
}
.category-filter.is-active {
  color: #fff8ec;
  border-color: var(--brown);
  background: var(--brown);
  box-shadow: 0 12px 28px rgba(63,38,18,.18);
}
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.35rem; }
.product-card { --mouse-x: 50%; --mouse-y: 50%; position: relative; min-height: 470px; padding: 2rem; overflow: hidden; border: 1px solid var(--line); border-radius: 27px; background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(198,154,85,.16), transparent 13rem), rgba(255,250,241,.8); box-shadow: 0 15px 40px rgba(65,39,16,.06); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.product-card::after { content: ""; position: absolute; right: 0; top: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform .4s ease; }
.product-card:hover { transform: translateY(-9px); border-color: rgba(198,154,85,.43); box-shadow: 0 30px 70px rgba(65,39,16,.13); }
.product-card:hover::after { transform: scaleX(1); }
.product-card-top { display: flex; align-items: center; justify-content: space-between; }
.product-index { color: rgba(80,55,30,.18); font-size: 2.4rem; font-weight: 900; }
.product-badge { padding: .42rem .7rem; border: 1px solid rgba(157,113,55,.17); border-radius: 99px; color: #8b6639; background: rgba(224,198,155,.22); font-size: .68rem; font-weight: 700; }
.product-symbol { width: 48px; height: 48px; margin: 1.4rem 0 1rem; display: grid; place-items: center; border-radius: 15px; color: #80582c; background: #f0dfc1; font-size: 1.3rem; transition: transform .4s ease; }
.product-card:hover .product-symbol { transform: rotate(-10deg) scale(1.08); }
.product-card h3 { margin: 0 0 .55rem; font-size: 1.35rem; }
.product-subtitle { min-height: 52px; margin: 0; color: #876d4e; line-height: 1.8; font-size: .86rem; }
.product-description { display: -webkit-box; min-height: 55px; margin: 1rem 0; overflow: hidden; color: var(--ink-soft); line-height: 1.9; font-size: .85rem; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.feature-list { display: grid; gap: .6rem; margin: 0 0 1.3rem; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-right: 1.2rem; color: #675440; font-size: .78rem; }
.feature-list li::before { content: ""; position: absolute; right: 0; top: .55rem; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(198,154,85,.12); }
.product-detail-btn { position: absolute; right: 2rem; left: 2rem; bottom: 1.7rem; height: 51px; display: flex; align-items: center; justify-content: space-between; padding: 0 1.15rem; border: 1px solid var(--line); border-radius: 15px; color: var(--brown); background: rgba(255,255,255,.55); cursor: pointer; font-weight: 700; transition: color .25s ease, background .25s ease, transform .25s ease; }
.product-detail-btn i { color: var(--gold); font-style: normal; transition: transform .25s ease; }
.product-detail-btn:hover { color: white; background: var(--brown); transform: translateY(-2px); }
.product-detail-btn:hover i { transform: translateX(-5px); }
.empty-state { padding: 4rem; text-align: center; color: var(--ink-soft); border: 1px dashed var(--line); border-radius: 24px; }

.product-modal-overlay { position: fixed; inset: 0; z-index: 150; background: rgba(25,16,10,.72); backdrop-filter: blur(10px); animation: fadeIn .25s ease; }
.product-modal { position: fixed; z-index: 160; top: 50%; left: 50%; width: min(680px, calc(100% - 2rem)); max-height: 88vh; padding: 3rem; overflow-y: auto; border: 1px solid rgba(198,154,85,.2); border-radius: 30px; color: var(--ink); background: #fffaf1; box-shadow: 0 35px 100px rgba(0,0,0,.35); transform: translate(-50%,-50%); animation: modalIn .38s cubic-bezier(.2,.8,.2,1); }
.product-modal-close { position: absolute; top: 1.2rem; left: 1.2rem; width: 42px; height: 42px; border: 0; border-radius: 13px; color: var(--brown); background: #f0e3cf; cursor: pointer; font-size: 1.5rem; transition: transform .25s ease, background .25s ease; }
.product-modal-close:hover { color: white; background: var(--brown); transform: rotate(8deg); }
.modal-accent { width: 48px; height: 4px; margin-bottom: 1.5rem; border-radius: 3px; background: var(--gold); }
.modal-kicker { color: #9a713b; font-size: .75rem; font-weight: 800; }
.product-modal .modal-title { margin: .5rem 0; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.product-modal .modal-subtitle { margin: 0 0 2rem; color: #846b4f; }
.modal-info-block, .modal-section { padding-top: 1.2rem; border-top: 1px solid var(--line); }
.product-modal h4 { color: #7f5b31; font-size: .9rem; }
.modal-description {
  color: var(--ink-soft);
  line-height: 2;
  white-space: pre-line;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.modal-feature-list { display: grid; gap: .8rem; padding: 0; list-style: none; }
.modal-feature-list li { position: relative; padding: .8rem 2.7rem .8rem 1rem; border-radius: 12px; color: #5d4a35; background: rgba(233,215,185,.25); }
.modal-feature-list li::before { content: "✓"; position: absolute; right: 1rem; color: #9b713d; font-weight: 900; }
[hidden] { display: none !important; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero-copy .reveal:nth-child(2), .catalog-title .reveal:nth-child(2) { transition-delay: .1s; }
.hero-copy .reveal:nth-child(3), .catalog-title .reveal:nth-child(3) { transition-delay: .2s; }
.hero-copy .reveal:nth-child(4) { transition-delay: .3s; }
.hero-copy .reveal:nth-child(5) { transition-delay: .4s; }
.product-card:nth-child(2n), .value-card:nth-child(2) { transition-delay: .1s; }
.product-card:nth-child(3n), .value-card:nth-child(3) { transition-delay: .2s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(35px,25px) scale(1.08); } }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes centerFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes logoRing { 0%,100% { opacity: .35; transform: scale(1); } 50% { opacity: .8; transform: scale(1.06); } }
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgba(198,154,85,.42); } 70% { box-shadow: 0 0 0 8px rgba(198,154,85,0); } 100% { box-shadow: 0 0 0 0 rgba(198,154,85,0); } }
@keyframes lineTravel { 0%,100% { transform: translateX(50%); opacity: .25; } 50% { transform: translateX(-40%); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translate(-50%,-46%) scale(.96); } }

@media (max-width: 980px) {
  .nav-menu { display: none; }
  .hero { padding-top: 4rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { min-height: 440px; }
  .stats-strip { grid-template-columns: repeat(3,1fr); }
  .stat-note { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card--featured { transform: none; }
  .showcase-grid, .contact-panel { grid-template-columns: 1fr; }
  .showcase-grid { padding: 5rem 0; }
  .showcase-copy { text-align: center; }
  .catalog-hero-inner { padding: 4rem 0; }
  .product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .app-container { width: min(100% - 1.5rem, 1180px); }
  .header-inner { min-height: 76px; }
  .brand-logo-shell { width: 48px; height: 48px; }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: .78rem; }
  .header-cta { width: 45px; min-height: 45px; padding: 0; }
  .header-cta span:first-child { display: none; }
  .hero { min-height: auto; }
  .hero-copy h1, .catalog-title h1 { font-size: 2.6rem; }
  .hero-description { font-size: .93rem; }
  .hero-actions { width: 100%; flex-direction: column; }
  .button { width: 100%; }
  .hero-trust { flex-wrap: wrap; justify-content: center; gap: .7rem 1rem; }
  .hero-visual { min-height: 390px; }
  .visual-rings { width: 340px; height: 340px; }
  .hero-logo-card { padding: 1.5rem; }
  .hero-logo-wrap { width: 135px; height: 135px; border-radius: 32px; }
  .hero-logo-wrap img { border-radius: 25px; }
  .floating-chip--top { top: 7%; right: 0; }
  .floating-chip--bottom { bottom: 8%; left: 0; }
  .stats-strip { margin-top: 2rem; }
  .stat-item { padding: 0 .6rem; text-align: center; }
  .stat-item:first-child { padding-right: .6rem; }
  .stat-item strong { font-size: 1.25rem; }
  .stat-item small { font-size: .63rem; }
  .section-space { padding: 5rem 0; }
  .section-heading, .catalog-toolbar { align-items: stretch; flex-direction: column; gap: 1.5rem; }
  .category-filters { display: grid; grid-template-columns: repeat(3, 1fr); }
  .category-filter { min-width: 0; width: 100%; padding: 0 .6rem; }
  .section-heading h2, .showcase-copy h2, .contact-intro h2, .catalog-toolbar h2 { font-size: 2rem; }
  .value-card { min-height: 280px; }
  .orbit-system { width: 330px; height: 330px; }
  .orbit--inner { inset: 58px; }
  .orbit-center { width: 125px; height: 125px; border-radius: 34px; }
  .orbit-center img { border-radius: 28px; }
  .orbit-node { min-width: 76px; padding: .6rem .7rem; font-size: .7rem; }
  .contact-panel { padding: 1.4rem; gap: 2rem; border-radius: 25px; }
  .contact-item { grid-template-columns: auto 1fr; }
  .contact-item i { display: none; }
  .footer-inner { min-height: 150px; flex-wrap: wrap; justify-content: center; padding: 2rem 0; }
  .footer p { order: 3; width: 100%; text-align: center; }
  .catalog-hero { min-height: 520px; text-align: center; }
  .catalog-hero-inner { flex-direction: column; }
  .catalog-title .eyebrow { justify-content: center; }
  .catalog-mark { flex-basis: 135px; width: 135px; height: 135px; }
  .product-card { min-height: 490px; padding: 1.4rem; }
  .product-detail-btn { right: 1.4rem; left: 1.4rem; }
  .product-modal { padding: 2rem 1.4rem; }
}

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