:root {
  --bg: #0e1114;
  --bg-2: #171c22;
  --ink: #f3efe6;
  --muted: #b5bcc5;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --accent: #c1a56a;
  --accent-soft: #9f8450;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  --max-width: 1240px;
  --op-ink: #0a0f0c;
  --op-gold: #c9a24a;
  --op-gold-bright: #e8c878;
  --op-ivory: #efe9db;
  --op-dim: rgba(239, 233, 219, 0.55);
}

.op-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 45%, #0d1512 0%, var(--op-ink) 70%);
  z-index: 9999;
  animation: opLoaderOut 4.4s ease forwards;
}

@keyframes opLoaderOut {
  0%, 85% {
    opacity: 1;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

.op-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 74, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 74, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 45%, black 0%, transparent 70%);
          mask-image: radial-gradient(ellipse at 50% 45%, black 0%, transparent 70%);
  opacity: 0;
  animation: opGridIn 1.2s ease forwards;
}

@keyframes opGridIn {
  to { opacity: 1; }
}

.op-arc {
  position: absolute;
  width: 70vmin;
  height: 70vmin;
  border: 1px solid rgba(201, 162, 74, 0.18);
  border-radius: 50%;
  border-top-color: rgba(201, 162, 74, 0.5);
  opacity: 0;
  animation: opArcIn 1s ease 0.15s forwards, opSpin 14s linear infinite;
}

@keyframes opArcIn {
  to { opacity: 1; }
}

@keyframes opSpin {
  to { transform: rotate(360deg); }
}

.op-aperture-wrap {
  position: relative;
  width: min(46vw, 220px);
  aspect-ratio: 1;
}

svg.op-aperture {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.op-blade {
  fill: url(#opBladeGrad);
  stroke: rgba(10, 15, 12, 0.6);
  stroke-width: 0.6;
  transform-box: fill-box;
  transform-origin: center;
  animation-name: opBladeOpen;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(.2, .9, .2, 1);
  animation-fill-mode: both;
}

@keyframes opBladeOpen {
  from { transform: translate(0, 0) rotate(0) scale(1); }
  to { transform: var(--open); }
}

.op-lens-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--op-gold);
  opacity: 0.55;
  box-shadow: 0 0 18px rgba(201, 162, 74, 0.25) inset;
}

.op-lens-glow {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 200, 120, 0.35), transparent 70%);
  opacity: 0;
  animation: opGlowPulse 2.4s ease-in-out 1.4s infinite;
}

@keyframes opGlowPulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.5; }
}

.op-mark {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  animation: opMarkIn 0.9s ease 1.5s forwards;
  font-family: "Prata", serif;
}

@keyframes opMarkIn {
  to { opacity: 1; }
}

.op-mark .op-word {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--op-ivory);
  letter-spacing: 0.04em;
}

.op-mark .op-sub {
  margin-top: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--op-dim);
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.op-caption {
  position: absolute;
  bottom: 14%;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--op-dim);
  font-family: "Inter", sans-serif;
  opacity: 0;
  animation: opCapIn 1s ease 2.1s forwards;
}

