/* ═══════════════════════════════════════════════════════════════
   Touch My Soul Acqua Tech — styles.css
   Mobile-first. Breakpoints: 768px (tablet), 1024px (desktop).
═══════════════════════════════════════════════════════════════ */

/* ─── Colour tokens ─────────────────────────────────────────── */
:root {
  --deep-blue:   #0c2d48;
  --mid-blue:    #145374;
  --teal:        #2ec4b6;
  --teal-light:  #cbf3f0;
  --amber:       #e8a838;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --gray-100:    #f1f5f9;
  --gray-300:    #cbd5e1;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --gray-900:    #0f172a;
  --font-head:   'Plus Jakarta Sans', sans-serif;
  --font-body:   'Outfit', sans-serif;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-xs:   8px;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  --nav-height:  72px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
}
a { color: inherit; text-decoration: none; }

/* ─── Utilities ─────────────────────────────────────────────── */
.hidden    { display: none !important; }
.text-center { text-align: center; }
.text-muted  { color: var(--gray-500); }
.text-teal   { color: var(--teal); }
.text-white  { color: var(--white); }
.btn-full    { width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

/* ─── Pages ─────────────────────────────────────────────────── */
.page { display: block; }
.page.hidden { display: none; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  transition: opacity 0.15s ease, transform 0.1s ease;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
}
.btn:hover  { opacity: 0.88; }
.btn:active { transform: scale(0.98); }

.btn-amber        { background: var(--amber); color: var(--white); }
.btn-teal         { background: var(--teal); color: var(--white); }
.btn-deep-blue    { background: var(--deep-blue); color: var(--white); }
.btn-ghost        { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-dark { background: transparent; color: var(--deep-blue); border: 2px solid var(--deep-blue); }
.btn-outline-light{ background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.link-btn         { background: none; border: none; color: var(--teal); font-weight: 600; cursor: pointer; font-family: var(--font-body); font-size: inherit; padding: 0; }

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.card-img { height: 160px; overflow: hidden; background: var(--off-white); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body {
  padding: 1rem;
}
.card-body h3 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--mid-blue);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.card-body p { font-size: 0.9375rem; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .card-body { padding: 1.5rem; } }

/* ─── Forms ─────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-hint  { font-size: 0.75rem; color: var(--gray-500); }
.form-error {
  background: #fef2f2;
  color: #dc2626;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  border: 1px solid #fecaca;
}

/* ─── Page header (blue gradient banner) ───────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
  padding: 3.5rem 1rem 2.5rem;
}
.page-header h1 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}
.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-header { padding: 5rem 1.5rem 3.75rem; }
  .page-header h1 { font-size: 2.75rem; }
  .page-header p  { font-size: 1.125rem; }
}

/* ─── Section wrappers ──────────────────────────────────────── */
.section-white   { padding: 3rem 0; }
.section-offwhite{ padding: 3rem 0; background: var(--off-white); }
.section-dark    { padding: 3rem 1rem; background: var(--deep-blue); }
@media (min-width: 768px) {
  .section-white, .section-offwhite { padding: 5rem 0; }
  .section-dark { padding: 5rem 1.5rem; }
}

/* ─── Section headers ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 1.75rem; }
.section-header h2 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--deep-blue);
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
.section-header-dark h2 { color: var(--white); }
.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  font-family: var(--font-body);
}
.section-label-dark { font-size: 0.8125rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.125rem; }
.section-desc { color: var(--gray-700); font-size: 0.9375rem; max-width: 560px; margin: 0.75rem auto 0; }
.section-action { text-align: center; margin-top: 1.75rem; }
@media (min-width: 768px) {
  .section-header { margin-bottom: 3rem; }
  .section-header h2 { font-size: 2.25rem; }
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .nav-inner { height: var(--nav-height); padding: 0 1.5rem; }
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 800;
  font-family: var(--font-head);
  flex-shrink: 0;
  letter-spacing: 0.0625rem;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--deep-blue);
  font-size: 1rem;
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.5625rem;
  color: var(--gray-500);
  font-family: var(--font-body);
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 1.125rem;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; gap: 1.75rem; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-links { display: flex; }
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-700);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-link.active,
.nav-link:hover { color: var(--teal); border-bottom-color: var(--teal); font-weight: 600; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .nav-actions { gap: 0.75rem; } }

/* Cart button */
.cart-btn { position: relative; padding: 0.5rem; background: none; border: none; cursor: pointer; }
.cart-icon { font-size: 1.375rem; }
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--amber);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
}

/* Account button */
.nav-account-btn {
  display: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.875rem;
  background: none;
  cursor: pointer;
  transition: border-color 0.15s;
}
.nav-account-btn:hover { border-color: var(--teal); color: var(--teal); }
@media (min-width: 768px) { .nav-account-btn { display: block; } }

/* Quote button (desktop only) */
.nav-quote-btn {
  display: none;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}
@media (min-width: 768px) { .nav-quote-btn { display: inline-block; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.bar {
  height: 2.5px;
  width: 100%;
  background: var(--deep-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }
@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

/* Mobile menu drawer */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 3px solid var(--teal);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  padding: 0.75rem 1rem 1.5rem;
  max-height: 75vh;
  overflow-y: auto;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--gray-100);
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--deep-blue);
  margin-bottom: 2px;
  transition: background 0.15s;
}
.mobile-nav-link.active,
.mobile-nav-link:hover { background: var(--teal-light); color: var(--teal); }
.mobile-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
}
.mobile-nav-link.active .mobile-nav-dot { background: var(--teal); }
.mobile-nav-arrow { margin-left: auto; color: var(--gray-300); font-size: 1rem; }
.mobile-quote-btn { margin-top: 1rem; padding: 1rem 2rem; font-size: 1rem; }
.mobile-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
}
.mobile-social-label { font-size: 0.75rem; color: var(--gray-500); font-family: var(--font-body); }
.social-icons { display: flex; gap: 0.5rem; }
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-blue);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-head);
}
.mobile-social-handle { text-align: center; margin-top: 0.625rem; font-size: 0.6875rem; color: var(--gray-500); }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { filter: brightness(0.3); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,45,72,0.85) 0%, rgba(20,83,116,0.7) 50%, rgba(46,196,182,0.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 1rem 3rem;
}
.hero-text { max-width: 680px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
  color: var(--teal-light);
  font-weight: 500;
  font-family: var(--font-body);
}
.hero-content h1 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
  margin-bottom: 1.75rem;
  max-width: 540px;
}
.hero-btns { display: flex; flex-direction: column; gap: 0.75rem; }
.hero-btns .btn { padding: 0.875rem 1.5rem; font-size: 0.875rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin-top: 2.5rem;
}
.hero-stat {
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0.875rem;
  text-align: center;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-stat-icon { font-size: 1.375rem; }
.hero-stat-label {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  font-size: 0.75rem;
}
.hero-stat-sub { color: rgba(255,255,255,0.7); font-size: 0.625rem; }
@media (min-width: 768px) {
  .hero-content { padding: 5rem 1.5rem 4rem; }
  .hero-badge { font-size: 0.8125rem; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p  { font-size: 1.125rem; }
  .hero-btns { flex-direction: row; }
  .hero-btns .btn { padding: 1rem 2rem; font-size: 1rem; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 4rem; }
  .hero-stat { padding: 1.25rem; }
  .hero-stat-icon { font-size: 1.75rem; }
  .hero-stat-label { font-size: 0.875rem; }
  .hero-stat-sub  { font-size: 0.75rem; }
}
@media (min-width: 1024px) {
  .hero-content h1 { font-size: 3.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.product-card-img {
  height: 180px;
  position: relative;
  background: var(--off-white);
  overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  color: var(--white);
  font-family: var(--font-head);
}
.badge-best-seller { background: var(--teal); }
.badge-premium     { background: var(--deep-blue); }
.badge-commercial  { background: var(--mid-blue); }
.badge-essential   { background: var(--amber); }

.product-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
.product-stars { color: var(--amber); letter-spacing: 0.125rem; }
.product-reviews { font-size: 0.6875rem; color: var(--gray-500); }
.product-name {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--mid-blue);
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}
.product-desc { font-size: 0.8125rem; flex: 1; margin-bottom: 0.875rem; color: var(--gray-700); line-height: 1.6; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.product-price {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--teal);
  font-size: 1.25rem;
}
.btn-add-cart {
  background: var(--deep-blue);
  color: var(--white);
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}
.btn-add-cart:hover { opacity: 0.85; }

@media (min-width: 768px) {
  .product-card-img { height: 200px; }
  .product-body { padding: 1.25rem; }
  .product-name { font-size: 1rem; }
  .product-price { font-size: 1.375rem; }
  .btn-add-cart { padding: 0.625rem 1.25rem; }
}

/* Skeleton loaders */
.skeleton-card {
  height: 340px;
  background: var(--gray-100);
  border-radius: var(--radius);
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px)  { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.service-card-img { height: 160px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: 1rem; }
.service-body h3 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--mid-blue);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.service-body p { font-size: 0.875rem; margin-bottom: 0.875rem; color: var(--gray-700); line-height: 1.6; }
.service-price { font-size: 0.875rem; font-weight: 600; color: var(--teal); font-family: var(--font-body); }
@media (min-width: 768px) {
  .service-body { padding: 1.5rem; }
  .service-body h3 { font-size: 1.125rem; }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-stars { color: var(--amber); letter-spacing: 0.125rem; }
.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-name {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  font-size: 0.875rem;
}
.testimonial-location { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
@media (min-width: 768px) { .testimonial-card { padding: 1.75rem; } }

/* ═══════════════════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.blog-card-img { height: 160px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1rem; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
.blog-tag {
  background: var(--teal-light);
  color: var(--mid-blue);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-family: var(--font-body);
}
.blog-read-time { font-size: 0.75rem; color: var(--gray-500); }
.blog-title {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--mid-blue);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-excerpt { font-size: 0.8125rem; margin-bottom: 0.875rem; color: var(--gray-700); line-height: 1.6; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; }
.blog-date { font-size: 0.75rem; color: var(--gray-500); }
.blog-read-more { font-size: 0.875rem; font-weight: 600; color: var(--teal); cursor: pointer; }
@media (min-width: 768px) { .blog-card-body { padding: 1.5rem; } .blog-title { font-size: 1.125rem; } }

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal), var(--deep-blue));
  padding: 3rem 1rem;
}
.cta-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.cta-inner h2 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-bottom: 1.5rem; }
.cta-btns { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
.cta-btns .btn { padding: 0.875rem 1.5rem; font-size: 0.875rem; }
@media (min-width: 768px) {
  .cta-banner { padding: 4rem 1.5rem; }
  .cta-inner h2 { font-size: 2rem; }
  .cta-inner p  { font-size: 1rem; }
  .cta-btns { flex-direction: row; }
  .cta-btns .btn { padding: 1rem 2rem; font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   FILTER BAR (products page)
═══════════════════════════════════════════════════════════════ */
.filter-bar {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s;
}
.filter-btn.active,
.filter-btn:hover { background: var(--deep-blue); color: var(--white); }
@media (min-width: 768px) { .filter-btn { padding: 0.625rem 1.5rem; } }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════ */
.about-hero { position: relative; overflow: hidden; }
.about-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.25); }
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,45,72,0.9), rgba(20,83,116,0.8));
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 1rem 2.5rem;
}
.about-hero-content h1 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}
.about-hero-content p { color: rgba(255,255,255,0.85); font-size: 0.9375rem; max-width: 600px; margin: 0 auto; }

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.about-mission-col h2,
.about-why-col h2 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--deep-blue);
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
}
.about-mission-col p { font-size: 0.9375rem; margin-bottom: 0.875rem; line-height: 1.7; }

