/* ═══════════════════════════════════════
   TEMIR USTASI — style.css
   Palette: Steel Blue + Clean White
   ═══════════════════════════════════════ */

:root {
  --steel:     #1a2744;
  --steel-mid: #243460;
  --blue:      #2a5fd6;
  --blue-light:#6eb4f7;
  --text:      #0f1626;
  --text-sub:  #4a5568;
  --text-muted:#718096;
  --bg:        #ffffff;
  --bg-soft:   #f7f9fc;
  --bg-card:   #ffffff;
  --border:    #e2e8f0;
  --border-mid:#cbd5e0;
  --shadow-sm: 0 1px 3px rgba(26,39,68,.08);
  --shadow:    0 4px 16px rgba(26,39,68,.10);
  --shadow-lg: 0 12px 40px rgba(26,39,68,.14);
  --radius:    12px;
  --radius-sm: 8px;
  --max-w:     1200px;
  --transition: .2s ease;
  --ember:       #e8720c;
  --ember-light: #ffb057;
  --ember-glow:  rgba(232,114,12,.35);
}

[data-theme="dark"] {
  --text:      #e8edf5;
  --text-sub:  #a0aec0;
  --text-muted:#718096;
  --bg:        #0a0f1e;
  --bg-soft:   #111827;
  --bg-card:   #151d2e;
  --border:    #1e293b;
  --border-mid:#2d3748;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow:    0 4px 16px rgba(0,0,0,.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
@media(min-width:768px){ .container { padding: 0 40px; } }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
[data-theme="dark"] .nav {
  background: rgba(10,15,30,.92);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
}
@media(min-width:768px){ .nav-inner { padding: 0 40px; } }

.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-logo-icon { width: 34px; height: 34px; }
.logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo-img-light { display: none; }
[data-theme="dark"] .logo-img-navy { display: none; }
[data-theme="dark"] .logo-img-light { display: block; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-title {
  font-size: 15px; font-weight: 700; color: var(--steel);
  letter-spacing: -.01em;
}
[data-theme="dark"] .nav-logo-title { color: var(--text); }
.nav-logo-title span { color: var(--blue); }
.nav-logo-sub { font-size: 9px; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }

.nav-links {
  display: none; align-items: center; gap: 28px;
}
@media(min-width:900px){ .nav-links { display: flex; } }
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-sub); transition: color var(--transition); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-toggle {
  display: flex; border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.lang-btn {
  padding: 5px 10px; font-size: 11px; font-weight: 700;
  color: var(--text-muted); background: transparent; transition: all var(--transition);
  letter-spacing: .04em;
}
.lang-btn.active {
  background: var(--steel); color: #fff;
}
[data-theme="dark"] .lang-btn.active { background: var(--blue); }

.theme-btn {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-sub); border: 1px solid var(--border);
  transition: all var(--transition);
}
.theme-btn:hover { background: var(--bg-soft); color: var(--blue); }

.nav-cart {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-sub); border: 1px solid var(--border);
  transition: all var(--transition); position: relative;
}
.nav-cart:hover { background: var(--bg-soft); color: var(--blue); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.cart-badge.hidden { display: none; }

/* ── Narrow phones: keep nav from squeezing ── */
@media(max-width:400px){
  .nav-logo-sub { display: none; }
  .nav-inner { padding: 0 14px; gap: 8px; }
  .nav-right { gap: 6px; }
  .lang-btn { padding: 5px 7px; font-size: 10px; }
  .theme-btn, .nav-cart { width: 30px; height: 30px; }
  .nav-logo-icon { width: 30px; height: 30px; }
  .container { padding: 0 16px; }
}

/* ── MOBILE MENU ── */
.fab-menu {
  position: fixed; bottom: 96px; left: 20px; z-index: 490;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--steel); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  box-shadow: 0 4px 16px rgba(26,39,68,.35);
  border: none; cursor: pointer;
  opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.fab-menu.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab-menu.open { opacity: 1; transform: none; pointer-events: auto; }
@media(min-width:900px){ .fab-menu { display: none; } }
.fab-menu span {
  display: block; width: 18px; height: 1.5px;
  background: #fff; border-radius: 2px;
  transition: all .3s;
}
.fab-menu.open span:nth-child(1){ transform: translateY(5.5px) rotate(45deg); }
.fab-menu.open span:nth-child(2){ opacity: 0; }
.fab-menu.open span:nth-child(3){ transform: translateY(-5.5px) rotate(-45deg); }

.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 600; display: none;
}
.mobile-overlay.show { display: block; }

