﻿/* ═══════════════════════════════════════════════
   UNIQUE HARDWARES — COIMBATORE
   Shared Stylesheet · Premium Clean Theme
   Redesigned 2026
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=DM+Mono:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  /* Backgrounds — clean blue-white */
  --bg:           #f8fbff;
  --bg-soft:      #eef3fb;
  --bg-muted:     #e2edf7;
  --bg-warm:      #d9e8f5;

  /* Borders — warm */
  --border:       #c8daf0;
  --border-light: #ddeaf8;

  /* Dark navy sections */
  --dark:         #003d7a;
  --dark-mid:     #0a4a90;

  /* Text hierarchy */
  --ink:          #003d7a;
  --ink-mid:      #1a4d8a;
  --ink-light:    #4a6fa5;
  --ink-dim:      #7a98c0;

  --white:        #ffffff;

  /* Legacy aliases */
  --sand-dim:     #7a98c0;
  --ink-border:   #c8daf0;

  /* Logo lime-green accent (from "Hardwares" text in logo) */
  --saffron:       #78b92a;
  --saffron-dim:   #5a8f1e;
  --saffron-pale:  #f0fae6;
  --saffron-tint:  rgba(120,185,42,0.09);

  --green:        #16a34a;
  --green-pale:   #f0fdf4;
  --red:          #dc2626;
  --red-pale:     #fef2f2;

  /* Typography */
  --font-display: 'Rajdhani', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Radius scale */
  --radius-sm:    5px;
  --radius:       9px;
  --radius-lg:    14px;
  --radius-xl:    20px;

  /* Motion */
  --transition:   0.18s ease;

  /* Shadows — warm, navy-tinted */
  --shadow-sm:    0 2px 8px rgba(0,61,122,0.07), 0 1px 2px rgba(0,61,122,0.03);
  --shadow-md:    0 6px 24px rgba(0,61,122,0.10), 0 2px 8px rgba(0,61,122,0.05);
  --shadow-lg:    0 18px 56px rgba(0,61,122,0.14), 0 4px 14px rgba(0,61,122,0.06);
  --shadow-gold:  0 4px 20px rgba(120,185,42,0.28), 0 1px 4px rgba(0,61,122,0.06);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 90%; max-height: 90%; }
button, input, select, textarea { font-family: inherit; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 800;
  height: 82px;
  background: rgba(248,251,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 3rem; gap: 1rem;
  box-shadow: 0 2px 20px rgba(0,61,122,0.05);
}

/* Logo image version */
.logo-wrap {
  display: flex; flex-direction: column; justify-content: center;
  gap: 2px; line-height: 1; text-decoration: none;
}
.logo-img {
  height: 84px; width: auto; display: block;
  object-fit: contain;
}
/* Fallback text logo (shown if no image) */
.logo-main {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--dark);
}
.logo-main em { color: var(--saffron); font-style: normal; }
.logo-sub { font-size: 0.50rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-dim); margin-top: 1px; }

.main-nav { display: flex; gap: 0; align-items: center; }
.nav-link {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-light);
  padding: 0.5rem 1.1rem; position: relative; transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -1px; left: 1.1rem; right: 1.1rem;
  height: 2px; background: var(--saffron); border-radius: 1px;
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--saffron); }
.nav-link.active::after { transform: scaleX(1); }

.header-actions { display: flex; gap: 0.6rem; align-items: center; }

.enquiry-btn {
  background: var(--dark); color: #fff; border: none;
  padding: 0.52rem 1.2rem; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 0.45rem;
  box-shadow: 0 2px 10px rgba(0,61,122,0.20);
}
.enquiry-btn:hover { background: var(--saffron); color: var(--dark); cursor: pointer; box-shadow: var(--shadow-gold); }

.cart-badge {
  background: var(--saffron); color: var(--dark);
  font-size: 0.65rem; font-weight: 800;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.enquiry-btn:hover .cart-badge { background: var(--dark); color: var(--saffron); }

.mobile-btn {
  display: none; background: none; border: 1.5px solid var(--border);
  color: var(--ink); width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.mobile-btn:hover { border-color: var(--saffron); color: var(--saffron); }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-bar { background: var(--dark); padding: 0.44rem 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 2.5rem; animation: ticker 28s linear infinite; white-space: nowrap; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-family: var(--font-display); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); flex-shrink: 0; }
.ticker-dot { color: var(--saffron); }

/* ══════════════════════════════════════
   HOME HERO
══════════════════════════════════════ */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  background: var(--dark);
  min-height: 56vh;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 75% 50%, rgba(41,169,225,0.12) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
.home-hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3rem 4.5rem;
  position: relative; z-index: 2;
}
.home-hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; overflow: hidden;
}
.home-hero-right::before {
  content: '⬡';
  font-size: 26rem; color: rgba(120,185,42,0.08);
  position: absolute; line-height: 1; pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.home-hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 35%);
}

