/* ============================================================
   ŞAL KUYUMCULUK — Lüks Tema
   ============================================================ */
:root {
  --bg:        #0a0a0d;
  --bg-soft:   #101014;
  --bg-card:   #14141a;
  --line:      rgba(212, 175, 55, .16);
  --gold:      #d4af37;
  --gold-soft: #e8c96a;
  --gold-pale: #f5e6bf;
  --text:      #e9e6df;
  --muted:     #9a968c;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

::selection { background: rgba(212, 175, 55, .35); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a32; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============ TOPBAR ============ */
.topbar {
  background: #060608;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--muted);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar a { color: var(--muted); transition: color .3s; display: inline-flex; align-items: center; gap: 5px; }
.topbar a:hover { color: var(--gold-soft); }
.topbar-left { display: flex; align-items: center; gap: 10px; }
.tb-sep { opacity: .4; }
.tb-ico { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.tb-social { display: inline-flex; }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 13, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background .4s;
}
.navbar.scrolled { border-bottom-color: var(--line); background: rgba(8, 8, 10, .94); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { color: var(--gold); display: inline-flex; filter: drop-shadow(0 0 8px rgba(212, 175, 55, .35)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--serif); font-size: 26px; font-weight: 700; letter-spacing: .22em;
  background: linear-gradient(120deg, #a8842c, #f0d98c 40%, #c9a227 70%, #f5e6bf);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: goldShimmer 6s linear infinite;
}
.brand-sub { font-size: 9.5px; letter-spacing: .52em; color: var(--muted); font-weight: 400; }

@keyframes goldShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 13.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 400;
  color: var(--text); position: relative; padding: 6px 0; transition: color .3s;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 50%; bottom: 0; width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width .4s var(--ease), left .4s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { width: 100%; left: 0; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-soft); }

.nav-cta {
  border: 1px solid var(--gold); padding: 9px 22px !important; color: var(--gold) !important;
  transition: all .4s var(--ease) !important;
}
.nav-cta:hover { background: var(--gold); color: #0a0a0d !important; box-shadow: 0 0 24px rgba(212, 175, 55, .4); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--gold); margin: 5px 0; transition: .35s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ CANLI PİYASA ŞERİDİ ============ */
.ticker {
  background: #07070a;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  overflow: hidden;
  animation: tickerIn .6s var(--ease);
}
@keyframes tickerIn { from { opacity: 0; } to { opacity: 1; } }
.ticker-inner { display: flex; align-items: stretch; gap: 0; min-height: 46px; }
.ticker-badge {
  display: flex; align-items: center; gap: 9px; flex-shrink: 0;
  padding: 0 18px; letter-spacing: .18em; font-weight: 500; font-size: 11.5px;
  color: var(--gold-soft);
  background: linear-gradient(140deg, rgba(212, 175, 55, .14), rgba(212, 175, 55, .04));
  border-right: 1px solid var(--line); border-left: 1px solid var(--line);
}
.tk-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #46d97e;
  box-shadow: 0 0 8px rgba(70, 217, 126, .9);
  animation: dotPulseT 2s ease-in-out infinite;
}
@keyframes dotPulseT { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.tk-time { color: var(--muted); letter-spacing: .05em; font-weight: 300; }
.ticker-items {
  display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; flex: 1;
}
.ticker-items::-webkit-scrollbar { display: none; }
.ticker-item {
  display: flex; align-items: center; gap: 10px; padding: 0 22px; white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, .05);
}
.ti-label { color: var(--muted); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; }
.ti-value { font-family: 'Consolas', 'Menlo', monospace; font-size: 15px; color: var(--gold-pale); font-weight: 600; letter-spacing: .02em; }
.ti-unit { color: var(--gold); font-size: 12px; }
.ti-change { font-family: 'Consolas', monospace; font-size: 11.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; }
.ti-change.up { color: #46d97e; }
.ti-change.down { color: #e06060; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; padding: 14px 36px; font-family: var(--sans);
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: all .45s var(--ease); border: 1px solid transparent;
}
.btn-gold {
  background: linear-gradient(120deg, #b08d2a, #e8c96a, #c9a227);
  background-size: 200% auto; color: #100d05;
}
.btn-gold:hover { background-position: right center; box-shadow: 0 8px 30px rgba(212, 175, 55, .35); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(233, 230, 223, .3); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); box-shadow: 0 0 20px rgba(212, 175, 55, .15); }
.btn-outline { border-color: var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #0a0a0d; box-shadow: 0 8px 30px rgba(212, 175, 55, .3); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: calc(100vh - 114px); display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(212, 175, 55, .12), transparent 60%),
    radial-gradient(ellipse 45% 40% at 85% 100%, rgba(212, 175, 55, .06), transparent 60%),
    var(--bg);
}
.hero-photo {
  background-size: cover;
  background-position: center 40%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 11, .82) 0%, rgba(8, 8, 11, .6) 45%, rgba(10, 10, 13, .92) 100%),
    radial-gradient(ellipse 60% 60% at 50% 45%, rgba(8, 8, 11, .15), rgba(8, 8, 11, .55));
}
@keyframes heroZoom {
  from { background-size: 105% auto; }
}
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 40%, rgba(6, 6, 8, .6) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 90px 24px; }

.hero-ornament { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--gold); margin-bottom: 26px; }
.orn-line { width: 70px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.hero-ornament .orn-line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }

.hero-kicker { font-size: 15px; letter-spacing: .5em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; font-weight: 400; }
.hero-title {
  font-family: var(--serif); font-size: clamp(46px, 8vw, 92px); font-weight: 500;
  line-height: 1.08; letter-spacing: .01em; margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, #a8842c, #f0d98c 40%, #c9a227 70%, #f5e6bf);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: goldShimmer 6s linear infinite;
}
.hero-subtitle { font-size: 16px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin-bottom: 44px; }
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll span {
  display: block; width: 1px; height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .25; transform: scaleY(.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============ SECTIONS ============ */
.section { padding: 110px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-kicker { font-size: 12.5px; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 400; }
.section-title { font-family: var(--serif); font-size: clamp(32px, 4.5vw, 48px); font-weight: 500; line-height: 1.2; }
.section-title.left { text-align: left; }
.section-title.small { font-size: clamp(26px, 3vw, 34px); margin-bottom: 30px; }
.section-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 22px; color: var(--gold); }
.section-divider.left { justify-content: flex-start; }
.section-divider span { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-divider span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.section-divider i { font-style: normal; font-size: 11px; animation: gemGlow 3s ease-in-out infinite; }
@keyframes gemGlow {
  0%, 100% { text-shadow: 0 0 4px rgba(212, 175, 55, .3); }
  50% { text-shadow: 0 0 16px rgba(212, 175, 55, .9); }
}

/* ============ CATEGORY CARDS ============ */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
.category-card {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(160deg, var(--bg-card), #0e0e12);
  border: 1px solid var(--line); padding: 52px 26px 44px;
  transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.category-card.has-photo { min-height: 340px; display: flex; align-items: flex-end; padding: 0; text-align: left; }
.cc-photo {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .9s var(--ease);
}
.category-card.has-photo:hover .cc-photo { transform: scale(1.08); }
.cc-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 13, .1) 30%, rgba(10, 10, 13, .55) 65%, rgba(8, 8, 11, .95) 100%);
  transition: background .5s;
}
.category-card.has-photo .cc-content { position: relative; z-index: 2; padding: 26px 24px 24px; width: 100%; }
.category-card.has-photo h3 { text-shadow: 0 2px 14px rgba(0, 0, 0, .8); }
.category-card:hover { transform: translateY(-8px); border-color: rgba(212, 175, 55, .5); box-shadow: 0 24px 50px rgba(0, 0, 0, .5), 0 0 30px rgba(212, 175, 55, .08); }
.cc-icon { color: var(--gold); margin-bottom: 22px; display: inline-flex; transition: transform .5s var(--ease), filter .5s; }
.category-card:hover .cc-icon { transform: scale(1.12) rotate(-4deg); filter: drop-shadow(0 0 12px rgba(212, 175, 55, .6)); }
.category-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin-bottom: 10px; letter-spacing: .04em; }
.cc-link { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.cc-link i { font-style: normal; transition: transform .35s var(--ease); display: inline-block; }
.category-card:hover .cc-link { color: var(--gold-soft); }
.category-card:hover .cc-link i { transform: translateX(5px); }
.cc-shine {
  position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .06), transparent);
  transform: skewX(-20deg); transition: left .8s var(--ease); pointer-events: none;
}
.category-card:hover .cc-shine { left: 130%; }

/* ============ ABOUT TEASER ============ */
.section-about-teaser { background: linear-gradient(180deg, var(--bg) 0%, #0d0d11 50%, var(--bg) 100%); }
.about-teaser-grid, .about-page-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 70px; align-items: center; }
.about-visual { display: flex; justify-content: center; }
.about-photo {
  position: relative; width: 360px; max-width: 100%;
}
.about-photo.large { width: 420px; }
.about-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border: 1px solid var(--line);
}
.about-photo::before, .about-photo::after {
  content: ''; position: absolute; width: 54px; height: 54px; border: 1px solid var(--gold); z-index: 2;
}
.about-photo::before { top: -10px; left: -10px; border-right: none; border-bottom: none; }
.about-photo::after { bottom: -10px; right: -10px; border-left: none; border-top: none; }
.ap-badge {
  position: absolute; left: -26px; bottom: 34px; z-index: 3;
  background: linear-gradient(140deg, #16161c, #0d0d11);
  border: 1px solid rgba(212, 175, 55, .45);
  padding: 18px 26px; text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .55), 0 0 24px rgba(212, 175, 55, .08);
}
.ap-year { display: block; font-family: var(--serif); font-size: 42px; font-weight: 600; line-height: 1; color: var(--gold-pale); }
.ap-label { letter-spacing: .28em; text-transform: uppercase; font-size: 11px; color: var(--muted); }
.about-text p { color: var(--muted); margin-bottom: 20px; }
.about-text .section-title { margin-bottom: 24px; }
.about-body { color: var(--muted); font-size: 16.5px; }

.stats-row { display: flex; gap: 46px; margin: 34px 0 38px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num, .stat-plus {
  font-family: var(--serif); font-size: 44px; font-weight: 600; color: var(--gold-soft); line-height: 1;
  display: inline;
}
.stat-num { display: inline-block; }
.stat-plus { margin-left: 1px; }
.stat > .stat-label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ============ PRODUCT CARDS ============ */
.section-featured { background: linear-gradient(180deg, var(--bg), #0c0c10 50%, var(--bg)); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 30px; margin-bottom: 54px; }
.product-card {
  background: var(--bg-card); border: 1px solid var(--line); overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(212, 175, 55, .45); box-shadow: 0 26px 60px rgba(0, 0, 0, .55); }
.pc-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: radial-gradient(ellipse at 50% 40%, #1c1c24, #101014); }
.pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product-card:hover .pc-media img { transform: scale(1.07); }
.pc-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(212, 175, 55, .5);
}
.pc-placeholder svg { animation: gemGlowSvg 4s ease-in-out infinite; }
@keyframes gemGlowSvg {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, .2)); opacity: .55; }
  50% { filter: drop-shadow(0 0 18px rgba(212, 175, 55, .6)); opacity: .95; }
}
.pc-badge {
  position: absolute; top: 14px; left: 14px; font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-pale);
  background: rgba(10, 10, 13, .72); border: 1px solid var(--line);
  padding: 5px 12px; backdrop-filter: blur(6px);
}
.pc-star { position: absolute; top: 12px; right: 14px; color: var(--gold); font-size: 15px; text-shadow: 0 0 10px rgba(212, 175, 55, .8); }
.pc-body { padding: 22px 22px 26px; text-align: center; }
.pc-body h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; margin-bottom: 8px; letter-spacing: .03em; }
.pc-price { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }

/* ============ VALUES ============ */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.value-card {
  text-align: center; padding: 40px 24px; border: 1px solid transparent;
  transition: border-color .5s, background .5s, transform .5s var(--ease);
}
.value-card:hover { border-color: var(--line); background: var(--bg-card); transform: translateY(-6px); }
.vc-icon {
  width: 66px; height: 66px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--gold);
  transition: box-shadow .5s, transform .5s var(--ease);
}
.value-card:hover .vc-icon { box-shadow: 0 0 24px rgba(212, 175, 55, .25); transform: rotate(-6deg) scale(1.06); }
.value-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 14.5px; }

/* ============ CTA ============ */
.section-cta { background: #08080b; overflow: hidden; }
.cta-photo { background-size: cover; background-position: center 35%; position: relative; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 11, .93) 0%, rgba(8, 8, 11, .82) 50%, rgba(8, 8, 11, .95) 100%);
}
.cta-photo .container { position: relative; z-index: 2; }
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 65% at 50% 110%, rgba(212, 175, 55, .13), transparent 65%);
}
.cta-text { color: var(--muted); max-width: 560px; margin: 20px auto 36px; }

/* ============ PAGE HERO / BREADCRUMB ============ */
.page-hero {
  padding: 90px 0 70px; text-align: center;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(212, 175, 55, .12), transparent 60%), var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, .03);
}
.page-hero-slim { padding: 34px 0; text-align: left; }
.page-title { font-family: var(--serif); font-size: clamp(38px, 6vw, 62px); font-weight: 500; }
.breadcrumb { font-size: 13px; letter-spacing: .08em; color: var(--muted); display: flex; gap: 10px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color .3s; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb i { font-style: normal; opacity: .5; }
.breadcrumb span { color: var(--gold-soft); }

/* ============ FILTER BAR ============ */
.filter-bar { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.filter-chip {
  padding: 10px 26px; border: 1px solid var(--line); font-size: 12.5px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  transition: all .4s var(--ease);
}
.filter-chip:hover { color: var(--gold-soft); border-color: rgba(212, 175, 55, .5); }
.filter-chip.active { background: linear-gradient(120deg, #b08d2a, #e8c96a, #c9a227); color: #100d05; border-color: transparent; font-weight: 500; }

.empty-state { text-align: center; padding: 80px 0; color: var(--muted); }
.empty-state svg { color: rgba(212, 175, 55, .4); margin-bottom: 18px; }

/* ============ PRODUCT DETAIL ============ */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pd-media {
  position: relative; aspect-ratio: 1 / 1; border: 1px solid var(--line); overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, #1c1c24, #101014);
}
.pd-media img { width: 100%; height: 100%; object-fit: cover; }
.pd-placeholder { position: absolute; inset: 0; }
.pd-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 46px); font-weight: 500; margin: 6px 0 4px; }
.pd-info .section-divider { margin: 18px 0 26px; }
.pd-price { font-family: var(--serif); font-size: 30px; color: var(--gold-soft); margin-bottom: 24px; }
.pd-desc { color: var(--muted); font-size: 16.5px; margin-bottom: 34px; }
.pd-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.pd-notes { list-style: none; color: var(--muted); font-size: 14px; display: flex; flex-direction: column; gap: 8px; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 70px; align-items: start; }
.ci-item { display: flex; gap: 18px; margin-bottom: 28px; }
.ci-ico {
  flex: 0 0 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--gold);
}
.ci-item h4 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.ci-item p { color: var(--muted); font-size: 15px; }
.ci-item a { color: var(--muted); transition: color .3s; }
.ci-item a:hover { color: var(--gold-soft); }
.map-btn { margin-top: 8px; }

.contact-form-wrap {
  background: var(--bg-card); border: 1px solid var(--line); padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 9px;
}
.form-group input, .form-group textarea {
  width: 100%; background: #0d0d11; border: 1px solid rgba(255, 255, 255, .08);
  color: var(--text); padding: 13px 16px; font-family: var(--sans); font-size: 15px;
  transition: border-color .35s, box-shadow .35s; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, .12);
}

