/* ── VARIABLES ──────────────────────────────────────*/
:root {
  --black:      #0a0a0a;
  --off-black:  #111111;
  --dark:       #1a1a1a;
  --gold:       #c9a84c;
  --gold-light: #e2c27d;
  --gold-dark:  #8B6914;
  --white:      #f8f5ef;
  --off-white:  #ede8de;
  --gray:       #888;
}

/* ── RESET ──────────────────────────────────────────*/
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── GRAIN ──────────────────────────────────────────*/
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── NAV ────────────────────────────────────────────*/
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.96) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo-text {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.38em;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity .3s, color .3s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  background: transparent !important;
  border: 1px solid rgba(201,168,76,.55) !important;
  color: var(--gold) !important;
  padding: 9px 22px !important;
  opacity: 1 !important;
  transition: all .3s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  border-color: var(--gold) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
}

/* ── MOBILE MENU ────────────────────────────────────*/
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 32px; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: .7;
  transition: opacity .2s, color .2s;
}
.mobile-menu a:hover { opacity: 1; color: var(--gold); }
.mobile-cta {
  display: inline-block;
  border: 1px solid rgba(201,168,76,.5) !important;
  color: var(--gold) !important;
  padding: 14px 32px !important;
  opacity: 1 !important;
  font-size: 13px !important;
}

/* ── HERO ───────────────────────────────────────────*/
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 100px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.hero-eyebrow span {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.5vw, 86px);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 13px;
  line-height: 1.95;
  color: rgba(248,245,239,.55);
  max-width: 400px;
  margin-bottom: 48px;
  letter-spacing: .02em;
}
.hero-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

/* ── BUTTONS ────────────────────────────────────────*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity .4s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(248,245,239,.2);
  transition: all .3s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-wsp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 18px 40px;
  transition: all .3s;
  position: relative;
  z-index: 1;
}
.btn-wsp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,.3);
}

/* ── HERO RIGHT ─────────────────────────────────────*/
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-image-wrap { position: relative; width: 100%; height: 100%; }
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82) saturate(1.1);
}
.hero-fallback {
  display: none;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,#1a0f00,#2d1a00);
  align-items: center;
  justify-content: center;
  font-size: 120px;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,var(--black) 0%,transparent 35%),
              linear-gradient(to top,var(--black) 0%,transparent 30%);
}
.hero-stat-strip {
  position: absolute;
  bottom: 60px;
  left: 60px;
  display: flex;
  gap: 56px;
  z-index: 3;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
}
.hero-stat-label {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248,245,239,.4);
  display: block;
  margin-top: 4px;
}

/* ── BRAND STRIP ────────────────────────────────────*/
.brand-strip {
  padding: 36px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201,168,76,.1);
  flex-wrap: wrap;
  gap: 20px;
}
.brand-strip-text {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(248,245,239,.3);
}
.brand-badges { display: flex; gap: 28px; flex-wrap: wrap; }
.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(248,245,239,.48);
}
.badge-icon {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* ── GOLD LINE ──────────────────────────────────────*/
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,transparent,var(--gold),transparent);
  opacity: .25;
}