.hero-eyebrow {
  font-family: var(--font-display); font-size: 0.88rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 1.2rem; animation: fadeUp 0.55s ease both;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--saffron); display: inline-block; flex-shrink: 0; }

.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 4.0rem); line-height: 0.95;
  color: #fff; animation: fadeUp 0.55s ease 0.1s both;
  letter-spacing: 0.02em;
}
.hero-title em { color: var(--saffron); font-style: normal; }
.hero-desc {
  margin-top: 1.6rem; font-size: 1.0rem; line-height: 1.9;
  color: rgba(255,255,255,0.48); max-width: 500px;
  animation: fadeUp 0.55s ease 0.2s both;
}
.hero-cta {
  display: flex; gap: 0.9rem; margin-top: 2.2rem; flex-wrap: wrap;
  animation: fadeUp 0.55s ease 0.3s both;
}
.hero-stats-row {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.55s ease 0.4s both; flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--saffron); line-height: 1;
}
.hero-stat-label {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 4px;
}

/* ══════════════════════════════════════
   CATEGORY SECTION
══════════════════════════════════════ */
.category-section { padding: 4.5rem 3rem; background: var(--bg); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem; background: transparent; border: none;
}
.category-card {
  background: var(--bg); padding: 2rem 1.4rem; text-align: center; cursor: pointer;
  transition: all 0.25s ease;
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.category-card:hover {
  background: var(--saffron-pale);
  border-color: var(--saffron);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.category-card:hover .cat-emoji { transform: scale(1.12); }
.cat-emoji {
  font-size: 2.4rem; transition: transform 0.3s;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  border-radius: var(--radius);
}
.cat-emoji img { width: 56px; height: 56px; object-fit: contain; }
.cat-name {
  font-family: var(--font-display); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
  line-height: 1.3;
}
.cat-count { font-size: 0.65rem; color: var(--ink-dim); line-height: 1.6; }

/* ══════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════ */
.features-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 3rem;
}
.features-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.2rem; background: transparent; border: none;
}
.feature-card {
  padding: 2rem 1.6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: all 0.22s ease;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  background: var(--saffron-pale);
  border-color: var(--saffron);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.feature-icon {
  font-size: 1.5rem; margin-bottom: 1.1rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--saffron-pale);
  border: 1px solid rgba(120,185,42,0.28);
  border-radius: var(--radius);
}
.feature-title {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 0.5rem;
}
.feature-desc { font-size: 0.72rem; line-height: 1.85; color: var(--ink-light); }

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  padding: 3.5rem 3rem 3rem;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(41,169,225,0.10) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
}
.page-hero-eyebrow {
  font-family: var(--font-display); font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 0.75rem; position: relative; z-index: 2;
  display: flex; align-items: center; gap: 0.65rem;
}
.page-hero-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--saffron); flex-shrink: 0; }
.page-hero-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 0.95; color: #fff;
  letter-spacing: 0.03em; position: relative; z-index: 2;
}
.page-hero-title em { color: var(--saffron); font-style: normal; }
.page-hero-sub {
  margin-top: 1rem; max-width: 560px; font-size: 0.78rem;
  line-height: 1.9; color: rgba(255,255,255,0.45);
  position: relative; z-index: 2;
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  padding: 5rem 3rem; text-align: center;
  background: var(--dark); position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 60%, rgba(41,169,225,0.12) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}
