/* ═══════════════════════════════════════════════════════════
   SINGLESTONE — Exclusive Lab Grown Solitaire Jewelry
   Theme: Luxury Dark Navy & Steel Blue
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --navy:       #ffffff;
  --navy-mid:   #f0f4ff;
  --navy-light: #e8f0fe;
  --steel:      #2563eb;
  --steel-mid:  #3b82f6;
  --steel-light:#60a5fa;
  --silver:     #374151;
  --silver-light:#111827;
  --cream:      #eff6ff;
  --gold-accent:#2563eb;
  --white:      #ffffff;
  --text-dim:   #6b7280;
  --border:     #d1d5db;
  --border-light: #e5e7eb;
  --glow:       0 0 30px rgba(37,99,235,0.1);
  --card-bg:    #ffffff;

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --radius: 2px;
  --radius-lg: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: #ffffff;
  color: #111827;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #111827;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { color: #374151; }
a { color: var(--steel-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: #111827; }

.text-gold    { color: var(--gold-accent); }
.text-silver  { color: #374151; }
.text-dim     { color: var(--text-dim); }
.text-center  { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--steel-light);
  display: block;
  margin-bottom: 1rem;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 2rem; }

.section { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

@media(max-width:960px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}

/* ── BACKGROUNDS ────────────────────────────────────────── */
.bg-navy     { background: #ffffff; }
.bg-mid      { background: #f0f4ff; }
.bg-subtle   { background: #f0f4ff; }

/* ── DIVIDERS ───────────────────────────────────────────── */
.divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
  margin: 1.5rem auto;
}
.divider-full {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  border: none; margin: 0;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-primary {
  background: var(--steel);
  color: #111827;
}
.btn-primary:hover { background: var(--steel-mid); color: #111827; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.35); }

.btn-outline {
  background: transparent;
  color: #111827;
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--steel); color: #111827; background: rgba(37,99,235,0.08); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-accent), #a07c3d);
  color: var(--navy);
}
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--steel-light); padding: 0.5rem 0; border-bottom: 1px solid var(--steel-light); border-radius:0; }
.btn-ghost:hover { color: #111827; border-color: #111827; }

.btn-sm { padding: 0.55rem 1.4rem; font-size: 10px; }
.btn-lg { padding: 1.1rem 3rem; font-size: 12px; }
.btn-full { width: 100%; }

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border-light);
  padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}

.nav-logo img { height: 52px; width: auto; transition: height var(--transition); }
#navbar.scrolled .nav-logo img { height: 42px; }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: #374151;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--steel-light);
  transform: scaleX(0); transition: transform var(--transition); transform-origin: left;
}
.nav-links a:hover { color: #111827; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 1.2rem; }
.nav-icon {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  color: #374151; cursor: pointer; transition: color var(--transition);
  position: relative;
}
.nav-icon:hover { color: #111827; }
.nav-badge {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--steel); color: #111827;
  font-size: 9px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 22px; height: 1px; background: var(--silver-light); transition: all var(--transition); }

@media(max-width:900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── MOBILE MENU ────────────────────────────────────────── */
#mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: #ffffff;
  transform: translateX(100%); transition: transform 0.4s ease;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
}
#mobile-menu.open { transform: translateX(0); }
#mobile-menu a { font-size: 1.8rem; font-family: 'Poppins', sans-serif; color: #111827; }
.menu-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 1.5rem; color: #374151; cursor: pointer;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 60%, #f0f4ff 100%);
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(37,99,235,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(37,99,235,0.06) 0%, transparent 40%);
  background-size: 600px 600px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--steel-light); }
.hero p { font-size: 1rem; margin-bottom: 2.5rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 45%; z-index: 2;
  pointer-events: none; opacity: 0.15;
}

/* ── TICKER ─────────────────────────────────────────────── */
.ticker {
  background: #f0f4ff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 0.65rem 0; overflow: hidden;
}
.ticker-inner { display: flex; gap: 4rem; animation: tickerScroll 30s linear infinite; white-space: nowrap; }
.ticker-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 11px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
  color: #374151;
}
.ticker-item .rate { color: var(--gold-accent); font-weight: 600; }
.ticker-dot { width: 3px; height: 3px; background: var(--steel); border-radius: 50%; }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--glow), 0 20px 40px rgba(0,0,0,0.3);
}