.check-list { display: flex; flex-direction: column; gap: 0.875rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}
.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}
.offices-heading {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--deep-blue);
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
}
.offices-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }

@media (min-width: 768px) {
  .about-hero-content { padding: 5rem 1.5rem 3.75rem; }
  .about-hero-content h1 { font-size: 2.75rem; }
  .about-mission-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-bottom: 4rem; }
  .about-mission-col h2, .about-why-col h2 { font-size: 1.75rem; }
  .offices-heading { font-size: 1.75rem; }
  .offices-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.quote-form { display: flex; flex-direction: column; gap: 1.125rem; }
.quote-success {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.quote-success h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
}
.success-icon { font-size: 3rem; margin-bottom: 0.875rem; }
.contact-card .card-body { padding: 1.25rem 1.5rem; }
.contact-card .card-body h3 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--mid-blue);
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
}
.contact-social-card { background: var(--teal-light) !important; }
.contact-social-card .card-body h3 { margin-bottom: 0.5rem; }
.contact-social-links { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.875rem; }
.social-handle {
  background: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--mid-blue);
  display: inline-block;
  width: fit-content;
}
.social-handle small { color: var(--gray-500); font-size: 0.625rem; }
.contact-info-col { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

/* ═══════════════════════════════════════════════════════════════
   CART
═══════════════════════════════════════════════════════════════ */
.cart-empty { text-align: center; padding: 2rem; }
.cart-empty-icon { font-size: 3.5rem; margin-bottom: 0.875rem; }
.cart-empty h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}
.cart-empty p { font-size: 0.9375rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .cart-empty { padding: 3.75rem; } }