.mobile-menu {
  position: fixed; left: 0; top: 0; bottom: 0;
  width: 280px; background: var(--bg-card);
  z-index: 700; transform: translateX(-100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 16px;
  background: var(--steel); color: #fff;
}
.mobile-menu-title { font-size: 16px; font-weight: 600; color: #fff; }
.mobile-menu-title strong { color: var(--blue-light); }
.mobile-close {
  color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center;
}
.mobile-menu-links {
  flex: 1; padding: 12px 0; overflow-y: auto;
}
.mobile-menu-links a {
  display: block; padding: 14px 24px;
  font-size: 14px; font-weight: 500; color: var(--text-sub);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.mobile-menu-links a:hover, .mobile-menu-links a.active {
  color: var(--blue); padding-left: 30px;
}
.mobile-menu-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.mobile-phone {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--blue); text-align: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--steel); color: #fff; border-color: var(--steel);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%; pointer-events: none;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.btn-primary:hover::after { left: 130%; }
.btn-primary:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--text); border-color: var(--border-mid);
}
.btn-outline:hover { border-color: var(--steel); color: var(--steel); }
[data-theme="dark"] .btn-outline:hover { border-color: var(--blue-light); color: var(--blue-light); }
.btn-tg {
  background: #229ED9; color: #fff; border-color: #229ED9;
}
.btn-tg:hover { background: #1a8bbf; border-color: #1a8bbf; }

/* ── HERO ── */
.hero {
  padding-top: 100px; padding-bottom: 56px;
  display: flex; align-items: center;
  background: var(--bg-soft);
  position: relative; overflow: hidden;
}
@media(min-width:860px){ .hero { min-height: 92vh; padding-top: 64px; padding-bottom: 40px; } }
[data-theme="dark"] .hero { background: var(--steel); }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(42,95,214,.08) 0%, transparent 70%);
  pointer-events: none;
}
[data-theme="dark"] .hero-bg {
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(110,180,247,.06) 0%, transparent 70%);
}
.hero-watermark {
  position: absolute; top: 50%; left: -80px; width: 460px; height: 460px;
  transform: translateY(-50%) rotate(-8deg); opacity: .05; pointer-events: none; z-index: 0;
}
.hero-watermark img { width: 100%; height: 100%; object-fit: contain; }
@media(max-width:860px){ .hero-watermark { width: 280px; height: 280px; left: -60px; opacity: .04; } }
.hero-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; padding-top: 60px; padding-bottom: 60px;
  position: relative; z-index: 2;
}
@media(min-width:860px){
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
}
.hero-label {
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title-main { color: var(--text); }
.hero-title-accent { color: var(--blue); }
.hero-desc {
  font-size: 15px; color: var(--text-sub);
  max-width: 440px; margin-bottom: 32px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--steel); line-height: 1;
}
[data-theme="dark"] .hero-stat-num { color: var(--blue-light); }
.hero-stat-label { font-size: 11px; color: var(--text-muted); letter-spacing: .04em; margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual-inner {
  width: 100%; max-width: 420px;
  background: linear-gradient(135deg, #1a2744 0%, #243460 100%);
  border-radius: 24px; padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
  animation: heroCardIn .8s cubic-bezier(.2,.8,.2,1) both;
}
.hero-svg { width: 100%; height: auto; position: relative; z-index: 2; }

/* Ember spark field — the site's signature motif: cold steel, warm forge */
.ember-field {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  overflow: hidden; border-radius: 24px;
}
.ember {
  position: absolute; bottom: -8px;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--ember-light);
  box-shadow: 0 0 6px 1px var(--ember-glow);
  opacity: 0;
  animation-name: emberRise;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@keyframes emberRise {
  0%   { opacity: 0; transform: translate(0,0) scale(.6); }
  8%   { opacity: 1; }
  70%  { opacity: .7; }
  100% { opacity: 0; transform: translate(var(--drift,10px), -240px) scale(1); }
}
@keyframes heroCardIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Corner brackets — premium "frame" detail */
.hero-corner { position: absolute; width: 26px; height: 26px; z-index: 3; opacity: .55; }
.hero-corner::before, .hero-corner::after { content: ''; position: absolute; background: var(--ember-light); }
.hero-corner-tl { top: 14px; left: 14px; }
.hero-corner-tr { top: 14px; right: 14px; transform: scaleX(-1); }
.hero-corner-bl { bottom: 14px; left: 14px; transform: scaleY(-1); }
.hero-corner-br { bottom: 14px; right: 14px; transform: scale(-1,-1); }
.hero-corner::before { top: 0; left: 0; width: 100%; height: 1.5px; }
.hero-corner::after { top: 0; left: 0; width: 1.5px; height: 100%; }

/* Central mark — the brand seal */
.hero-mark {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 36px 10px 28px;
}
.hero-mark-glow {
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, var(--ember-glow) 0%, transparent 70%);
  animation: markGlow 3.6s ease-in-out infinite;
  filter: blur(2px);
}
@keyframes markGlow {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%      { opacity: .9; transform: scale(1.08); }
}
.hero-ring {
  position: absolute; width: 210px; height: 210px;
  border-radius: 50%; border: 1px dashed rgba(110,180,247,.35);
  animation: spin 40s linear infinite;
}
.hero-ring::before {
  content: ''; position: absolute; top: -3px; left: 50%; width: 6px; height: 6px;
  margin-left: -3px; border-radius: 50%; background: var(--blue-light);
  box-shadow: 0 0 8px 2px rgba(110,180,247,.6);
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-mark-img {
  position: relative; z-index: 2;
  width: 150px; max-width: 60%; height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
  animation: markFloat 5s ease-in-out infinite;
}
@keyframes markFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Floating glass chips — depth + information, not just decoration */
.hero-chip {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  color: #e8edf5; font-size: 11px; font-weight: 700;
  padding: 7px 12px; border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  animation: chipFloat 4.5s ease-in-out infinite;
  white-space: nowrap;
}
.hero-chip svg { flex-shrink: 0; color: var(--ember-light); }
.hero-chip-1 { top: 20px; left: 18px; animation-delay: 0s; }
.hero-chip-2 { bottom: 22px; right: 18px; animation-delay: .8s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
@media(max-width:420px){
  .hero-chip { font-size: 10px; padding: 6px 10px; }
  .hero-mark-img { width: 120px; }
  .hero-mark-glow, .hero-ring { width: 170px; height: 170px; }
}
@media (prefers-reduced-motion: reduce) {
  .ember, .hero-visual-inner, .hero-mark-glow, .hero-ring, .hero-mark-img, .hero-chip { animation: none !important; }
}

/* ── SECTION ── */
.section { padding: 80px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 18px; height: 1px; background: var(--ember); opacity: .6; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--text); line-height: 1.2;
}
.section-footer { text-align: center; margin-top: 40px; }

/* Subtle dot-grid texture for premium depth, kept very low-contrast */
.products-section, .cta-section {
  background-image: radial-gradient(circle, var(--border-mid) 1px, transparent 1px);
  background-size: 26px 26px;
  background-position: -8px -8px;
}
[data-theme="dark"] .products-section, [data-theme="dark"] .cta-section { opacity: 1; }

/* ── FEATURES ── */
.features-section {
  background: var(--bg);
  background-image: repeating-linear-gradient(135deg, var(--border) 0, var(--border) 1px, transparent 1px, transparent 34px);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media(min-width:768px){ .features-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(42,95,214,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 14px;
}
.feature-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.feature-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ── PRODUCTS ── */
.products-section { background: var(--bg-soft); }
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media(min-width:600px){ .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media(min-width:900px){ .products-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.pcard-skeleton {
  height: 280px; border-radius: var(--radius);
  background: linear-gradient(90deg, var(--border) 25%, var(--bg-soft) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%{ background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}

.pcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.pcard:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--border-mid); }

.pcard-img {
  aspect-ratio: 4/3; position: relative;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--border) 100%);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pcard-img img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.pcard:hover .pcard-img img { transform: scale(1.05); }

.pcard-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--border-mid);
}

.pcard-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--steel); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: .06em;
  padding: 3px 8px; border-radius: 20px; text-transform: uppercase;
}

.pcard-body { padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
@media(min-width:600px){ .pcard-body { padding: 16px; gap: 6px; } }

.pcard-cat {
  font-size: 9px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
}
.pcard-name {
  font-size: .85rem; font-weight: 700; color: var(--text); line-height: 1.2;
}
@media(min-width:600px){ .pcard-name { font-size: .95rem; } }
.pcard-desc {
  font-size: 11px; color: var(--text-muted); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pcard-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px; gap: 6px; flex-wrap: wrap;
}
.pcard-price {
  font-size: .8rem; font-weight: 700; color: var(--steel);
  line-height: 1.2;
}
[data-theme="dark"] .pcard-price { color: var(--blue-light); }
.pcard-price small { font-size: .65em; font-weight: 500; opacity: .8; display: block; }
.pcard-btn {
  display: flex; align-items: center; gap: 4px;
  font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--steel); color: #fff;
  padding: 7px 10px; border-radius: 6px;
  transition: background var(--transition);
}
@media(min-width:600px){ .pcard-btn { font-size: 10px; padding: 8px 14px; gap: 6px; } }
.pcard-btn:hover { background: var(--blue); }

/* Empty & error states */
.empty-state {
  grid-column: 1/-1; text-align: center; padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state svg { margin-bottom: 16px; opacity: .3; }
.empty-state p { font-size: 14px; }

.empty-showcase {
  grid-column: 1/-1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 28px;
}
@media(max-width:560px){ .empty-showcase { grid-template-columns: 1fr; } }
.empty-card {
  position: relative; background: var(--bg-card); border: 1.5px dashed var(--border-mid);
  border-radius: var(--radius); padding: 32px 16px; text-align: center;
  color: var(--text-muted); transition: border-color var(--transition);
}
.empty-card:hover { border-color: var(--ember); }
.empty-card-icon { opacity: .35; margin-bottom: 12px; }
.empty-card-icon svg { color: var(--steel); }
[data-theme="dark"] .empty-card-icon svg { color: var(--blue-light); }
.empty-card-label { font-size: 13px; font-weight: 700; color: var(--text-sub); }
.empty-card-soon {
  position: absolute; top: 10px; right: 10px;
  font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ember); background: var(--ember-glow); padding: 3px 8px; border-radius: 20px;
}
.empty-note { grid-column: 1/-1; text-align: center; }
.empty-note p { font-size: 13px; color: var(--text-muted); max-width: 420px; margin: 0 auto; line-height: 1.6; }

/* ── CTA ── */
.cta-section {
  background: var(--steel);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
[data-theme="dark"] .cta-section { background: var(--steel-mid); }
.cta-section .ember-field { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cta-watermark {
  position: absolute; top: 50%; right: -60px; width: 340px; height: 340px;
  transform: translateY(-50%); opacity: .07; pointer-events: none; z-index: 0;
}
.cta-watermark img { width: 100%; height: 100%; object-fit: contain; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; color: #fff; margin-bottom: 8px;
}
.cta-desc { font-size: 14px; color: rgba(255,255,255,.65); }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.cta-section .btn-primary { background: #fff; color: var(--steel); border-color: #fff; }
.cta-section .btn-primary:hover { background: var(--blue-light); border-color: var(--blue-light); }

/* ── FOOTER ── */
.footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 56px 0 0; position: relative; overflow: hidden; }
.footer-watermark {
  position: absolute; bottom: -40px; right: -30px; width: 220px; height: 220px;
  opacity: .05; pointer-events: none;
}
.footer-watermark img { width: 100%; height: 100%; object-fit: contain; }
.footer-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 32px;
  position: relative; z-index: 1;
}
@media(min-width:600px){ .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--text);
  margin-bottom: 12px;
}
.footer-logo strong { color: var(--blue); }
.footer-about { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text); margin-bottom: 14px;
}
.footer-links-col a, .footer-address {
  display: block; font-size: 13px; color: var(--text-muted);
  margin-bottom: 8px; transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--blue); }