.cta-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 700; color: #fff; letter-spacing: 0.04em;
  position: relative; z-index: 2; margin-bottom: 0.9rem;
}
.cta-title em { color: var(--saffron); font-style: normal; }
.cta-sub {
  font-size: 0.78rem; color: rgba(255,255,255,0.45); max-width: 480px;
  margin: 0 auto 2.2rem; line-height: 1.95; position: relative; z-index: 2;
}
.cta-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.cta-banner .btn-outline {
  color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.2);
  background: transparent;
}
.cta-banner .btn-outline:hover {
  color: var(--dark); border-color: var(--saffron); background: var(--saffron);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  border-top: 2px solid var(--saffron);
  padding: 3.5rem 3rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-img { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: 0.88; margin-bottom: 0.5rem; }
.footer-brand .logo-main { font-size: 1.6rem; margin-bottom: 0.3rem; color: #fff; }
.footer-brand .logo-main em { color: var(--saffron); }
.footer-brand .logo-sub { margin-bottom: 1rem; color: rgba(255,255,255,0.3); }
.footer-brand p { font-size: 0.72rem; line-height: 1.9; color: rgba(255,255,255,0.33); max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 1.1rem; padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(120,185,42,0.20);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.73rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-col a:hover { color: var(--saffron); }
.footer-contact-line {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 0.7rem;
}
.footer-contact-line strong { color: rgba(255,255,255,0.62); font-weight: 500; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.8rem; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.6rem; color: rgba(255,255,255,0.2); letter-spacing: 0.08em; }
.footer-badges { display: flex; gap: 0.5rem; }
.badge-chip {
  font-family: var(--font-display); font-size: 0.58rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.22rem 0.7rem;
  border: 1px solid rgba(120,185,42,0.22); color: rgba(120,185,42,0.45);
  border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast-container {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 9500; display: flex; flex-direction: column;
  gap: 0.5rem; pointer-events: none;
}
.toast {
  background: var(--dark); color: #fff; border-left: 3px solid var(--saffron);
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.06em; padding: 0.9rem 1.5rem; max-width: 320px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease, toastOut 0.4s ease 2.2s forwards;
}
@keyframes toastIn  { from { transform: translateX(110%); opacity:0; } to { transform: translateX(0); opacity:1; } }
@keyframes toastOut { to { transform: translateX(20px); opacity:0; } }

/* ══════════════════════════════════════
   REUSABLES
══════════════════════════════════════ */
.section-label {
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--saffron);
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.8rem;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--saffron); color: var(--dark); border: none; padding: 0.72rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: all var(--transition); cursor: pointer;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--dark); color: var(--saffron); box-shadow: var(--shadow-md); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--ink-mid); border: 1.5px solid var(--border);
  padding: 0.72rem 1.8rem; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.88rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: all var(--transition); cursor: pointer;
}
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-pale); }

.btn-green {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green); color: #fff; border: none; padding: 0.62rem 1.3rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background var(--transition); cursor: pointer;
}
.btn-green:hover { background: #15803d; }

.tag {
  display: inline-block; font-family: var(--font-display); font-size: 0.58rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.22rem 0.6rem; border-radius: var(--radius-sm);
}
.tag-saffron { background: var(--saffron-pale); color: var(--saffron); border: 1px solid rgba(120,185,42,0.30); }
.tag-red     { background: var(--red-pale); color: var(--red); border: 1px solid rgba(220,38,38,0.15); }
.tag-green   { background: var(--green-pale); color: var(--green); border: 1px solid rgba(22,163,74,0.15); }
.tag-outline { background: transparent; border: 1px solid var(--border); color: var(--ink-light); }

.divider { height: 1px; background: var(--border); }

@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes float  { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-10px) rotate(3deg);} }

/* ══════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════ */
.toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem; border-bottom: 1px solid var(--border);
  background: var(--bg); gap: 1rem; flex-wrap: wrap;
}
.filter-group { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-display); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.38rem 1rem; border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--bg); color: var(--ink-light); transition: all 0.18s;
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-pale); }
.filter-btn.active { background: var(--saffron); border-color: var(--saffron); color: var(--dark); font-weight: 700; }

.search-box {
  display: flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid var(--border); padding: 0.38rem 0.95rem;
  border-radius: 50px;
  background: var(--bg); transition: border-color var(--transition);
}
.search-box:focus-within { border-color: var(--saffron); }
.search-box input {
  background: transparent; border: none; outline: none;
  color: var(--ink); font-size: 0.75rem; width: 190px;
}
.search-box input::placeholder { color: var(--ink-dim); }

.sort-select {
  background: var(--bg); border: 1.5px solid var(--border); color: var(--ink-mid);
  font-size: 0.73rem; padding: 0.38rem 0.85rem; outline: none;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition); cursor: pointer;
}
.sort-select:focus { border-color: var(--saffron); }

.products-main { padding: 2.5rem 3rem 5rem; background: var(--bg-soft); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(275px,1fr)); gap: 20px; }

.product-card {
  background: var(--bg); display: flex; flex-direction: column;
  animation: fadeUp 0.4s ease both;
  position: relative; overflow: hidden;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.22s ease;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  border-color: var(--saffron);
  box-shadow: 0 10px 36px rgba(120,185,42,0.20), 0 2px 8px rgba(0,61,122,0.06);
  transform: translateY(-4px);
}