/* ── ABOUT ──────────────────────────────────────────*/
.about {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-label {
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 26px;
}
.about-content h2 em { font-style: italic; color: var(--gold-light); }
.about-content p {
  font-size: 13px;
  line-height: 2;
  color: rgba(248,245,239,.52);
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.about-feature {
  padding: 20px;
  border: 1px solid rgba(201,168,76,.13);
  position: relative;
}
.about-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--gold);
}
.about-feature-icon { font-size: 20px; margin-bottom: 10px; }
.about-feature h4 {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.about-feature p { font-size: 11px; color: rgba(248,245,239,.38); margin: 0; line-height: 1.7; }

/* ── CATALOG ────────────────────────────────────────*/
.catalog {
  padding: 100px 60px;
  background: var(--off-black);
}
.catalog-header {
  text-align: center;
  margin-bottom: 60px;
}
.catalog-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 14px;
}
.catalog-header h2 em { font-style: italic; color: var(--gold-light); }
.catalog-header p {
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(248,245,239,.42);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.85;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* ── PRODUCT CARD ───────────────────────────────────*/
.product-card {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  transition: transform .4s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); z-index: 2; }
.product-card:hover .product-overlay { opacity: 1; }
.product-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  transition: transform .6s, filter .6s;
}
.product-card:hover .product-img-placeholder { transform: scale(1.05); filter: brightness(.7); }
.product-emoji { font-size: 50px; filter: drop-shadow(0 4px 20px rgba(201,168,76,.4)); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s;
  backdrop-filter: blur(2px);
}
.product-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.product-info {
  padding: 22px;
  border-top: 1px solid rgba(201,168,76,.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.product-desc {
  font-size: 10px;
  line-height: 1.75;
  color: rgba(248,245,239,.38);
  letter-spacing: .04em;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(201,168,76,.08);
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--gold-light);
}
.product-price small {
  font-size: 10px;
  font-weight: 300;
  color: rgba(201,168,76,.55);
  font-family: 'Montserrat', sans-serif;
}
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(201,168,76,.38);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 14px;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}
.btn-order:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* product bg gradients */
.bg-honey    { background: linear-gradient(135deg,#1a0f00,#2d1a00); }
.bg-pollen   { background: linear-gradient(135deg,#1a1500,#2d2400); }
.bg-propolis { background: linear-gradient(135deg,#0d0d0d,#1a1200); }
.bg-royal    { background: linear-gradient(135deg,#0a0a14,#14101f); }
.bg-wild     { background: linear-gradient(135deg,#0f1a0a,#1a2a10); }
.bg-white-h  { background: linear-gradient(135deg,#141414,#1e1e1e); }
.bg-complete { background: linear-gradient(135deg,#1a0d00,#291500); }
.bg-herbal   { background: linear-gradient(135deg,#0a1510,#0f2018); }

/* ── HIGHLIGHT (Miel Completa) ──────────────────────*/
.highlight-section {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.highlight-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(201,168,76,.06) 0%,transparent 70%);
  pointer-events: none;
}
.highlight-visual { display: flex; align-items: center; justify-content: center; }
.highlight-visual img {
  width: 100%;
  max-width: 480px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 60px rgba(201,168,76,.07);
}
.highlight-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 22px;
}
.highlight-content h2 em { font-style: italic; color: var(--gold-light); }
.highlight-content p {
  font-size: 13px;
  line-height: 2;
  color: rgba(248,245,239,.52);
  margin-bottom: 18px;
}
.components-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}
.components-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  color: rgba(248,245,239,.6);
}
.comp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 5px;
  flex-shrink: 0;
}
.comp-name { font-weight: 500; color: var(--gold-light); display: block; font-size: 11px; }
.comp-desc { display: block; font-size: 10px; color: rgba(248,245,239,.38); margin-top: 2px; }

/* ── QUOTE ──────────────────────────────────────────*/
.quote-section {
  padding: 80px 60px;
  text-align: center;
  background: var(--off-black);
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
  position: relative;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: var(--gold);
  opacity: .12;
  line-height: 0;
  position: absolute;
  top: 60px; left: 50%;
  transform: translateX(-50%);
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto 26px;
  position: relative;
  z-index: 1;
}
.quote-author {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* ── PROCESS ────────────────────────────────────────*/
.process { padding: 100px 60px; background: var(--black); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
}
.process-header h2 em { font-style: italic; color: var(--gold-light); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,.09);
}
.process-step { background: var(--black); padding: 48px 34px; }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 76px;
  font-weight: 300;
  color: rgba(201,168,76,.07);
  line-height: 1;
  margin-bottom: 22px;
  display: block;
}
.step-icon { font-size: 26px; margin-bottom: 14px; display: block; }
.step-title {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 500;
}
.step-desc { font-size: 12px; line-height: 1.8; color: rgba(248,245,239,.38); }

/* ── CTA ────────────────────────────────────────────*/
.cta-section {
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--off-black);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,rgba(201,168,76,.07) 0%,transparent 68%);
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.cta-section h2 em { font-style: italic; color: var(--gold-light); }
.cta-section p {
  font-size: 13px;
  color: rgba(248,245,239,.48);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.9;
  position: relative; z-index: 1;
}

/* ── FOOTER ─────────────────────────────────────────*/
footer {
  padding: 56px 60px;
  border-top: 1px solid rgba(201,168,76,.1);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}
.footer-logo-text { font-size: 11px; letter-spacing: .35em; color: rgba(248,245,239,.45); }
.footer-center {
  text-align: center;
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(248,245,239,.22);
  text-transform: uppercase;
  line-height: 1.8;
}
.footer-sub { color: rgba(248,245,239,.13); display: block; margin-top: 4px; }
.footer-right { text-align: right; }
.footer-wsp {
  color: rgba(248,245,239,.38);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .1em;
  transition: color .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-wsp:hover { color: #25D366; }

/* ── LOGIN MODAL ────────────────────────────────────*/
.login-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  align-items: center;
  justify-content: center;
}
.login-modal.active { display: flex; }
.modal-backdrop-close {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(10px);
  border: none;
  cursor: default;
}
.login-box {
  position: relative;
  z-index: 1;
  width: 360px;
  padding: 48px;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,.2);
  text-align: center;
}
.login-logo { margin-bottom: 28px; }
.login-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.login-box > p {
  font-size: 11px;
  color: rgba(248,245,239,.3);
  letter-spacing: .05em;
  margin-bottom: 28px;
}
.login-input-wrap { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.admin-input {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  color: var(--white);
  padding: 11px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  width: 100%;
  transition: border-color .3s;
  outline: none;
}
.admin-input:focus { border-color: var(--gold); }
.admin-input::placeholder { color: rgba(248,245,239,.25); }
.login-btn {
  width: 100%;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  color: var(--black);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px;
  cursor: pointer;
  transition: opacity .3s;
}
.login-btn:hover { opacity: .82; }
.login-error {
  font-size: 11px;
  color: #e0334a;
  margin-top: 12px;
  display: none;
}

/* ── ADMIN MODAL ────────────────────────────────────*/
.admin-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.97);
  backdrop-filter: blur(10px);
  overflow-y: auto;
}
.admin-modal.active { display: block; }
.admin-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 40px 100px;
}
.admin-header {
  padding: 40px 0 28px;
  border-bottom: 1px solid rgba(201,168,76,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.admin-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--gold-light);
}
.admin-close {
  background: transparent;
  border: 1px solid rgba(201,168,76,.28);
  color: var(--gold);
  width: 42px; height: 42px;
  cursor: pointer;
  font-size: 18px;
  transition: all .3s;
}
.admin-close:hover { background: var(--gold); color: var(--black); }
.admin-logout {
  background: transparent;
  border: 1px solid rgba(248,245,239,.15);
  color: rgba(248,245,239,.45);
  padding: 0 18px;
  height: 42px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .3s;
}
.admin-logout:hover { border-color: rgba(248,245,239,.3); color: var(--white); }
.admin-section-title {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.admin-wsp-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.admin-wsp-icon { flex-shrink: 0; }
.admin-wsp-row .admin-input { max-width: 280px; }
.admin-wsp-hint { font-size: 10px; color: rgba(248,245,239,.28); letter-spacing: .05em; }
.admin-table-header {
  display: grid;
  grid-template-columns: 160px 130px 1fr 80px;
  gap: 12px;
  padding: 10px 18px;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(248,245,239,.28);
  border-bottom: 1px solid rgba(201,168,76,.1);
  margin-bottom: 2px;
}
.admin-product-list { display: flex; flex-direction: column; gap: 2px; }
.admin-product-row {
  background: var(--dark);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 160px 130px 1fr 80px;
  gap: 12px;
  align-items: center;
  transition: background .2s;
}
.admin-product-row:hover { background: #222; }
.admin-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-toggle {
  width: 44px; height: 24px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: background .3s;
  border: none;
  margin: 0 auto;
  display: block;
  flex-shrink: 0;
}
.admin-toggle.on { background: var(--gold); }
.admin-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: white;
  transition: left .3s;
}
.admin-toggle.on::after { left: 23px; }
.admin-actions { margin-top: 36px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.admin-save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  color: var(--black);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: opacity .3s, transform .2s;
}
.admin-save:hover { opacity: .84; transform: translateY(-1px); }

/* ── TOAST ──────────────────────────────────────────*/
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--gold);
  color: var(--black);
  padding: 13px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 99999;
  transform: translateY(80px);
  opacity: 0;
  transition: all .4s;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── ANIMATIONS ─────────────────────────────────────*/
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp .8s ease both; }
.hero-left > *:nth-child(1) { animation-delay: .1s; }
.hero-left > *:nth-child(2) { animation-delay: .25s; }
.hero-left > *:nth-child(3) { animation-delay: .4s; }
.hero-left > *:nth-child(4) { animation-delay: .55s; }
.hero-left > *:nth-child(5) { animation-delay: .7s; }

/* ── RESPONSIVE ─────────────────────────────────────*/
@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  nav { padding: 18px 28px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 110px 28px 60px; }
  .hero-right { height: 55vw; min-height: 280px; }
  .hero-stat-strip { left: 28px; bottom: 28px; gap: 28px; }
  .hero-stat-num { font-size: 26px; }
  .about { grid-template-columns: 1fr; padding: 70px 28px; }
  .about-logo { display: none; }
  .catalog { padding: 64px 28px; }
  .highlight-section { grid-template-columns: 1fr; padding: 64px 28px; }
  .highlight-visual { display: none; }
  .process { padding: 64px 28px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 80px 28px; }
  footer { grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 40px 28px; }
  .footer-right { text-align: center; }
  .brand-strip { padding: 28px; flex-direction: column; text-align: center; }
  .admin-table-header { grid-template-columns: 1fr 100px 60px; }
  .admin-product-row { grid-template-columns: 1fr 100px 60px; }
  .admin-product-row .admin-input:nth-child(3) { display: none; }
  .admin-table-header span:nth-child(3) { display: none; }
}
@media (max-width: 600px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .components-list { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stat-strip { flex-wrap: wrap; gap: 16px; }
  .brand-badges { gap: 14px; justify-content: center; }
  .admin-table-header { grid-template-columns: 1fr 90px 50px; }
  .admin-product-row { grid-template-columns: 1fr 90px 50px; }
}

/* ── ADMIN IMAGE UPLOAD ─────────────────────────────*/
.admin-table-header {
  grid-template-columns: 160px 140px 110px 1fr 60px !important;
}
.admin-product-row {
  grid-template-columns: 160px 140px 110px 1fr 60px !important;
  align-items: center;
  padding: 14px 18px !important;
}
.admin-img-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-img-preview-wrap {
  width: 120px;
  height: 80px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.admin-img-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.admin-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.03);
}
.admin-img-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-img-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 12px;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
}
.admin-img-btn:hover { background: var(--gold); color: var(--black); }
.admin-img-btn[disabled] { opacity: .4; cursor: wait; }
.admin-img-remove {
  background: transparent;
  border: 1px solid rgba(224,51,74,.35);
  color: #e0334a;
  width: 26px; height: 26px;
  cursor: pointer;
  font-size: 11px;
  transition: all .3s;
  flex-shrink: 0;
}
.admin-img-remove:hover { background: #e0334a; color: white; }
.admin-img-stat {
  font-size: 9px;
  letter-spacing: .08em;
}

/* product-real-img in catalog */
.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s, filter .6s;
}

@media (max-width: 900px) {
  .admin-table-header { grid-template-columns: 130px 1fr 80px 50px !important; }
  .admin-product-row  { grid-template-columns: 130px 1fr 80px 50px !important; }
  .admin-product-row > .admin-input:nth-child(4) { display: none; }
  .admin-table-header span:nth-child(4) { display: none; }
}
@media (max-width: 600px) {
  .admin-table-header { grid-template-columns: 110px 1fr 50px !important; }
  .admin-product-row  { grid-template-columns: 110px 1fr 50px !important; }
  .admin-product-row > .admin-input { display: none !important; }
  .admin-product-name { font-size: 14px; }
}

/* Admin name input */
.admin-name-input {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 17px !important;
  color: var(--white) !important;
  border-color: rgba(201,168,76,.1) !important;
}
.admin-name-input:focus {
  border-color: var(--gold) !important;
}