.cart-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .cart-layout { grid-template-columns: 1fr 360px; gap: 2rem; } }

.cart-items { display: flex; flex-direction: column; gap: 0.75rem; }
.cart-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.875rem;
  box-shadow: var(--shadow-card);
}
.cart-item-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--off-white);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--mid-blue);
  font-size: 0.875rem;
}
.cart-item-unit { font-size: 0.8125rem; color: var(--teal); font-weight: 600; }
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 1.125rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: background 0.15s;
}
.qty-btn:hover { background: var(--gray-300); }
.qty-value { font-size: 1rem; font-weight: 600; width: 28px; text-align: center; font-family: var(--font-body); }
.cart-item-total {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--deep-blue);
  font-size: 1rem;
}
.cart-remove-btn {
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 0.8125rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: background 0.15s;
}
.cart-remove-btn:hover { background: #fee2e2; color: #dc2626; }
@media (min-width: 768px) { .cart-item { padding: 1.25rem; } }

/* Cart / Checkout summary */
.cart-summary {
  padding: 1.25rem 1.75rem;
  height: fit-content;
}
@media (min-width: 768px) {
  .cart-summary { position: sticky; top: calc(var(--nav-height) + 1.5rem); }
}
.cart-summary h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1.125rem;
}
.summary-lines { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.125rem; padding-bottom: 1.125rem; border-bottom: 1px solid var(--gray-100); }
.summary-line { display: flex; justify-content: space-between; font-size: 0.875rem; }
.summary-value { font-weight: 600; }
.summary-total { display: flex; justify-content: space-between; margin-bottom: 1.25rem; }
.summary-total span:first-child {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.125rem;
}
.summary-total-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--teal);
}
.summary-note { font-size: 0.6875rem; color: var(--gray-500); text-align: center; margin-top: 0.625rem; }