@keyframes opCapIn {
  to { opacity: 1; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  position: relative;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #12161b 0%, var(--bg) 100%);
  line-height: 1.5;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  width: 34vw;
  height: 34vw;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
  animation: ambientDrift 18s ease-in-out infinite alternate;
}
body::before {
  top: -10vw;
  left: -8vw;
  background: radial-gradient(circle, rgba(193, 165, 106, 0.38), transparent 65%);
}
body::after {
  right: -10vw;
  bottom: 10vh;
  background: radial-gradient(circle, rgba(57, 92, 124, 0.32), transparent 65%);
  animation-duration: 22s;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; background: transparent; color: inherit; }

.promo-bar {
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: #111;
  color: #f7ecdb;
}
.promo-banner {
  margin: 0 auto 8px;
  width: min(var(--max-width), calc(100% - 32px));
  background: linear-gradient(135deg, #1d2b1f, #3f5b3e);
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  text-align: center;
  font-size: 14px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.24) 50%, transparent 80%);
  transform: translateX(-120%);
  animation: shimmer 4.6s linear infinite;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 16, 20, 0.84);
  backdrop-filter: blur(18px);
}
.nav__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__menu, .nav__cart, .iconbtn {
  display: grid;
  place-items: center;
  border-radius: 999px;
  width: 44px;
  height: 44px;
}
.nav__lang {
  height: 38px;
  min-width: 64px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.nav__menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 2px 0;
}
.nav__logo { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.nav__logo-mark {
  font-family: 'Italiana', serif;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.nav__logo-sub {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Uiverse-inspired animated logo badge */
.button.nav__logo-mark {
  position: relative;
  width: 138px;
  height: 42px;
  background-color: #11171d;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  z-index: 1;
  font-family: 'Italiana', serif;
  font-size: 29px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.button.nav__logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -4px;
  top: -1px;
  margin: auto;
  width: 146px;
  height: 50px;
  border-radius: 11px;
  background: linear-gradient(-45deg, #d2b06b 0%, #6f8f7f 100%);
  z-index: -2;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button.nav__logo-mark::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, rgba(210, 176, 107, 0.85) 0%, rgba(74, 118, 98, 0.78) 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(14px);
}

.nav__logo:hover .button.nav__logo-mark::after {
  filter: blur(28px);
}

.nav__logo:hover .button.nav__logo-mark::before {
  transform: rotate(-180deg);
}

.nav__logo:active .button.nav__logo-mark::before {
  scale: 0.7;
}
.nav__cart { position: relative; }
.nav__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.side-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}
.side-menu[aria-hidden="false"] { display: block; }
.side-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.38);
}
.side-menu__panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(320px, 90%);
  background: var(--white);
  padding: 22px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.2);
}
.side-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.side-menu__panel a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
html[dir="rtl"] .nav {
  flex-direction: row-reverse;
}
html[dir="rtl"] .nav__cart-count {
  right: auto;
  left: 2px;
}
html[dir="rtl"] .side-menu__panel {
  inset: 0 0 0 auto;
}
html[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}
html[dir="rtl"] .eyebrow {
  letter-spacing: 0.04em;
  text-transform: none;
}
html[dir="rtl"] .nav__logo-sub {
  letter-spacing: 0.08em;
}
html[dir="rtl"] .hero h1,
html[dir="rtl"] .section-head h2,
html[dir="rtl"] .customizer__copy h3,
html[dir="rtl"] .product__title {
  line-height: 1.2;
}
html[dir="rtl"] .hero__copy,
html[dir="rtl"] .section-head,
html[dir="rtl"] .customizer__copy,
html[dir="rtl"] .benefits article,
html[dir="rtl"] .drawer__head,
html[dir="rtl"] .drawer__row,
html[dir="rtl"] .modal__head,
html[dir="rtl"] .checkout-summary__row {
  text-align: right;
}
.eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero,
.collections,
.customizer,
.products,
.benefits {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 60px 0 44px;
  overflow: hidden;
}
.hero > * { position: relative; z-index: 1; }
.hero__mystic3d {
  position: absolute;
  inset: 8px 0 6px;
  z-index: 0;
  pointer-events: none;
  border-radius: 34px;
  overflow: hidden;
  background: radial-gradient(circle at 68% 32%, rgba(166, 138, 86, 0.12), transparent 42%);
}
.hero__robot-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  filter: saturate(1.05) contrast(1.06);
}
.hero__fog {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.5;
}
.hero__fog--one {
  width: 42%;
  height: 56%;
  left: 8%;
  top: 12%;
  background: radial-gradient(circle, rgba(195, 163, 101, 0.28), transparent 72%);
  animation: mysticFogDriftA 10s ease-in-out infinite alternate;
}
.hero__fog--two {
  width: 40%;
  height: 54%;
  right: 10%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(74, 120, 146, 0.2), transparent 70%);
  animation: mysticFogDriftB 12s ease-in-out infinite alternate;
}
.hero__ring3d {
  position: absolute;
  width: 240px;
  height: 240px;
  right: 14%;
  top: 14%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 28px rgba(188, 158, 103, 0.24),
    0 0 42px rgba(188, 158, 103, 0.2);
  transform: perspective(760px) rotateX(68deg) rotateZ(0deg);
  animation: ringOrbitMystic 11s linear infinite;
}
.hero__arm3d {
  position: absolute;
  left: 14%;
  bottom: 14%;
  width: 230px;
  height: 130px;
  transform-origin: 18% 70%;
  transform-style: preserve-3d;
  animation: roboticSweep 6.5s ease-in-out infinite;
}
.hero__arm-joint,
.hero__arm-segment,
.hero__arm-palm {
  position: absolute;
  display: block;
}
.hero__arm-joint {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: radial-gradient(circle at 34% 34%, rgba(255,255,255,0.28), rgba(74, 82, 95, 0.6));
}
.hero__arm-joint--base {
  left: 0;
  bottom: 20px;
}
.hero__arm-joint--mid {
  left: 104px;
  bottom: 58px;
}
.hero__arm-segment {
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(90deg, rgba(79, 90, 103, 0.88), rgba(184, 158, 109, 0.6), rgba(71, 79, 90, 0.92));
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.34);
}
.hero__arm-segment--one {
  width: 96px;
  left: 16px;
  bottom: 28px;
  transform: rotate(20deg);
  transform-origin: left center;
}
.hero__arm-segment--two {
  width: 82px;
  left: 122px;
  bottom: 63px;
  transform: rotate(-22deg);
  transform-origin: left center;
}
.hero__arm-palm {
  width: 30px;
  height: 20px;
  left: 198px;
  bottom: 48px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(193, 166, 113, 0.7), rgba(65, 75, 86, 0.88));
  box-shadow: 0 0 16px rgba(193, 166, 113, 0.28);
}
.hero__mystery {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.88);
  color: #f7ecdb;
  overflow: hidden;
}
.hero__mystery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-130%);
  animation: shimmer 3.6s linear infinite;
}
.hero__mystery-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f3c96d;
  box-shadow: 0 0 0 0 rgba(243, 201, 109, 0.45);
  animation: pulseSignal 2.4s ease-out infinite;
}
.hero__mystery-wave {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(243,201,109,0.15), rgba(243,201,109,0.95), rgba(243,201,109,0.15));
}
.hero__mystery-label {
  position: relative;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__copy {
  padding: 24px 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(25, 43, 31, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(22, 26, 32, 0.72), rgba(16, 20, 26, 0.84));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: 'Italiana', serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  margin: 0 0 14px;
}
.hero p { font-size: 17px; color: var(--muted); margin: 0 0 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid { background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.btn--ghost { border: 1px solid var(--line-strong); background: rgba(255,255,255,0.06); }
.btn--block { width: 100%; }
.product__add {
  background: #000 !important;
  color: #fff !important;
}
.hero__showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(20, 25, 31, 0.72), rgba(15, 19, 24, 0.84));
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(3px);
}
.hero__showcase img {
  height: 210px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255,255,255,0.72);
}

