/* =========================
   Design Tokens
   ========================= */
:root {
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --black: #1d1d1f;
  --gray: #6b6b70;
  --gray-light: #f5f5f7;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.1);

  --glass: rgba(255, 255, 255, 0.82);

  --container: 1100px;
  --gutter: clamp(16px, 4vw, 24px);
}

/* =========================
   Reset & Base
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =========================
   Navbar
   ========================= */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: var(--glass);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@supports (backdrop-filter: blur(1px)) {
  .navbar {
    backdrop-filter: saturate(180%) blur(20px);
  }
}

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-text {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.875rem;
  font-weight: 500;
}

nav a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: color 0.2s ease, opacity 0.2s ease;
}

nav a:hover {
  opacity: 1;
  color: var(--blue);
}

/* =========================
   Hero
   ========================= */
.hero {
  position: relative;
  padding: clamp(120px, 20vh, 180px) var(--gutter)
    clamp(80px, 14vh, 120px);
  text-align: center;
  color: #fff;
  background: url("../assets/homepage_bg.jpeg") center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-inline: auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* =========================
   Layout
   ========================= */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(60px, 10vw, 80px) var(--gutter);
}

/* =========================
   Grid & Cards
   ========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 4vw, 32px);
  margin-top: clamp(-60px, -8vw, -80px);
  position: relative;
  z-index: 2;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =========================
   Buttons
   ========================= */
button {
  appearance: none;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--blue);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

button:hover {
  background: var(--blue-hover);
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 113, 227, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* =========================
   Inputs
   ========================= */
input,
textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid #e6e6ea;
  font-size: 0.9rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
}

/* =========================
   Utilities
   ========================= */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.badge {
  display: inline-block;
  background: #ff3b30;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.75rem;
}

/* =========================
   Accessibility & Motion
   ========================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================
   Mobile Menu
   ========================= */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 19px; }
.menu-toggle span:nth-child(3) { top: 26px; }

/* ---------- Mobile Layout ---------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);

    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  nav a {
    padding: 16px 24px;
    font-size: 1rem;
    opacity: 1;
  }

  nav a:hover {
    background: var(--gray-light);
    color: var(--blue);
  }

  body.menu-open nav {
    transform: translateY(0);
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Hamburger animation */
  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* =========================
   Gallery Filters
   ========================= */

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.25s ease, color 0.25s ease,
    transform 0.25s ease, box-shadow 0.25s ease;
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.filter-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.3);
}

/* =========================
   Media Gallery
   ========================= */

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 4vw, 32px);
}

.media-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    opacity 0.25s ease;
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  background: #000;
}

.media-card video {
  outline: none;
  border: none;
}

/* Optional hidden state (future animation-ready) */
.media-card.hidden {
  opacity: 0;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .media-card img,
  .media-card video {
    aspect-ratio: 16 / 11;
  }
}

/* =========================
   Orders Page
   ========================= */

.orders-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 680px;
  margin: 16px auto 40px;
}

.orders-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.order-legend {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.status {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status.pending {
  background: #ffe9c6;
  color: #8a5a00;
}

.status.processing {
  background: #e6f0ff;
  color: #004bb5;
}

.status.ready {
  background: #e6f7ee;
  color: #0b6b3a;
}

.status.completed {
  background: #ededf0;
  color: #444;
}

/* Order card enhancements */
.orders-list .product-card {
  box-shadow: var(--shadow-sm);
}

.orders-list .product-card h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* (above styles kept unchanged) */

/* =========================
   Navbar — language toggle refinements
   ========================= */
.lang-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  appearance: none;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  color: var(--black);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.18s ease, transform 0.12s ease;
}

.lang-btn:hover { transform: translateY(-1px); }
.lang-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 6px 14px rgba(0,113,227,0.18);
}

/* Keep nav layout tidy on small screens */
@media (max-width: 768px) {
  .lang-toggle { display: none; } /* we keep it visible in nav when expanded */
  body.menu-open .lang-toggle { display: flex; margin-left: 16px; }
}

/* Hero tweaks (slightly stronger overlay and padding) */
.hero {
  position: relative;
  padding: clamp(110px, 18vh, 160px) var(--gutter) clamp(60px, 12vh, 100px);
  text-align: center;
  color: #fff;
  background: center / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.45), rgba(0,0,0,0.78));
  z-index: 0;
}

/* active nav link appearance */
nav a.active {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 6px;
}
/* =========================
   Additions for auth full-screen, language toggle & hero refinements
   Append these lines to the end of public/css/styles.css
   ========================= */

/* =========================
   AUTH — FULLSCREEN SPLIT (FINAL FIX)
   ========================= */

.auth-split {
  min-height: 100vh;
  padding-top: 64px; /* navbar height */
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "form image";
  align-items: stretch;
  box-sizing: border-box;
}

/* Left side = LOGIN */
.auth-right {
  grid-area: form;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 6vw, 72px);
}

/* Right side = IMAGE */
.auth-left {
  grid-area: image;
  background-image: url("../assets/homepage_bg.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 6vw, 48px);
}

.auth-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.65)
  );
  z-index: 0;
}

.auth-left .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: left;
}

.auth-left h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.08;
  margin-bottom: 12px;
  font-weight: 800;
}

.auth-left p {
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
  max-width: 520px;
}

/* Auth form container */
.auth-forms {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Panels */
.form-panel {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.98),
    rgba(250,250,250,0.98)
  );
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

/* Inputs */
.form-panel input {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 10px;
}