/* ═══════════════════════════════════════════════════════════════
   CHECKOUT
═══════════════════════════════════════════════════════════════ */
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .checkout-layout { grid-template-columns: 1fr 360px; gap: 2rem; } }
.checkout-card .card-body h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--deep-blue);
  margin-bottom: 1.25rem;
}
.checkout-card .card-body { padding: 1.5rem; }
.checkout-items { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.checkout-item { display: flex; justify-content: space-between; font-size: 0.875rem; }
.checkout-item-name { color: var(--gray-700); }
.checkout-item-price { font-weight: 600; color: var(--deep-blue); }

/* Payment options */
.payment-section { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.payment-section h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--deep-blue);
  margin-bottom: 1rem;
}
.payment-options { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.payment-option {
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.payment-option input[type="radio"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--teal); }
.payment-option.active,
.payment-option:has(input:checked) { border-color: var(--teal); background: var(--teal-light); }
.payment-option-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.payment-option-name { font-family: var(--font-head); font-weight: 700; font-size: 0.9375rem; color: var(--deep-blue); }
.payment-badge { background: var(--teal); color: var(--white); font-size: 0.625rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.0625rem; font-family: var(--font-head); }
.payment-option-desc { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   ORDER CONFIRMATION
═══════════════════════════════════════════════════════════════ */
.confirm-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.confirm-icon { font-size: 3rem; margin-bottom: 0.875rem; }
.confirm-box h1 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--deep-blue);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.confirm-sub { font-size: 1rem; margin-bottom: 1.5rem; }
.confirm-details {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
}
.confirm-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row span:first-child { color: var(--gray-500); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.0625rem; }
.confirm-row strong { color: var(--deep-blue); font-family: var(--font-head); font-weight: 700; }
.confirm-actions { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 768px) {
  .confirm-box { padding: 3rem 2.5rem; }
  .confirm-actions { flex-direction: row; }
}

/* ═══════════════════════════════════════════════════════════════
   ACCOUNT
═══════════════════════════════════════════════════════════════ */
.account-container { max-width: 680px; margin: 0 auto; }
.auth-tabs { display: flex; gap: 0; margin-bottom: 1.5rem; border-bottom: 2px solid var(--gray-100); }
.auth-tab {
  flex: 1;
  padding: 0.875rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-500);
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  background: none;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.auth-tab.active { color: var(--teal); border-bottom-color: var(--teal); }
.auth-form-wrap { width: 100%; }
.auth-form { overflow: visible; }
.auth-form .card-body { padding: 1.75rem; }
.auth-form .card-body h2 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--deep-blue);
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}
.auth-form .form-group { margin-bottom: 1rem; }
.auth-switch { text-align: center; margin-top: 1rem; font-size: 0.875rem; color: var(--gray-500); }