.glow-frame {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.glow-frame::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(216, 185, 119, 0.95), rgba(39, 67, 51, 0.92) 52%, rgba(232, 220, 198, 0.92));
  z-index: -2;
  pointer-events: none;
  background-size: 200% 200%;
  animation: cinematicBorderFlow 9s ease-in-out infinite alternate;
}

.glow-frame::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 225, 160, 0.36), transparent 44%),
    radial-gradient(circle at 78% 28%, rgba(62, 108, 83, 0.34), transparent 40%),
    radial-gradient(circle at 50% 84%, rgba(232, 220, 198, 0.3), transparent 46%);
  transform: translate3d(0, 0, 0) scale(0.98);
  filter: blur(16px);
  z-index: -3;
  pointer-events: none;
  opacity: 0.9;
  animation: cinematicAuraDrift 12s ease-in-out infinite;
}

.hero__copy.glow-frame,
.hero__showcase.glow-frame {
  overflow: visible;
}

.hero__copy.glow-frame > *,
.hero__showcase.glow-frame > * {
  position: relative;
  z-index: 2;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.section-head h2,
.customizer__copy h3 { margin: 0; font-size: clamp(24px, 3vw, 32px); }
.collections { padding: 28px 0 36px; }
.collections__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.collection-card {
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,239,225,0.82));
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: floatCard 12s ease-in-out infinite;
}
.collections__grid .collection-card:nth-child(2n) { animation-duration: 14s; }
.collections__grid .collection-card:nth-child(3n) { animation-duration: 16s; }
.collection-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(17, 17, 17, 0.12);
}
.collection-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
}
.collection-card h3 { margin: 0 0 6px; font-size: 18px; }
.collection-card p { margin: 0; color: var(--muted); font-size: 14px; }