.footer-bottom {
  margin-top: 40px; padding: 16px 0;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--text-muted);
}

/* ── FLOAT BTNS ── */
.float-btns {
  position: fixed; right: 20px; bottom: 24px; z-index: 480;
  display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.float-tg { background: #229ED9; color: #fff; }
.float-call { background: var(--steel); color: #fff; }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 800; display: none;
}
.cart-overlay.show { display: block; }
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: 320px; background: var(--bg-card);
  z-index: 900; transform: translateX(100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid var(--border);
  font-size: 16px; font-weight: 700;
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-drawer-footer { padding: 16px; border-top: 1px solid var(--border); }

/* ── ORDER MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--bg-card); border-radius: 16px;
  padding: 32px; width: 100%; max-width: 420px;
  position: relative; box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
}
.modal-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-sub); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit;
  background: var(--bg-soft); color: var(--text);
  outline: none; transition: border var(--transition);
}
.form-input:focus { border-color: var(--blue); }
textarea.form-input { resize: vertical; min-height: 80px; }
.order-success { text-align: center; padding: 20px 0; }
.order-success p { color: var(--text-sub); margin-top: 12px; font-size: 14px; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Orchestrated stagger for grid-like groups */
.features-grid > .reveal:nth-child(1), .values-grid > .reveal:nth-child(1), .process-grid > .reveal:nth-child(1), .contact-info > .reveal:nth-child(1) { transition-delay: 0s; }
.features-grid > .reveal:nth-child(2), .values-grid > .reveal:nth-child(2), .process-grid > .reveal:nth-child(2), .contact-info > .reveal:nth-child(2) { transition-delay: .08s; }
.features-grid > .reveal:nth-child(3), .values-grid > .reveal:nth-child(3), .process-grid > .reveal:nth-child(3), .contact-info > .reveal:nth-child(3) { transition-delay: .16s; }
.features-grid > .reveal:nth-child(4), .values-grid > .reveal:nth-child(4), .process-grid > .reveal:nth-child(4), .contact-info > .reveal:nth-child(4) { transition-delay: .24s; }
.contact-info > .reveal:nth-child(5) { transition-delay: .32s; }
.products-grid > .reveal:nth-child(-n+8) { transition-delay: calc(.05s * var(--i, 0)); }
.gallery-grid > .reveal:nth-child(1){transition-delay:0s}.gallery-grid > .reveal:nth-child(2){transition-delay:.06s}
.gallery-grid > .reveal:nth-child(3){transition-delay:.12s}.gallery-grid > .reveal:nth-child(4){transition-delay:.18s}
.gallery-grid > .reveal:nth-child(5){transition-delay:.24s}.gallery-grid > .reveal:nth-child(6){transition-delay:.3s}

/* ── ICON BADGE (replaces emoji icons site-wide) ── */
.icon-badge {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(42,95,214,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.value-card:hover .icon-badge, .contact-card:hover .icon-badge {
  background: rgba(232,114,12,.12); color: var(--ember);
  transform: rotate(-4deg) scale(1.05);
}
.icon-badge.center { margin: 0 auto 14px; }

/* ── PROCESS / WORKFLOW ── */
.process-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px;
  position: relative;
}
@media(min-width:768px){
  .process-grid { grid-template-columns: repeat(4,1fr); gap: 16px; }
  .process-grid::before {
    content: ''; position: absolute; top: 26px; left: 12%; right: 12%; height: 1px;
    background: repeating-linear-gradient(90deg, var(--border-mid) 0 8px, transparent 8px 14px);
  }
}
.process-step { position: relative; text-align: center; }
.process-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg-card); border: 1.5px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.15rem;
  color: var(--steel); margin: 0 auto 14px; position: relative; z-index: 2;
  transition: all var(--transition);
}
[data-theme="dark"] .process-num { color: var(--blue-light); }
.process-step:hover .process-num {
  border-color: var(--ember); color: var(--ember);
  box-shadow: 0 0 0 5px var(--ember-glow);
}
.process-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.process-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; max-width: 220px; margin: 0 auto; }

/* ── PAGES COMMON ── */
.page-hero {
  padding: 120px 0 64px;
  background: var(--bg-soft);
  background-image: radial-gradient(circle, var(--border-mid) 1px, transparent 1px);
  background-size: 24px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero-watermark {
  position: absolute; top: 50%; right: -40px; width: 200px; height: 200px;
  transform: translateY(-50%); opacity: .06; pointer-events: none;
}
.page-hero-watermark img { width: 100%; height: 100%; object-fit: contain; }
@media(max-width:700px){ .page-hero-watermark { width: 130px; height: 130px; right: -25px; opacity: .05; } }
.page-hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
  position: relative; z-index: 1;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; color: var(--text);
  position: relative; z-index: 1;
}

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--steel); color: #fff;
  padding: 12px 22px; border-radius: 20px;
  font-size: 13px; font-weight: 600;
  z-index: 9999; box-shadow: var(--shadow-lg);
  opacity: 0; transition: opacity .3s; pointer-events: none;
  white-space: nowrap;
}
.toast.show { opacity: 1; }