.account-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.account-header h2 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--deep-blue);
  font-size: 1.375rem;
}
.orders-heading {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--deep-blue);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.order-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.order-ref {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--deep-blue);
  font-size: 0.875rem;
}
.order-date { font-size: 0.75rem; color: var(--gray-500); }
.order-total { font-family: var(--font-head); font-weight: 700; color: var(--teal); font-size: 1rem; }
.order-status {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  font-family: var(--font-head);
}
.status-pending    { background: #fef3c7; color: #92400e; }
.status-paid       { background: #d1fae5; color: #065f46; }
.status-processing { background: #dbeafe; color: #1e40af; }
.status-shipped    { background: #ede9fe; color: #5b21b6; }
.status-delivered  { background: #d1fae5; color: #065f46; }
.order-items-section { padding: 0.75rem 1.25rem; }
.order-item { font-size: 0.8125rem; color: var(--gray-700); padding: 0.25rem 0; }
.orders-empty { text-align: center; padding: 2.5rem 1rem; }
.orders-empty p { color: var(--gray-500); margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   ADMIN
═══════════════════════════════════════════════════════════════ */
.admin-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.admin-page-header h1 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: 1.875rem;
}
.admin-denied-box { max-width: 480px; margin: 2rem auto; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .admin-stats { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--deep-blue);
}
.stat-label { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.0625rem; }

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.admin-toolbar h2 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--deep-blue);
  font-size: 1.25rem;
}
.admin-toolbar-actions { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.admin-toolbar-actions select {
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  width: auto;
  background: var(--white);
}

.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.admin-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--gray-100);
  color: var(--gray-700);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  white-space: nowrap;
}
.admin-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  vertical-align: middle;
}
.admin-table tr:hover td { background: var(--off-white); }
.admin-status-select {
  width: auto;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 0.75rem;
  background: var(--white);
  cursor: pointer;
}
.admin-empty { text-align: center; padding: 2rem; color: var(--gray-500); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--gray-900);
  padding: 2.5rem 0 1.5rem;
}
.footer-inner { }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}
.footer-logo .nav-logo-badge { width: 32px; height: 32px; border-radius: var(--radius-xs); font-size: 0.625rem; }
.footer-logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: 0.9375rem;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.8125rem; max-width: 280px; line-height: 1.7; margin-bottom: 0.875rem; }
.footer-social { display: flex; gap: 0.625rem; }
.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.6875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-head);
  transition: background 0.15s;
}
.footer-social-icon:hover { background: rgba(255,255,255,0.2); }

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  margin-bottom: 0.875rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-family: var(--font-body);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--white); }
.footer-text { color: rgba(255,255,255,0.5); font-size: 0.8125rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom > span { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.footer-legal-link {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.15s;
}
.footer-legal-link:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════════════════════
   TOAST NOTIFICATION
═══════════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--deep-blue);
  color: var(--white);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: var(--font-body);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  z-index: 9999;
  max-width: 320px;
  border-left: 4px solid var(--teal);
  animation: toast-in 0.25s ease;
}
.toast.toast-error { border-left-color: #dc2626; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(1rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   LOADING SPINNER
═══════════════════════════════════════════════════════════════ */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-100);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