.customizer {
  padding: 18px 0 34px;
}
.customizer__card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,240,227,0.88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.customizer__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, transparent 35%, rgba(17,17,17,0.04), transparent 78%);
  pointer-events: none;
}
.customizer__copy p,
.customizer__copy li { color: var(--muted); }
.customizer__copy ul { padding-left: 18px; }
.customizer__form { display: flex; flex-direction: column; gap: 12px; }
.customizer__preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f2e8d4;
}
.customizer__preview--upload {
  min-height: 280px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(17,17,17,0.08), rgba(255,255,255,0.08)),
    url('farmess.jpg') center/cover;
}
.customizer__preview img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.customizer__preview--upload img {
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  min-height: 252px;
  margin: 14px;
  border-radius: 18px;
  border: 6px solid rgba(255,255,255,0.9);
  box-shadow: 0 18px 28px rgba(17, 17, 17, 0.2);
}
.customizer__preview-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  backdrop-filter: blur(8px);
}
.customizer__preview-copy span {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
}
[data-mode="uploaded"] + .customizer__preview-copy {
  opacity: 0;
  pointer-events: none;
}
.customizer__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.06);
  font-weight: 700;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}
.customizer__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.products {
  padding: 22px 0 30px;
}
.products--alt {
  padding: 18px 0 26px;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,240,227,0.94));
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: floatCard 11s ease-in-out infinite;
}
.products__grid .product:nth-child(2n) { animation-duration: 14s; }
.products__grid .product:nth-child(3n) { animation-duration: 17s; }
.product__subcopy {
  color: var(--muted);
  font-size: 13px;
  min-height: 40px;
}
.product--custom-chooser {
  min-height: 100%;
}
.product--custom-chooser-inline {
  align-self: stretch;
}
.product--custom-chooser-inline .product__body {
  min-height: 100%;
  justify-content: center;
}
.product__art {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(145deg, rgba(17,17,17,0.05), rgba(255,255,255,0.15)),
    url('farmess.jpg') center/cover;
  display: grid;
  place-items: center;
  padding: 12px;
}
.product__art img {
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 24px rgba(17, 17, 17, 0.18);
  border: 6px solid rgba(255,255,255,0.85);
}
.product__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__title {
  font-weight: 700;
  margin: 0;
  min-height: 44px;
}
.product__price { font-weight: 700; }
.product__opts select { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--line-strong); }
.custom-section-note {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px dashed var(--line-strong);
  background: rgba(255,255,255,0.54);
  color: var(--muted);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 6px 0 40px;
}
.benefits article {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
  animation: floatCard 15s ease-in-out infinite;
}
.benefits h3 { margin: 0 0 6px; font-size: 18px; }
.benefits p { margin: 0; color: var(--muted); }