.card-badge {
  position: absolute; top: 0.85rem; right: 0.85rem;
  font-family: var(--font-display); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; padding: 0.22rem 0.6rem;
  border-radius: var(--radius-sm); z-index: 3;
}
.card-badge.hot { background: var(--red-pale); color: var(--red); border: 1px solid rgba(220,38,38,0.2); }
.card-badge.new { background: var(--saffron-pale); color: var(--saffron); border: 1px solid rgba(120,185,42,0.38); }

/* ── IMAGE CAROUSEL ── */
.card-img-wrap {
  height: 200px; position: relative; overflow: hidden;
  background: #ffffff; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  cursor: pointer;
}
.card-product-img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  padding: 8px;
  transition: opacity 0.22s ease, transform 0.32s ease; display: block;
}
.product-card:hover .card-product-img { transform: scale(1.04); }
.card-img-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--ink-dim);
  position: absolute; inset: 0; background: var(--bg-soft);
}

/* "View Details" hover hint */
.card-img-view-hint {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,61,122,0.82);
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-align: center; padding: 0.55rem;
  transform: translateY(100%); transition: transform 0.22s ease;
  pointer-events: none;
}
.card-img-wrap:hover .card-img-view-hint { transform: translateY(0); }

.img-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(248,251,255,0.95);
  border: 1px solid var(--border); color: var(--ink);
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; line-height: 1;
  opacity: 0; transition: opacity 0.18s, background 0.15s;
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.img-arrow-l { left: 8px; }
.img-arrow-r { right: 8px; }
.card-img-wrap:hover .img-arrow { opacity: 1; }
.img-arrow:hover { background: var(--saffron); color: var(--dark); border-color: var(--saffron); }

.img-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 10;
}
.img-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.55); border: 1px solid rgba(0,0,0,0.12);
  cursor: pointer; transition: all 0.18s;
}
.img-dot.active { background: var(--saffron); border-color: var(--saffron); transform: scale(1.3); }
.img-dot:hover:not(.active) { background: rgba(255,255,255,0.9); }

.cart-item-img-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  overflow: hidden; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; background: var(--bg-soft);
}
.cart-item-img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 3px; }
.cart-item-img-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }

.card-body { padding: 1.15rem; flex: 1; display: flex; flex-direction: column; gap: 0.45rem; }
.card-category { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron); }
.card-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.04em; color: var(--ink); text-transform: uppercase;
  transition: color var(--transition); cursor: pointer;
}
.card-name:hover { color: var(--saffron); }
.card-spec { font-size: 0.67rem; color: var(--ink-light); line-height: 1.75; }
.card-spec span { color: var(--ink-mid); }
/* ── AVAILABLE SIZE CHIPS (modal hint only) ── */
.size-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); margin-top: 0.4rem; }
.size-grid { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 0.3rem; }
.size-chip {
  font-family: var(--font-mono); font-size: 0.65rem; padding: 0.26rem 0.55rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-soft); color: var(--ink-light);
  transition: all 0.15s; white-space: nowrap; cursor: pointer;
}
.size-chip:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-pale); }
.size-chip.selected { border-color: var(--saffron); background: var(--saffron); color: var(--dark); font-weight: 600; }

/* ── ENQUIRY INPUTS (card + modal) ── */
.enq-inputs { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.enq-field { display: flex; flex-direction: column; gap: 0.18rem; }
.enq-label {
  font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim); font-weight: 600;
}
.enq-inp {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--ink);
  font-size: 0.76rem; padding: 0.44rem 0.7rem;
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font-body); box-sizing: border-box;
}
.enq-inp:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px var(--saffron-tint, rgba(201,168,76,0.15)); }
.enq-inp::placeholder { color: var(--ink-dim); }
.enq-select { cursor: pointer; appearance: auto; padding-right: 0.4rem; }
.enq-qty { width: 100%; text-align: center; }
.enq-row2 { display: flex; gap: 0.5rem; }
.enq-field--grow { flex: 1; min-width: 0; }
.enq-field--qty { width: 68px; flex-shrink: 0; }
.pmodal-enq-form { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }

/* ── CARD FOOTER ── */
.card-footer {
  padding: 0.8rem 1.15rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  background: var(--bg-soft);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.add-btn {
  background: var(--dark); border: none; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.52rem 0.9rem;
  border-radius: var(--radius-sm); flex: 1;
  position: relative; overflow: hidden; transition: all 0.18s;
  box-shadow: 0 2px 8px rgba(0,61,122,0.20); cursor: pointer;
}
.add-btn:hover { background: var(--saffron); color: var(--dark); box-shadow: var(--shadow-gold); }
.add-btn span { position: relative; z-index: 1; }
.details-btn {
  background: none; border: none; color: var(--saffron);
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
  cursor: pointer; padding: 0; transition: color var(--transition);
}
.details-btn:hover { color: var(--saffron-dim); text-decoration: underline; }

/* ══════════════════════════════════════
   ENQUIRY DRAWER
══════════════════════════════════════ */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,61,122,0.40);
  z-index: 850; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; width: 390px; height: 100vh;
  background: var(--bg); border-left: 1px solid var(--border);
  box-shadow: -8px 0 48px rgba(0,61,122,0.12); z-index: 900;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header {
  padding: 1.4rem 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-soft);
}
.drawer-title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--ink);
}
.close-btn {
  background: var(--bg); border: 1px solid var(--border); color: var(--ink-light);
  width: 34px; height: 34px; font-size: 1rem; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); cursor: pointer;
}
.close-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-pale); }
.drawer-items { flex: 1; overflow-y: auto; padding: 0.9rem; background: var(--bg-soft); }
.cart-item {
  display: flex; gap: 0.9rem; align-items: center; padding: 0.85rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 0.45rem; background: var(--bg);
  animation: fadeUp 0.2s ease; box-shadow: var(--shadow-sm);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; color: var(--ink); letter-spacing: 0.04em; line-height: 1.3; }
.cart-item-meta { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.ci-tag {
  font-family: var(--font-mono); font-size: 0.6rem; padding: 0.18rem 0.45rem;
  border-radius: 3px; white-space: nowrap;
}
.ci-size { background: var(--dark); color: #fff; }
.ci-finish { background: var(--saffron-pale); color: var(--saffron-dim); border: 1px solid var(--saffron); }
.cart-item-qty { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.45rem; }
.qty-btn {
  width: 24px; height: 24px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--bg-soft); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: all var(--transition); cursor: pointer;
}
.qty-btn:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-pale); }
.qty-val { font-size: 0.82rem; font-weight: 700; color: var(--ink); min-width: 22px; text-align: center; }
.qty-unit { font-size: 0.6rem; color: var(--ink-dim); }
.remove-item { background: none; border: none; color: var(--ink-dim); font-size: 0.9rem; padding: 4px; transition: color var(--transition); cursor: pointer; flex-shrink: 0; }
.remove-item:hover { color: var(--red); }
.empty-cart { text-align: center; padding: 2.5rem 1rem; color: var(--ink-dim); font-size: 0.78rem; letter-spacing: 0.04em; line-height: 2; }
.empty-cart-icon { font-size: 2.8rem; display: block; margin-bottom: 1rem; opacity: 0.2; }
.drawer-footer { padding: 1.2rem 1.5rem; border-top: 1px solid var(--border); background: var(--bg); }
.drawer-item-count {
  font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--saffron); font-weight: 700;
  margin-bottom: 0.75rem; min-height: 1em;
}
.drawer-contact { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 0.9rem; }
.drawer-input {
  width: 100%; background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink); font-size: 0.78rem; padding: 0.62rem 0.9rem;
  outline: none; transition: border-color var(--transition); font-family: var(--font-body);
}
.drawer-input:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px var(--saffron-tint); }
.drawer-input::placeholder { color: var(--ink-dim); }

.checkout-btn {
  width: 100%; background: var(--saffron); border: none; color: var(--dark);
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.12em; padding: 0.9rem; border-radius: var(--radius-sm);
  transition: all var(--transition); box-shadow: var(--shadow-gold);
  cursor: pointer;
}
.checkout-btn:hover { background: var(--dark); color: var(--saffron); box-shadow: var(--shadow-md); }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border); }
.about-story-left { padding: 4rem 3rem; border-right: 1px solid var(--border); background: var(--bg); }
.about-story-right { padding: 4rem 3rem; background: var(--bg-muted); display: flex; flex-direction: column; justify-content: center; }

.about-lead {
  font-family: var(--font-body); font-size: 1.08rem; font-weight: 400;
  font-style: italic; line-height: 1.8; color: var(--ink-mid); margin-bottom: 1.4rem;
}
.about-lead strong { color: var(--ink); font-style: normal; font-weight: 600; }
.about-body { font-size: 0.77rem; line-height: 2; color: var(--ink-light); margin-bottom: 1rem; }