/* ── PRODUCT CARD ───────────────────────────────────────── */
.product-card { position: relative; }
.product-card-img {
  aspect-ratio: 4/5; overflow: hidden; position: relative;
  background: #e8f0fe;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--steel); color: #111827;
  font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: var(--radius);
}

.product-card-actions {
  position: absolute; top: 1rem; right: 1rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  opacity: 0; transform: translateX(10px);
  transition: all var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }

.product-card-action-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: #111827; cursor: pointer;
  transition: all var(--transition);
}
.product-card-action-btn:hover { background: var(--steel); border-color: var(--steel); color: #111827; }

.product-card-body { padding: 1.2rem 1.25rem 1.4rem; }
.product-card-cat { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.4rem; }
.product-card-name { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 400; color: #111827; margin-bottom: 0.6rem; }
.product-card-price { display: flex; align-items: center; gap: 0.75rem; }
.product-card-price .price { font-size: 1.05rem; font-weight: 600; color: var(--gold-accent); }
.product-card-price .price-old { font-size: 0.85rem; text-decoration: line-through; color: var(--text-dim); }

/* ── CATEGORY CARD ──────────────────────────────────────── */
.cat-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 3/4; cursor: pointer;
  background: #e8f0fe;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-card:hover img { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,58,138,0.75) 0%, rgba(30,58,138,0.1) 60%, transparent 100%);
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.cat-card-label { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 300; color: #111827; }
.cat-card-sub { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #374151; }

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .divider { margin: 1.5rem auto; }

/* ── FEATURE STRIP ──────────────────────────────────────── */
.features {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.feature-item {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid var(--border-light);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--steel-light); font-size: 1.25rem;
}
.feature-title { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: #111827; margin-bottom: 0.35rem; }
.feature-desc { font-size: 12px; color: var(--text-dim); }

@media(max-width:768px) {
  .features { grid-template-columns: repeat(2,1fr); }
  .feature-item:nth-child(2) { border-right: none; }
}
@media(max-width:480px) {
  .features { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border-light); }
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-card {
  padding: 2.5rem; position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: 'Poppins', sans-serif; font-size: 5rem;
  color: rgba(37,99,235,0.2); position: absolute; top: 1rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-text { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-style: italic; color: #111827; margin-bottom: 1.5rem; }
.testimonial-author { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); }
.testimonial-stars { color: var(--gold-accent); margin-bottom: 1rem; font-size: 13px; }

/* ── FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block; margin-bottom: 0.5rem;
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim);
}
.form-control {
  width: 100%; padding: 0.85rem 1.1rem;
  background: #f8faff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #111827; font-family: var(--font-body); font-size: 13px;
  outline: none; transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--steel); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
.form-control::placeholder { color: var(--text-dim); }

select.form-control { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237b93a8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:560px) { .form-row { grid-template-columns: 1fr; } }

/* ── NEWSLETTER ─────────────────────────────────────────── */
.newsletter { padding: 5rem 0; background: #1e3a8a; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 2rem auto 0; }
.newsletter-form .form-control { border-radius: var(--radius) 0 0 var(--radius); border-right: none; }
.newsletter-form .btn { border-radius: 0 var(--radius) var(--radius) 0; }

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  padding: 1.25rem 0; display: flex; align-items: center; gap: 0.5rem;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.breadcrumb-item { color: var(--text-dim); }
.breadcrumb-item.active { color: #374151; }
.breadcrumb-sep { color: var(--border); }

/* ── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── PRODUCT LISTING ────────────────────────────────────── */
.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; }
@media(max-width:900px) { .products-layout { grid-template-columns: 1fr; } }

.filter-sidebar {
  position: sticky; top: 90px; height: fit-content;
}
.filter-group { margin-bottom: 2rem; }
.filter-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--steel-light); margin-bottom: 1rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-light);
}

.filter-check { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.5rem; cursor: pointer; }
.filter-check input { accent-color: var(--steel); }
.filter-check span { font-size: 12px; color: #374151; }

.price-range { width: 100%; accent-color: var(--steel); }

/* ── PRODUCT DETAIL ─────────────────────────────────────── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media(max-width:840px) { .product-detail-grid { grid-template-columns: 1fr; } }

.product-gallery-main {
  aspect-ratio: 1; overflow: hidden; border-radius: var(--radius-lg);
  background: #e8f0fe;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.product-thumbs { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.product-thumb {
  width: 72px; aspect-ratio: 1; overflow: hidden;
  border: 1px solid var(--border-light); border-radius: var(--radius);
  cursor: pointer; transition: border-color var(--transition);
  background: #e8f0fe;
}
.product-thumb.active { border-color: var(--steel); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.price-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.price-table td { padding: 0.5rem 0; font-size: 12px; border-bottom: 1px solid var(--border-light); }
.price-table td:last-child { text-align: right; color: #111827; }
.price-table tr:last-child td { border-bottom: none; font-weight: 600; font-size: 1.1rem; color: var(--gold-accent); }

.size-options { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1rem 0; }
.size-btn {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 12px; cursor: pointer; color: #374151; transition: all var(--transition);
}
.size-btn.active, .size-btn:hover { border-color: var(--steel); background: rgba(37,99,235,0.15); color: #111827; }

/* ── TABS ───────────────────────────────────────────────── */
.tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border-light); margin-bottom: 2rem; }
.tab-btn {
  padding: 0.85rem 1.5rem; font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-dim); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--transition); background: none; border-top: none; border-left: none; border-right: none;
}
.tab-btn.active { color: #111827; border-bottom-color: var(--steel); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── CART ───────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; }
@media(max-width:840px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 1.25rem; align-items: center;
  padding: 1.25rem; border-bottom: 1px solid var(--border-light);
}
.cart-item-img { width: 80px; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.cart-item-name { font-family: 'Poppins', sans-serif; font-size: 1rem; color: #111827; margin-bottom: 0.3rem; }
.cart-item-meta { font-size: 11px; color: var(--text-dim); letter-spacing: 0.1em; }

.qty-control { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 2px; background: none; color: #374151; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.qty-btn:hover { border-color: var(--steel); color: #111827; }
.qty-num { font-size: 13px; min-width: 20px; text-align: center; }

.order-summary { padding: 2rem; position: sticky; top: 90px; height: fit-content; }
.summary-row { display: flex; justify-content: space-between; padding: 0.65rem 0; font-size: 13px; border-bottom: 1px solid var(--border-light); }
.summary-row:last-child { border: none; font-weight: 600; font-size: 1.1rem; color: var(--gold-accent); }

/* ── AUTH PAGES ─────────────────────────────────────────── */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,99,235,0.15) 0%, transparent 60%), var(--navy);
  padding: 2rem;
}
.auth-card {
  width: 100%; max-width: 440px;
  padding: 3rem; text-align: center;
}
.auth-logo { margin-bottom: 2rem; }
.auth-logo img { height: 70px; }

/* ── CHECKOUT STEPS ─────────────────────────────────────── */
.steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 3rem; }
.step { display: flex; align-items: center; gap: 0; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--border); background: #f0f4ff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--text-dim);
  transition: all var(--transition);
}
.step.active .step-num { border-color: var(--steel); background: var(--steel); color: #111827; }
.step.done .step-num { border-color: var(--gold-accent); background: var(--gold-accent); color: var(--navy); }
.step-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-left: 0.5rem; }
.step.active .step-label { color: #111827; }
.step-line { width: 60px; height: 1px; background: var(--border-light); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #1e3a8a;
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 55px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 12px; line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #374151; font-size: 14px; transition: all var(--transition);
}
.social-link:hover { border-color: var(--steel); background: rgba(37,99,235,0.15); color: #111827; }

.footer-col h5 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--steel-light); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 12px; color: var(--text-dim); transition: color var(--transition); }
.footer-col a:hover { color: #111827; }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 11px; color: var(--text-dim); }

/* ── FLOATING WHATSAPP ──────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ── TOAST ──────────────────────────────────────────────── */
.toast-container { position: fixed; top: 6rem; right: 1.5rem; z-index: 2000; display: flex; flex-direction: column; gap: 0.75rem; }
.toast {
  padding: 0.9rem 1.25rem; border-radius: var(--radius);
  background: #f0f4ff; border: 1px solid var(--border);
  color: #111827; font-size: 13px;
  min-width: 260px; max-width: 360px;
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
  display: flex; align-items: center; gap: 0.75rem;
}
.toast.success { border-color: #2e7d52; }
.toast.error { border-color: #7d2e2e; }
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; } }

/* ── ADMIN ──────────────────────────────────────────────── */
.admin-wrap { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 250px; background: #1e3a8a;
  border-right: 1px solid var(--border-light);
  position: fixed; top: 0; bottom: 0;
  display: flex; flex-direction: column; z-index: 100;
  overflow-y: auto;
}
.admin-sidebar-logo {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}
.admin-sidebar-logo img { height: 42px; }

.admin-nav { padding: 1.25rem 0; flex: 1; }
.admin-nav-section {
  padding: 0.75rem 1.25rem 0.4rem;
  font-size: 9px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(123,147,168,0.5);
}
.admin-nav-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.7rem 1.25rem; font-size: 12px; color: var(--text-dim);
  transition: all var(--transition); cursor: pointer; border-left: 3px solid transparent;
  text-decoration: none;
}
.admin-nav-item:hover, .admin-nav-item.active {
  color: #111827; background: rgba(37,99,235,0.08);
  border-left-color: var(--steel);
}
.admin-nav-icon { width: 16px; text-align: center; font-size: 14px; }