.footer {
  width: 100%;
  margin: 0;
  padding: 34px 0 38px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0f0f0f;
  color: #f4f4f4;
  border-radius: 0;
}
.footer__inner {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 24px;
  direction: rtl;
}
.footer h3,
.footer h4 { margin: 0 0 8px; }
.footer p,
.footer a {
  margin: 4px 0;
  color: rgba(255,255,255,0.78);
}
.footer__links,
.footer__owner,
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer a:hover {
  color: #ffffff;
}
.footer__owner p {
  max-width: 42ch;
}

/* Dark luxe overrides for cards and content panels */
.hero__copy,
.hero__showcase,
.customizer__card,
.collection-card,
.product,
.benefits article,
.cart-item,
.modal__panel,
.drawer__panel {
  background: linear-gradient(180deg, rgba(20, 25, 31, 0.96), rgba(14, 18, 22, 0.95)) !important;
  border-color: rgba(255, 255, 255, 0.12);
}

.hero p,
.collection-card p,
.customizer__copy p,
.customizer__copy li,
.product__subcopy,
.benefits p,
.cart-item__sub,
.checkout-fine {
  color: var(--muted);
}

.field input,
.field select,
.field textarea,
.form-grid input,
.form-grid select,
.form-grid textarea,
.product__opts select {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--ink);
}

.customizer__price {
  background: rgba(255, 255, 255, 0.06);
}

.qty button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: calc(var(--wa-base-bottom, 34px) + var(--wa-offset, 0px) + env(safe-area-inset-bottom));
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 26px rgba(37, 211, 102, 0.35);
  z-index: 140;
  animation: pulseSignal 2.8s ease-out infinite;
  transition: bottom 180ms ease, transform 160ms ease;
}
body.has-cartbar .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.cartbar:not([hidden]) ~ .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.whatsapp-float:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .whatsapp-float {
    --wa-base-bottom: 30px;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    --wa-base-bottom: 26px;
  }
}

.cartbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #111;
  color: #fff;
  box-shadow: 0 -12px 30px rgba(17, 17, 17, 0.16);
}
.cartbar__msg { flex: 1; text-align: center; font-weight: 600; }
.cartbar__star { color: #f3c96d; }
.cartbar__btn { padding: 8px 14px; border-radius: 999px; background: #fff; color: #111; font-weight: 700; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}
.drawer[aria-hidden="false"] { display: block; }
.drawer__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(17, 17, 17, 0.45);
}
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: min(460px, 100%);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(247,240,227,0.96));
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}
.drawer__head, .drawer__foot { padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; }
.drawer__items { flex: 1; overflow: auto; padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }
.drawer__row { display: flex; justify-content: space-between; align-items: center; font-size: 15px; margin-bottom: 12px; }
.drawer__row--discount { color: #2d6648; }
.cart-item { display: flex; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,239,225,0.74)); }
.cart-item__art {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(17,17,17,0.16), rgba(17,17,17,0.04)), url('farmess.jpg') center/cover;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17,17,17,0.08);
}
.cart-item__artframe {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 10px 18px rgba(17, 17, 17, 0.2);
}
.cart-item__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.cart-item__body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-item__title { font-weight: 700; }
.cart-item__sub { color: var(--muted); font-size: 13px; }
.cart-item__sub--muted { font-size: 12px; opacity: 0.82; }
.cart-item__row { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.qty { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px 8px; }
.qty button { width: 24px; height: 24px; border-radius: 999px; }
.qty button:hover { background: #f0ebdf; }
.cart-item__remove { font-size: 12px; color: #b05454; text-decoration: underline; }
.empty { color: var(--muted); text-align: center; padding: 30px 0; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 17, 17, 0.7);
}
.modal[aria-hidden="false"] { display: flex; }
.modal__panel {
  position: relative;
  z-index: 6;
  width: min(620px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(248,242,230,0.98));
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.3);
}
.modal__head {
  padding: 18px 20px 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.modal__body { padding: 10px 20px 20px; display: flex; flex-direction: column; gap: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.form-grid label, .form-grid > div { display: flex; flex-direction: column; gap: 6px; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid input,
.form-grid select,
.form-grid textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 12px; }
.checkout-summary { border-top: 1px solid var(--line); padding-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.checkout-summary__row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.checkout-summary__row--discount { color: #2d6648; }
.checkout-summary__total { font-weight: 700; padding-top: 8px; border-top: 1px solid var(--line); }
.checkout-fine { font-size: 13px; color: var(--muted); margin: 0; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  z-index: 120;
  padding: 12px 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
}

@keyframes ambientDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(6vw, 4vh, 0) scale(1.12); }
}

@keyframes shimmer {
  to { transform: translateX(130%); }
}

@keyframes pulseSignal {
  0% { box-shadow: 0 0 0 0 rgba(243, 201, 109, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(243, 201, 109, 0); }
  100% { box-shadow: 0 0 0 0 rgba(243, 201, 109, 0); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes cinematicBorderFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes cinematicAuraDrift {
  0% {
    transform: translate3d(-1.5%, 0, 0) scale(0.97);
    filter: blur(14px);
  }
  50% {
    transform: translate3d(1.8%, -1%, 0) scale(1.02);
    filter: blur(18px);
  }
  100% {
    transform: translate3d(-1%, 1.4%, 0) scale(0.98);
    filter: blur(16px);
  }
}

@keyframes mysticFogDriftA {
  0% { transform: translate3d(-3%, 2%, 0) scale(0.94); }
  100% { transform: translate3d(4%, -3%, 0) scale(1.08); }
}

@keyframes mysticFogDriftB {
  0% { transform: translate3d(2%, -2%, 0) scale(0.98); }
  100% { transform: translate3d(-4%, 3%, 0) scale(1.1); }
}

@keyframes ringOrbitMystic {
  0% { transform: perspective(760px) rotateX(68deg) rotateZ(0deg); }
  100% { transform: perspective(760px) rotateX(68deg) rotateZ(360deg); }
}

@keyframes roboticSweep {
  0% { transform: rotate(-8deg) translateY(0); }
  30% { transform: rotate(8deg) translateY(-3px); }
  60% { transform: rotate(-2deg) translateY(2px); }
  100% { transform: rotate(-8deg) translateY(0); }
}

@media (max-width: 920px) {
  .hero,
  .customizer__card {
    grid-template-columns: 1fr;
  }
  .hero__mystic3d {
    inset: 0;
  }
  .hero__arm3d {
    left: 8%;
    bottom: 8%;
    transform: scale(0.86);
  }
  .hero__ring3d {
    right: 8%;
    top: 10%;
    transform: perspective(760px) rotateX(68deg) rotateZ(0deg) scale(0.8);
  }
  .collections__grid,
  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .benefits,
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .op-blade,
  .op-mark,
  .op-caption,
  .op-grid,
  .op-arc,
  .op-lens-glow,
  .op-loader {
    animation-duration: 0.01s !important;
    animation-delay: 0s !important;
  }
}

@media (max-width: 640px) {
  .hero { padding-top: 30px; }
  .hero__showcase { grid-template-columns: 1fr; }
  html[dir="rtl"] .hero h1 {
    font-size: 34px;
    line-height: 1.22;
  }
  html[dir="rtl"] .nav {
    gap: 8px;
  }
  html[dir="rtl"] .nav__logo-mark {
    font-size: 22px;
  }
  html[dir="rtl"] .nav__logo-sub {
    font-size: 9px;
    letter-spacing: 0.04em;
  }
  html[dir="rtl"] .hero__actions {
    gap: 8px;
  }
  html[dir="rtl"] .btn {
    min-height: 44px;
  }
  .glow-frame::after {
    filter: blur(10px);
  }
  .collections__grid,
  .products__grid,
  .customizer__row,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .nav { padding: 12px 14px; }
  .nav__logo-mark { font-size: 24px; }
  .hero h1 { font-size: 40px; }
  .btn { width: 100%; }
}