.alert { padding: 16px 20px; margin-bottom: 24px; font-size: 15px; border: 1px solid; }
.alert-success { border-color: rgba(90, 180, 110, .5); background: rgba(90, 180, 110, .08); color: #a7e0b6; }
.alert-error { border-color: rgba(220, 90, 90, .5); background: rgba(220, 90, 90, .08); color: #f0b3b3; }

/* ============ FOOTER ============ */
.footer { position: relative; background: #060608; border-top: 1px solid var(--line); padding: 80px 0 0; overflow: hidden; }
.footer-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 40% 50% at 15% 0%, rgba(212, 175, 55, .06), transparent 60%);
}
.footer-grid { display: grid; grid-template-columns: 4fr 2fr 2fr 4fr; gap: 44px; position: relative; }
.footer-logo { margin-bottom: 18px; }
.footer-desc { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--gold);
  transition: all .4s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: #0a0a0d; box-shadow: 0 0 20px rgba(212, 175, 55, .4); }
.footer-col h4 {
  font-family: var(--serif); font-size: 19px; font-weight: 600; margin-bottom: 20px;
  color: var(--gold-pale); letter-spacing: .04em;
}
.footer-links, .footer-contact { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: var(--muted); font-size: 14.5px; transition: color .3s, padding-left .3s; }
.footer-links a:hover { color: var(--gold-soft); padding-left: 6px; }
.footer-contact li { color: var(--muted); font-size: 14.5px; display: flex; gap: 10px; align-items: baseline; }
.footer-contact a { color: var(--muted); transition: color .3s; }
.footer-contact a:hover { color: var(--gold-soft); }
.fc-ico { color: var(--gold); font-size: 12px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, .05); margin-top: 60px; padding: 24px 0;
  font-size: 13px; color: var(--muted);
}
.footer-since { letter-spacing: .1em; color: rgba(212, 175, 55, .6); }

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1fae54; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
  transition: transform .35s var(--ease), box-shadow .35s;
  animation: fabPulse 3s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 14px 36px rgba(31, 174, 84, .45); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, .45), 0 0 0 0 rgba(31, 174, 84, .45); }
  60% { box-shadow: 0 10px 30px rgba(0, 0, 0, .45), 0 0 0 16px rgba(31, 174, 84, 0); }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .42s; }

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser-grid, .about-page-grid { grid-template-columns: 1fr; gap: 46px; }
  .about-visual { order: -1; }
}

@media (max-width: 820px) {
  .topbar-right .tb-hours { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: min(320px, 82vw); height: 100vh;
    background: rgba(8, 8, 10, .98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 30px;
    border-left: 1px solid var(--line); transition: right .5s var(--ease); z-index: 99;
  }
  .nav-links.open { right: 0; box-shadow: -30px 0 80px rgba(0, 0, 0, .6); }
  .nav-toggle { position: relative; z-index: 100; }
  .product-detail, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 30px 22px; }
  .section { padding: 76px 0; }
  .stats-row { gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