.admin-main { margin-left: 250px; flex: 1; display: flex; flex-direction: column; }

.admin-topbar {
  background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 90; backdrop-filter: blur(10px);
}
.admin-page-title { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 300; color: #111827; }
.admin-topbar-actions { display: flex; align-items: center; gap: 1rem; }
.admin-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--steel); display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #111827; cursor: pointer;
}

.admin-content { padding: 2rem; flex: 1; }

/* KPI CARDS */
.kpi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-bottom: 2rem; }
@media(max-width:1024px) { .kpi-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px) { .kpi-grid { grid-template-columns: 1fr; } }

.kpi-card { padding: 1.5rem; }
.kpi-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.5rem; }
.kpi-value { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 300; color: #111827; }
.kpi-change { font-size: 11px; margin-top: 0.3rem; }
.kpi-change.up { color: #4ade80; }
.kpi-change.down { color: #f87171; }

/* DATA TABLE */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  padding: 0.85rem 1rem; text-align: left;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); border-bottom: 1px solid var(--border-light);
}
.data-table td { padding: 1rem; border-bottom: 1px solid var(--border-light); font-size: 13px; }
.data-table tr:hover td { background: rgba(37,99,235,0.04); }

/* BADGES */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.25rem 0.7rem; border-radius: var(--radius);
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-green { background: rgba(74,222,128,0.1); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.badge-blue  { background: rgba(37,99,235,0.15); color: var(--steel-light); border: 1px solid var(--border); }
.badge-yellow{ background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }
.badge-red   { background: rgba(248,113,113,0.1); color: #f87171; border: 1px solid rgba(248,113,113,0.2); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* ── MISC ────────────────────────────────────────────────── */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd; font-size: 2rem;
}

.tag {
  display: inline-block; padding: 0.2rem 0.75rem;
  border: 1px solid var(--border); border-radius: 20px;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim);
}

.newsletter h2 { color: #ffffff !important; }
.newsletter p { color: rgba(255,255,255,0.75) !important; }
.newsletter .section-label { color: #93c5fd !important; }
.newsletter .form-control { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #ffffff; }
.newsletter .form-control::placeholder { color: rgba(255,255,255,0.5); }
.newsletter .btn-primary { background: #ffffff; color: #1e3a8a; }
.newsletter .btn-primary:hover { background: #dbeafe; }

.newsletter h2 { color: #ffffff !important; }
.newsletter p { color: rgba(255,255,255,0.75) !important; }
.newsletter .section-label { color: #93c5fd !important; }
.newsletter .form-control { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #ffffff; }
.newsletter .form-control::placeholder { color: rgba(255,255,255,0.5); }
.newsletter .btn-primary { background: #ffffff; color: #1e3a8a; }
.newsletter .btn-primary:hover { background: #dbeafe; }

footer .footer-brand p { color: rgba(255,255,255,0.65) !important; }
footer .footer-col h5 { color: rgba(255,255,255,0.9) !important; }
footer .footer-col a { color: rgba(255,255,255,0.6) !important; }
footer .footer-col a:hover { color: #ffffff !important; }
footer .footer-bottom p { color: rgba(255,255,255,0.4) !important; }
footer .social-link { border-color: rgba(255,255,255,0.2) !important; color: rgba(255,255,255,0.6) !important; }
footer .social-link:hover { color: #ffffff !important; background: rgba(255,255,255,0.1) !important; }


/* ── POPPINS FIX: exclude icon fonts ── */
*, *::before, *::after {
  font-family: inherit;
}
html, body {
  font-family: 'Poppins', sans-serif;
}
.fa, .fas, .far, .fal, .fab, .fa-solid, .fa-regular, .fa-brands,
[class^="fa-"], [class*=" fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
}