.big-number { font-family: var(--font-display); font-size: 4.5rem; font-weight: 700; line-height: 1; color: var(--saffron); }
.big-number-label { font-family: var(--font-display); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }

.timeline-section { padding: 4rem 3rem; background: var(--bg); }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 72px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { display: flex; gap: 1.8rem; margin-bottom: 2.5rem; }
.timeline-year { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--saffron); min-width: 72px; text-align: right; padding-top: 4px; }
.timeline-dot { width: 12px; height: 12px; flex-shrink: 0; border: 2px solid var(--saffron); background: var(--bg); border-radius: 50%; margin-top: 10px; position: relative; z-index: 2; }
.timeline-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.35rem; }
.timeline-text { font-size: 0.73rem; line-height: 1.85; color: var(--ink-light); max-width: 480px; }

.values-section { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 3rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.value-card {
  background: var(--bg); padding: 2rem 1.8rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  transition: all 0.22s ease; box-shadow: var(--shadow-sm);
}
.value-card:hover { background: var(--saffron-pale); border-color: var(--saffron); box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.value-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 0.8rem; }
.value-title { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.55rem; }
.value-text { font-size: 0.72rem; line-height: 1.85; color: var(--ink-light); }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; min-height: 70vh; }
.contact-info { padding: 3.5rem 3rem; border-right: 1px solid var(--border); background: var(--bg-muted); }
.contact-form-area { padding: 3.5rem 3rem; background: var(--bg); }
.contact-detail { margin-bottom: 1.8rem; }
.contact-detail-label { font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--saffron); margin-bottom: 0.3rem; }
.contact-detail-value { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--ink); letter-spacing: 0.04em; }
.contact-detail-sub { font-size: 0.7rem; color: var(--ink-light); margin-top: 0.2rem; }

.form-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 0.35rem; }
.form-subtitle { font-size: 0.73rem; color: var(--ink-light); margin-bottom: 2rem; line-height: 1.85; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 0.4rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink); font-size: 0.78rem; padding: 0.68rem 1rem; outline: none;
  transition: border-color var(--transition); font-family: var(--font-body);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--saffron); box-shadow: 0 0 0 3px var(--saffron-tint);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-dim); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { appearance: none; cursor: pointer; }
.submit-btn {
  background: var(--saffron); border: none; color: var(--dark);
  font-family: var(--font-display); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 0.88rem 2.4rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition); cursor: pointer;
  box-shadow: var(--shadow-gold);
}
.submit-btn:hover { background: var(--dark); color: var(--saffron); box-shadow: var(--shadow-md); }

.map-section {
  height: 280px; background: var(--bg-soft);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin-group { position: relative; z-index: 2; text-align: center; }
.map-pin { font-size: 2.6rem; animation: float 3s ease-in-out infinite; display: block; }
.map-label { font-family: var(--font-display); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mid); margin-top: 0.5rem; }

.faq-section { padding: 4rem 3rem; background: var(--bg-soft); border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; cursor: pointer; gap: 1rem; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em; color: var(--ink); transition: color var(--transition); }
.faq-q:hover { color: var(--saffron); }
.faq-toggle { font-size: 1.1rem; color: var(--saffron); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; font-size: 0.75rem; line-height: 1.85; color: var(--ink-light); }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.3rem; }

/* ══════════════════════════════════════
   ADMIN / CSV PAGE
══════════════════════════════════════ */
.admin-layout { padding: 3rem; background: var(--bg-muted); }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.admin-panel {
  background: var(--bg); padding: 2.5rem; border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.admin-panel h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.06em; color: var(--ink); text-transform: uppercase; margin-bottom: 0.35rem; }
.admin-panel p { font-size: 0.73rem; color: var(--ink-light); line-height: 1.75; margin-bottom: 1.5rem; }

.drop-zone {
  border: 2px dashed var(--border); background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 3rem 2rem; text-align: center; transition: all var(--transition);
  margin-bottom: 1.2rem; cursor: pointer; position: relative;
}
.drop-zone:hover, .drop-zone.dragover { border-color: var(--saffron); background: var(--saffron-pale); }
.drop-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.drop-zone-icon { font-size: 2.2rem; display: block; margin-bottom: 0.65rem; opacity: 0.35; }
.drop-zone-text { font-size: 0.75rem; color: var(--ink-mid); letter-spacing: 0.06em; }
.drop-zone-hint { font-size: 0.65rem; color: var(--ink-dim); margin-top: 0.4rem; }