/* Buttons */
.form-panel .btn {
  width: 100%;
  padding: 12px 16px;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 880px) {
  .auth-split {
    grid-template-columns: 1fr;
    grid-template-areas:
      "form"
      "image";
  }

  .auth-left {
    min-height: 360px;
  }
}

/* Make each small section visually separated but not a tiny boxed card */
.form-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.98));
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

/* Inputs that span width */
.form-panel input[type="email"],
.form-panel input[type="password"],
.form-panel input[type="text"] {
  display: block;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* Buttons in auth area */
.form-panel .btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
}

/* Keep focus states visible */
.form-panel input:focus {
  outline: 2px solid rgba(0,113,227,0.12);
  border-color: var(--blue);
}

/* === Language Toggle Navbar Buttons === */
.lang-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 12px;
}
.lang-btn {
  appearance: none;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  color: var(--black);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
}
.lang-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(0,113,227,0.12);
}

/* Hero tweak for pages that reuse hero class */
.hero {
  padding: clamp(80px, 16vh, 140px) var(--gutter) clamp(40px, 10vh, 80px);
}
.hero::before {
  background: radial-gradient(circle at center, rgba(0,0,0,0.45), rgba(0,0,0,0.78));
}

/* Small image card utility for inserting homepage-like images into content */
.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  height: 260px;
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .img-card { height: 200px; }
}

/* ==================================================
   ADMIN PAGE ONLY (ISOLATED — DOES NOT AFFECT HOME)
   ================================================== */

.admin-page .admin-layout {
  display: flex;
  min-height: calc(100vh - 70px);
}

/* LEFT SIDE */
.admin-page .admin-left {
  flex: 1.2;
  position: relative;
  background: url("../assets/admin-bg.jpg.html") center / cover no-repeat;
}

.admin-page .admin-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.2)
  );
}

.admin-page .admin-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  max-width: 520px;
  color: #ffffff;
}

.admin-page .admin-content h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.admin-page .admin-content p {
  font-size: 16px;
  line-height: 1.6;
}

/* THUMBNAILS */
.admin-page .admin-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.admin-page .admin-thumbs img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

/* RIGHT SIDE */
.admin-page .admin-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-page .admin-card {
  background: #ffffff;
  width: 420px;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.admin-page .admin-card h2 {
  margin-bottom: 6px;
}

.admin-page .admin-card p {
  margin-bottom: 16px;
  color: #555;
}

/* BUTTON */
.admin-page .admin-btn {
  width: 100%;
  margin-top: 20px;
}

/* BACK LINK */
.admin-page .back-link {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.admin-page .back-link:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--black);
  color: #fff;
  padding: 60px var(--gutter) 20px;
  margin-top: 100px;
}

.footer-grid {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--blue);
}

.footer-bottom {
  max-width: var(--container);
  margin-inline: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* =========================
   SHOPPING CART
   ========================= */
.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.2rem;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff3b30;
  color: #fff;
  border-radius: 999px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: flex-end;
  z-index: 2000;
}

.cart-modal.open {
  display: flex;
}

.cart-panel {
  background: #fff;
  width: 100%;
  max-width: 420px;
  height: 100%;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.cart-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ff3b30;
  cursor: pointer;
  padding: 0;
  font-weight: 600;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials-section {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 60px var(--gutter);
  margin: 60px 0;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.testimonial-stars {
  color: #ffa500;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
}

/* =========================
   FAQ ACCORDION
   ========================= */
.faq-section {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  background: var(--gray-light);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  user-select: none;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(0,113,227,0.08);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  background: #fff;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
  padding: 16px 20px;
  max-height: 500px;
}

/* =========================
   QUOTE FORM
   ========================= */
.quote-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.quote-modal.open {
  display: flex;
}

.quote-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 600px;
  width: 90%;
  position: relative;
}

.quote-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
}

/* =========================
   COMPARISON TABLE
   ========================= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.comparison-table th {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}

.comparison-table tr:hover {
  background: var(--gray-light);
}

.comparison-table .check {
  color: #0b6b3a;
  font-weight: 700;
}

/* =========================
   BULK CALCULATOR
   ========================= */
.calculator-section {
  background: var(--gray-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 500px;
  margin: 40px auto;
}

.calculator-row {
  margin-bottom: 20px;
}

.calculator-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.calculator-row input {
  width: 100%;
}

.calculator-result {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-top: 20px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
}

.calculator-result .label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 500;
}

/* =========================
   CERTIFICATIONS
   ========================= */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin: 40px 0;
  text-align: center;
}

.cert-item {
  padding: 20px;
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  background: rgba(0,113,227,0.02);
}

.cert-item h4 {
  font-size: 1.1rem;
  margin-top: 12px;
  color: var(--black);
}

.cert-icon {
  font-size: 3rem;
}

/* =========================
   BLOG / NEWS SECTION
   ========================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--gray-light);
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.blog-excerpt {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.blog-link:hover {
  text-decoration: underline;
}

/* =========================
   STATS SECTION
   ========================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
  text-align: center;
}

.stat-box {
  padding: 30px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(0,113,227,0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 600;
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-card {
  animation: slideUp 0.6s ease-out;
}

.blog-card {
  animation: slideUp 0.6s ease-out;
}

.stat-box {
  animation: slideUp 0.6s ease-out;
}

/* Cart modal slideIn */
.cart-modal.open .cart-panel {
  animation: slideInRight 0.3s ease-out;
}