.csv-template-hint { background: var(--saffron-pale); border: 1px solid rgba(120,185,42,0.28); border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 1.2rem; font-size: 0.68rem; line-height: 1.75; color: var(--ink-light); }
.csv-template-hint code { color: var(--saffron); font-family: var(--font-mono); }

.preview-table-wrap { overflow-x: auto; max-height: 350px; overflow-y: auto; margin-top: 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.preview-table { width: 100%; border-collapse: collapse; font-size: 0.7rem; }
.preview-table th { background: var(--bg-soft); color: var(--saffron); font-family: var(--font-display); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.6rem 0.9rem; text-align: left; border: 1px solid var(--border); white-space: nowrap; position: sticky; top: 0; z-index: 2; }
.preview-table td { padding: 0.55rem 0.9rem; border: 1px solid var(--border-light); color: var(--ink-mid); vertical-align: top; }
.preview-table tr:hover td { background: var(--saffron-pale); }
.preview-table .action-cell { display: flex; gap: 0.4rem; }
.tbl-del { background: none; border: 1px solid var(--red); color: var(--red); border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.1em; padding: 0.2rem 0.5rem; transition: all 0.15s; cursor: pointer; }
.tbl-del:hover { background: var(--red); color: #fff; }
.tbl-edit { background: none; border: 1px solid var(--border); color: var(--ink-light); border-radius: var(--radius-sm); font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.1em; padding: 0.2rem 0.5rem; transition: all 0.15s; cursor: pointer; }
.tbl-edit:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-pale); }

.status-bar { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.7rem 1rem; font-size: 0.7rem; color: var(--ink-light); margin-top: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.status-dot.ok   { background: var(--green); }
.status-dot.warn { background: var(--saffron); }

.modal-overlay { position: fixed; inset: 0; background: rgba(10,37,64,0.45); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 560px; max-width: 95vw; max-height: 90vh; overflow-y: auto; padding: 2rem; transform: translateY(20px); transition: transform 0.25s; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.modal-actions { display: flex; gap: 0.7rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

.size-editor-row { display:flex; gap:0.5rem; margin-bottom:0.5rem; align-items:center; }
.size-editor-row input { flex:1; }
.del-size-btn { background:none; border:1px solid var(--border); color:var(--ink-dim); width:28px; height:28px; border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; transition:all 0.15s; cursor:pointer; }
.del-size-btn:hover { border-color:var(--red); color:var(--red); background: var(--red-pale); }
.add-size-btn { background:none; border:1px solid var(--border); color:var(--ink-light); padding:0.3rem 0.7rem; border-radius:var(--radius-sm); font-family:var(--font-display); font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; transition:all 0.15s; margin-top:0.3rem; cursor:pointer; }
.add-size-btn:hover { border-color:var(--saffron); color:var(--saffron); background: var(--saffron-pale); }
.table-empty { padding:2rem; text-align:center; color:var(--ink-dim); font-size:0.78rem; }

.admin-topbar { background: var(--bg); border-bottom: 2px solid var(--saffron); padding: 0.8rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.admin-badge { font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; background: var(--saffron); color: var(--dark); padding: 0.22rem 0.8rem; border-radius: var(--radius-sm); }
.admin-topbar-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.step-badge { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--saffron); color: var(--dark); font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; flex-shrink: 0; }
.step-row { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.2rem; }
.step-content { font-size: 0.73rem; line-height: 1.7; color: var(--ink-light); }
.step-content strong { color: var(--ink); }

/* ══════════════════════════════════════
   PRODUCT DETAIL MODAL
══════════════════════════════════════ */
.pmodal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,37,64,0.65);
  z-index: 1600;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.pmodal-overlay.open { opacity: 1; pointer-events: all; }

.pmodal {
  background: var(--bg);
  width: min(920px, 100%);
  max-height: 88vh;
  display: grid;
  grid-template-columns: 300px 1fr;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.22s ease;
}

.pmodal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 20;
  background: var(--bg); border: 1.5px solid var(--border);
  color: var(--ink-light); width: 34px; height: 34px; border-radius: 50%;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.pmodal-close:hover { border-color: var(--red); color: var(--red); background: var(--red-pale); }

/* Gallery column */
.pmodal-gallery {
  background: var(--bg-soft); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.75rem; padding: 1.5rem;
  overflow-y: auto; border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.pmodal-img-wrap {
  position: relative; width: 100%; aspect-ratio: 1;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pmodal-main-img {
  width: 100%; height: 100%; object-fit: contain;
  transition: opacity 0.15s ease;
}
.pmodal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; background: rgba(250,250,247,0.96);
  border: 1px solid var(--border); color: var(--ink);
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  cursor: pointer; transition: all 0.15s;
  box-shadow: var(--shadow-sm);
}
.pmodal-arrow-l { left: 6px; }
.pmodal-arrow-r { right: 6px; }
.pmodal-arrow:hover { background: var(--saffron); color: var(--dark); border-color: var(--saffron); }

.pmodal-thumbs { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.pmodal-thumb {
  width: 56px; height: 56px; object-fit: contain; cursor: pointer;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); padding: 2px;
  transition: border-color 0.15s;
}
.pmodal-thumb.active { border-color: var(--saffron); }
.pmodal-thumb:hover { border-color: var(--saffron); }

/* Info column */
.pmodal-info {
  padding: 2rem;
  overflow-y: auto;
  max-height: 88vh;
}
.pmodal-cat {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 0.4rem;
}
.pmodal-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem); line-height: 1.15;
  color: var(--ink); letter-spacing: 0.03em; text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.pmodal-spec-summary {
  font-size: 0.72rem; color: var(--ink-light); line-height: 1.8;
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.pmodal-spec-table {
  width: 100%; border-collapse: collapse; margin-bottom: 1rem;
}
.pmodal-spec-table tr { border-bottom: 1px solid var(--border-light); }
.pmodal-spec-table tr:last-child { border-bottom: none; }
.pmodal-spec-key {
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-dim); padding: 0.52rem 0.8rem 0.52rem 0;
  white-space: nowrap; vertical-align: top; width: 38%;
}
.pmodal-spec-val {
  font-size: 0.75rem; color: var(--ink-mid); padding: 0.52rem 0;
  line-height: 1.65;
}

.pmodal-notes {
  background: var(--saffron-pale); border-left: 3px solid var(--saffron);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.75rem 1rem; font-size: 0.72rem; line-height: 1.75;
  color: var(--ink-light); margin-bottom: 1.25rem;
}
.pmodal-notes strong { color: var(--saffron); font-weight: 600; }

.pmodal-divider { height: 1px; background: var(--border); margin: 1.2rem 0; }
.pmodal-size-grid { margin-bottom: 1.4rem; }

.pmodal-price-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.pmodal-add-btn { flex-shrink: 0; }

/* Responsive modal */
@media (max-width: 680px) {
  .pmodal { grid-template-columns: 1fr; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .pmodal-gallery { border-right: none; border-bottom: 1px solid var(--border); padding: 1rem; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .pmodal-img-wrap { aspect-ratio: 4/3; }
  .pmodal-info { padding: 1.25rem; max-height: none; }
  .pmodal-overlay { padding: 0; align-items: flex-end; }
  .pmodal { max-height: 92vh; overflow-y: auto; }
}

/* ══════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════ */
.reveal { animation: fadeUp 0.5s ease both; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 840px) {
  .site-header { padding: 0 1.5rem; }
  .main-nav { display: none; }
  .mobile-btn { display: flex; }
  .home-hero { grid-template-columns: 1fr; }
  .home-hero-right { display: none; }
  .home-hero-left { padding: 4rem 1.5rem 3.5rem; }
  .about-story, .contact-layout, .admin-grid { grid-template-columns: 1fr; }
  .about-story-left { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .timeline::before { left: 0; }
  .office-cards { grid-template-columns: 1fr; }
  .faq-section { padding: 3rem 1.5rem; }
}
@media (max-width: 600px) {
  .site-header { padding: 0 1rem; }
  .page-hero,
  .category-section,
  .features-strip,
  .cta-banner,
  .about-story-left,
  .about-story-right,
  .timeline-section,
  .values-section,
  .contact-info,
  .contact-form-area,
  .products-main,
  .admin-layout { padding-left: 1.25rem; padding-right: 1.25rem; }
  .toolbar { padding: 0.9rem 1.25rem; }
  .admin-topbar { padding: 0.8rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; padding-left: 0; }
  .site-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .cart-drawer { width: 100vw; }
  .product-grid { gap: 12px; }
  .hero-stats-row { gap: 1.5rem; }
}

/* ══════════════════════════════════════
   MOBILE NAV MENU
══════════════════════════════════════ */
.mobile-nav {
  display: none; position: fixed; top: 84px; left: 0; right: 0;
  background: var(--bg); border-bottom: 1px solid var(--border);
  z-index: 799; padding: 1rem 1.5rem;
  flex-direction: column; gap: 0.25rem;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--border-light);
  color: var(--ink-light); font-size: 0.82rem;
}
.mobile-nav .nav-link:last-child { border-bottom: none; }
