:root {
  /* ---------- COLORS (Serene Earth Theme) ---------- */

  --bg: #f9f8f6; /* warm off-white */
  --surface: #ffffff;
  --card: #f2efe9;

  --primary: #5c715e; /* sage green */
  --primary-dark: #455647;

  --accent: #d97d54; /* soft terracotta */

  --text: #2c2c2a; /* deep charcoal */
  --text-muted: #6b6b66;
  --text-faint: #a3a39f;

  --border: #e2ded6;

  /* ---------- RADII ---------- */

  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  /* ---------- SPACING ---------- */

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 80px;
  --space-2xl: 120px;

  /* ---------- TYPOGRAPHY ---------- */

  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Playfair Display", "Georgia", "Times New Roman", serif;

  /* ---------- MOTION ---------- */

  --ease: cubic-bezier(0.4, 0, 0.2, 1); /* smooth, elegant fade */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* =====================================================
   TYPOGRAPHY — ELEGANT & CLEAN
===================================================== */

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0 0 var(--space-sm);
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.15;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.25;
}

h3 {
  font-size: 24px;
  color: var(--primary);
}

p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
}

strong {
  color: var(--text);
  font-weight: 600;
}

.mt-5 {
  margin-top: 30px;
}

/* =====================================================
   LINKS
===================================================== */

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

a:hover {
  color: var(--text);
  border-bottom: 1px solid var(--text);
}

/* =====================================================
   DIVIDERS
===================================================== */

.hr {
  width: 100%;
  height: 1px;
  /* Soft elegant fade */
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: var(--space-xl) 0;
  border: none;
}

/* =====================================================
   BUTTONS — SOFT & ELEVATED
===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;

  border-radius: 50px; /* Pill shape */
  border: 1px solid transparent;

  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(92, 113, 94, 0.25);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

/* =====================================================
   SURFACES & CARDS — SOFT & AIRY
===================================================== */

.surface {
  background: var(--surface);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  /* Soft, realistic shadow instead of a heavy dark drop */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.4s var(--ease);
}

.card:hover {
  /* Gently darkens the border and lifts the card */
  border-color: #d1ccbf;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

/* =====================================================
   FORMS — CLEAN & MINIMAL
===================================================== */

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  /* Replaced dark glass with solid white and a tiny inset shadow */
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-size: 15px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.3s var(--ease);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-faint);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: var(--surface);
  /* Elegant sage green focus ring instead of neon */
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(92, 113, 94, 0.15);
}

/* =====================================================
   UTILITIES
===================================================== */

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.w-100 {
  width: 100%;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .section {
    padding: var(--space-xl) 0;
  }

  p {
    font-size: 15px;
  }
}

/* =====================================================
   PAGE HEADER — SERENE EARTH
===================================================== */

.page-header-dark {
  padding-top: 30px;
  padding-bottom: 30px;
}

.page-header {
  /* Soft, airy gradient replacing the deep dark void */
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

/* Crisp, minimal border line instead of a glowing neon line */
.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border);
}

.page-header-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 var(--space-sm); /* Added light padding to prevent touching screen edges */
}

/* BREADCRUMB */

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  /* Removed the harsh uppercase for a softer, more editorial look */
  color: var(--text-faint);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.breadcrumb a:hover {
  color: var(--primary); /* Subtle shift to sage green */
}

.breadcrumb span {
  color: var(--accent); /* Soft terracotta for the separator or current page */
}

/* TITLE */

.page-header h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600; /* Slightly lighter weight for elegant Serif fonts */
  margin-bottom: 16px;
  /* Removed the gradient and shadow for a classic, sophisticated solid color */
  color: var(--text);
}

/* SUBTEXT */

.page-header p {
  font-size: 18px; /* Slightly larger for a high-end reading experience */
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* =====================================================
   TOP BAR — SERENE EARTH
===================================================== */

.topbar-soft {
  /* Soft, neutral background instead of pure black */
  background: var(--card);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em; /* Slightly tighter for a cleaner look */
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

/* LEFT SIDE */

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-msg {
  font-weight: 400; /* Softened from 500 */
}

.topbar-msg strong {
  font-weight: 600;
  color: var(--text);
  /* Removed the neon text shadow for a crisp, solid look */
}

/* BADGE */

.topbar-badge {
  /* Soft terracotta tint instead of glowing neon teal */
  background: rgba(217, 125, 84, 0.08);
  border: 1px solid rgba(217, 125, 84, 0.3);
  color: var(--accent); /* Terracotta */
  padding: 4px 12px;
  border-radius: 50px; /* Soft pill shape replacing sharp edges */
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  /* Removed the glowing box-shadow completely */
}

/* RIGHT SIDE */

.topbar-right {
  font-weight: 400;
}

.topbar-help strong {
  font-weight: 600;
  color: var(--primary); /* Sage green instead of neon purple */
  /* Removed the heavy uppercase and neon shadow for an understated elegance */
}

/* =====================================================
   HEADER — SERENE EARTH
===================================================== */

.header-soft {
  background: rgba(255, 255, 255, 0.85); /* Light, frosted glass */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); /* Clean, subtle border */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft, natural drop shadow */
}

.header-soft-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 0;
}

.container.header-soft-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

/* =====================================================
   NAVIGATION
===================================================== */

.nav-soft {
  display: flex;
  gap: 34px;
}

.nav-soft a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  /* Removed uppercase and heavy letter spacing for a refined look */
  color: var(--text-muted);
  position: relative;
  padding-bottom: 6px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.nav-soft a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px; /* Elegant thin line instead of a glowing 2px bar */
  background: var(--primary); /* Sage green */
  transition: width 0.3s var(--ease);
}

.nav-soft a:hover,
.nav-soft a.active {
  color: var(--text);
  /* Removed neon text-shadow */
}

.nav-soft a:hover::after,
.nav-soft a.active::after {
  width: 100%;
}

/* =====================================================
   LOGO
===================================================== */

.logo-soft img {
  display: block;
  margin-left: 18px;
  max-height: 32px;
  /* Removed the filter/invert notes since we are now on a light theme */
}

/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin-right: 10px;
}

/* =====================================================
   SEARCH — MINIMALIST PILL
===================================================== */

.search-soft {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 50px; /* Completely rounded pill shape */
  background: var(--surface); /* Solid white instead of translucent dark */
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.search-soft:focus-within {
  border-color: var(--primary);
  /* Replaced neon glow with a soft sage ring */
  box-shadow: 0 0 0 3px rgba(92, 113, 94, 0.15);
  background: var(--surface);
}

.search-soft i {
  font-size: 14px;
  color: var(--text-muted); /* Soft gray instead of neon */
  margin-left: 16px;
}

.search-soft input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  width: 160px;
  color: var(--text);
  padding: 10px 16px 10px 0; /* Adjusted padding for pill shape */
}

.search-soft input::placeholder {
  color: var(--text-faint);
  /* Removed uppercase placeholder for a cleaner look */
  font-size: 14px;
}

/* =====================================================
   ICON BUTTONS
===================================================== */

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%; /* Perfect circle */
  border: 1px solid transparent; /* Removed heavy border */
  background: var(--card); /* Soft beige background */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  position: relative;
  transition: all 0.3s var(--ease);
}

.icon-btn:hover {
  background: var(--surface);
  border-color: var(--border);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Gentle lift instead of glow */
  transform: translateY(-2px);
}

/* CART BADGE */

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent); /* Terracotta */
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 50px; /* Soft pill shape */
  /* Removed neon glow completely */
}

/* =====================================================
   MOBILE TOGGLE
===================================================== */

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%; /* Circle */
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--surface);
}

/* =====================================================
   MOBILE MENU — EDITORIAL SLIDE-OUT
===================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg); /* Warm off-white */
  z-index: 2000;
  padding: 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  border-left: 1px solid var(--border); /* Clean edge */
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05); /* Soft shadow */
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.mobile-menu-header img {
  height: 36px;
}

.mobile-menu-header button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-header button:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--surface);
}

/* =====================================================
   MOBILE NAV
===================================================== */

.mobile-nav a {
  display: block;
  font-family: var(--font-heading); /* Elegant serif font */
  font-size: 28px;
  font-weight: 500;
  /* Removed heavy uppercase */
  color: var(--text-muted);
  margin-bottom: 20px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.mobile-nav a:hover {
  color: var(--primary-dark);
  padding-left: 8px; /* Gentle indent */
  /* Removed neon text-shadow and thick border */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .nav-soft,
  .search-soft {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-soft-inner {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 600px) {
  .topbar-soft {
    display: none;
  }
  .icon-btn {
    display: none;
  }
}

/* =====================================================
   HERO BANNER — SERENE EARTH
===================================================== */

.nb-banner-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
}

/* Main Wrapper */
.nb-banner-wrapper {
  width: 100%;
  height: 680px;
  background-color: var(--surface); /* Clean white background */
  position: relative;
  overflow: hidden;
  display: flex;
  /* Removed the neon bottom border */
}

/* Background Shape - Soft, elegant diagonal sweep */
.nb-bg-curve {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--bg); /* Warm off-white */
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  /* Removed sharp glowing borders */
  z-index: 1;
  transition: all 0.4s var(--ease);
}

/* Slider Track */
.nb-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease); /* Smoother, elegant glide */
  z-index: 2;
}

/* Individual Slide */
.nb-slide-item {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 100px;
}

/* Left Column Content */
.nb-content-left {
  flex: 1.1;
  padding-right: 40px;
  z-index: 3;
}

/* Soft Pill Badge */
.nb-badge-pill {
  display: inline-flex;
  align-items: center;
  background-color: rgba(217, 125, 84, 0.08); /* Soft terracotta tint */
  color: var(--accent);
  border: 1px solid rgba(217, 125, 84, 0.3);
  padding: 6px 16px;
  border-radius: 50px; /* Friendly pill shape */
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* Softened letter spacing */
  margin-bottom: 25px;
  /* Removed neon glow */
}

.nb-badge-pill i {
  margin-right: 8px;
  font-size: 1rem;
}

/* Elegant Typography */
.nb-title-dark {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  /* Removed aggressive uppercase and deep shadows */
}

/* Accent Heading (Formerly Neon Gradient) */
.nb-title-blue {
  color: var(--primary-dark); /* Deep sage green */
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.15;
  font-weight: 600;
  font-style: italic; /* Added editorial flair */
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  /* Removed neon background clip and text shadows */
}

.nb-desc-text {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 85%;
}

/* Features Grid */
.nb-features-row {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.nb-feature-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nb-feature-block i {
  color: var(--primary); /* Soft sage green */
  font-size: 1.4rem;
  /* Removed neon shadow */
}

.nb-feature-block span {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  /* Removed heavy uppercase */
}

/* Buttons */
.nb-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nb-btn-solid {
  background-color: var(--primary);
  color: #ffffff;
  border: 1px solid transparent;
  padding: 14px 32px;
  border-radius: 50px; /* Pill shape */
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15);
  text-decoration: none;
}

.nb-btn-solid:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(92, 113, 94, 0.25);
}

.nb-btn-outline {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 32px;
  border-radius: 50px; /* Pill shape */
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.nb-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Right Column Content */
.nb-content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 3;
}

/* Image Container */
.nb-image-container {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  /* Removed the glowing tech shadow for a clean look */
}

.nb-image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Bottom Trust Panel - Clean & Light */
.nb-trust-panel {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); /* Smooth, friendly corners */
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft, realistic shadow */
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Removed the glowing accent line from before */
.nb-trust-panel::before {
  display: none;
}

.nb-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nb-trust-item i {
  color: var(--primary); /* Sage green */
  font-size: 1.4rem;
}

.nb-trust-text h4 {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.nb-trust-text p {
  color: var(--text-muted);
  font-size: 13px;
}

/* Navigation Arrows - Elegant Circles */
.nb-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%; /* Perfect circles */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Soft drop shadow */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  z-index: 10;
  transition: all 0.3s var(--ease);
}

.nb-nav-arrow:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 16px rgba(92, 113, 94, 0.2);
}

.nb-arrow-prev {
  left: 30px;
}
.nb-arrow-next {
  right: 30px;
}

/* Pagination Dots - Soft Pills */
.nb-pagination-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.nb-dot {
  width: 8px;
  height: 8px; /* Perfect circles instead of terminal dashes */
  background-color: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.nb-dot.active {
  background-color: var(--primary); /* Sage green */
  width: 24px; /* Stretches into a pill shape */
  border-radius: 12px;
  /* Removed neon glow */
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

@media (max-width: 1200px) {
  .nb-slide-item {
    padding: 0 70px;
  }
  .nb-content-left {
    padding-right: 20px;
  }
  .nb-image-container {
    height: 300px;
  }
  .nb-trust-panel {
    padding: 15px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .nb-trust-item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 992px) {
  .nb-banner-wrapper {
    height: auto;
    min-height: 680px;
  }
  .nb-slide-item {
    flex-direction: column;
    padding: 60px 40px 80px 40px;
    text-align: center;
  }
  .nb-bg-curve {
    width: 100%;
    height: 60%;
    top: auto;
    bottom: 0;
    clip-path: polygon(
      0 15%,
      100% 0,
      100% 100%,
      0% 100%
    ); /* Softened mobile slope */
  }
  .nb-content-left {
    padding-right: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nb-desc-text {
    max-width: 100%;
  }
  .nb-features-row {
    justify-content: center;
  }
  .nb-btn-group {
    justify-content: center;
  }
  .nb-image-container {
    height: 280px;
  }
  .nb-nav-arrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .nb-arrow-prev {
    left: 15px;
  }
  .nb-arrow-next {
    right: 15px;
  }
}

@media (max-width: 576px) {
  .nb-slide-item {
    padding: 50px 20px 80px 20px;
  }
  .nb-features-row {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .nb-btn-group {
    flex-direction: column;
    width: 100%;
  }
  .nb-btn-solid,
  .nb-btn-outline {
    width: 100%;
    justify-content: center;
  }
  .nb-image-container {
    height: 220px;
  }
  .nb-trust-item {
    width: 100%;
    justify-content: center;
    text-align: left;
  }
  .nb-nav-arrow {
    display: none;
  }
}

/* =====================================================
   FEATURES SECTION — SERENE EARTH
===================================================== */

.nfs-features-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
}

/* Main Wrapper */
.nfs-features-section {
  background-color: var(--bg); /* Warm off-white */
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Removed neon bottom border */
}

/* Decorative Background Elements - Softened into subtle, elegant accents */
.nfs-decor-dots {
  position: absolute;
  top: 40px;
  right: 5%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(
    var(--border) 2px,
    transparent 2px
  ); /* Soft, subtle dots replacing glowing teal */
  background-size: 20px 20px;
  opacity: 0.6;
  /* Removed glowing drop-shadow */
}

.nfs-decor-plane {
  position: absolute;
  top: 60px;
  left: 5%;
  color: var(--primary-dark); /* Deep sage green */
  font-size: 2rem;
  transform: rotate(-15deg);
  opacity: 0.15; /* Subdued opacity */
  /* Removed glowing text-shadow */
}

/* Converted from a glowing laser trail to a delicate dashed arc */
.nfs-plane-path {
  position: absolute;
  top: 100px;
  left: -20px;
  width: 150px;
  height: 50px;
  border-top: 1px dashed var(--primary); /* Soft sage dash */
  border-radius: 50%; /* Smooth arc */
  transform: rotate(15deg);
  opacity: 0.4;
  /* Removed neon border-image */
}

/* Header Area */
.nfs-header {
  text-align: center;
  margin-bottom: 90px;
  position: relative;
  z-index: 2;
}

/* Soft Pill Badge */
.nfs-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(217, 125, 84, 0.08); /* Soft terracotta tint */
  color: var(--accent);
  border: 1px solid rgba(217, 125, 84, 0.3);
  padding: 6px 16px;
  border-radius: 50px; /* Friendly pill shape */
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  /* Removed neon box-shadow */
}

.nfs-badge i {
  margin-right: 8px;
  font-size: 1rem;
}

/* Elegant Typography */
.nfs-title {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  /* Removed aggressive uppercase and deep shadows */
}

.nfs-subtitle {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards Grid */
.nfs-cards-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  max-width: 1400px;
  width: 100%;
  z-index: 2;
}

/* Individual Card - Light & Airy Panel */
.nfs-card {
  background-color: var(--surface); /* Solid white */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Friendly, rounded corners */
  padding: 65px 24px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Soft, realistic shadow */
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nfs-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary); /* Sage green border on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Floating Icon Wrapper - Soft Circle */
.nfs-icon-wrapper {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: var(--surface); /* Matches the card to look seamless */
  border-radius: 50%; /* Perfect circle instead of a square node */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Gentle lift */
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.nfs-card:hover .nfs-icon-wrapper {
  border-color: var(--primary);
  transform: translateX(-50%) translateY(-4px); /* Extra slight lift */
  box-shadow: 0 8px 16px rgba(92, 113, 94, 0.15);
}

/* Decorative Ring - Soft Dashed Border */
.nfs-icon-ring {
  position: absolute;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  border: 1px dashed var(--border); /* Delicate dashed line */
  transform: rotate(0deg);
  opacity: 0.5;
  transition:
    transform 0.8s var(--ease),
    border-color 0.4s var(--ease);
}

.nfs-card:hover .nfs-icon-ring {
  transform: rotate(90deg); /* Keeps the subtle rotation animation */
  border-color: var(--primary);
  opacity: 1;
  /* Removed harsh glowing box-shadow */
}

/* Inner Icon */
.nfs-icon-inner {
  font-size: 2.2rem;
  color: var(--primary); /* Sage green */
  z-index: 2;
  /* Removed neon text-shadow */
}

.nfs-card-title {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  /* Removed heavy uppercase */
}

.nfs-card-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 24px;
}

/* Arrow Button - Elegant Circle Button */
.nfs-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%; /* Perfect circle */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  font-size: 0.9rem;
}

.nfs-arrow-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.2);
  transform: translateY(-2px); /* Soft lift instead of a pop scale */
}

/* Bottom Trust Bar - Clean Information Panel */
.nfs-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); /* Soft corners */
  padding: 24px 40px;
  margin-top: 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Natural drop shadow */
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
  position: relative;
}

/* Removed the glowing top gradient accent line completely */
.nfs-trust-bar::before {
  display: none;
}

.nfs-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  /* Removed aggressive uppercase */
}

.nfs-trust-item i {
  color: var(--primary); /* Sage green */
  font-size: 1.4rem;
  /* Removed neon text shadow */
}

.nfs-trust-divider {
  width: 1px;
  height: 30px;
  background-color: var(--border); /* Soft, natural divider */
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

@media (max-width: 1200px) {
  .nfs-cards-container {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 70px;
  }
}

@media (max-width: 900px) {
  .nfs-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .nfs-trust-divider {
    display: none;
  }
  .nfs-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }
  .nfs-trust-item {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .nfs-cards-container {
    grid-template-columns: 1fr;
    row-gap: 80px;
  }
  .nfs-subtitle {
    font-size: 16px;
  }
  .nfs-features-section {
    padding: 60px 15px;
  }
  .nfs-decor-plane,
  .nfs-plane-path {
    display: none;
  }
}

/* =====================================================
   CATEGORY SECTION — SERENE EARTH
===================================================== */

.nc-dark-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
}

/* Full Width Wrapper - Warm off-white with subtle dotted pattern */
.nc-dark-section {
  background-color: var(--bg);
  /* Gentle, elegant dotted background instead of a harsh laser grid */
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: center center;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--border);
  position: relative;
}

/* Header Area */
.nc-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 90px;
  position: relative;
  z-index: 2;
}

/* Overline - Soft & Elegant Subtitle */
.nc-overline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--accent); /* Soft terracotta */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  /* Removed neon text-shadow */
}

.nc-line {
  height: 1px;
  width: 40px;
  background: var(--accent); /* Solid terracotta line */
  /* Removed neon glowing box-shadow */
}

/* Main Titles */
.nc-title {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  /* Removed aggressive uppercase and deep text-shadow */
}

.nc-title-blue {
  color: var(--primary-dark); /* Deep sage green */
  font-style: italic; /* Added editorial flair */
  /* Removed gradient background-clip and shadow */
}

.nc-subtitle {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* Grid Layout for Cards */
.nc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; /* Slightly wider gap for a breathing layout */
  width: 100%;
  max-width: 1400px;
  margin-bottom: 60px;
  z-index: 2;
}

/* Individual Card - Light & Airy Panel */
.nc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Friendly, rounded corners */
  padding: 55px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Soft, natural shadow */
}

/* Removed the glowing top border animation */
.nc-card::before {
  display: none;
}

.nc-card:hover {
  border-color: var(--primary); /* Sage green border on hover */
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Floating Top Icon - Elegant Circular Badge */
.nc-icon-wrapper {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background-color: var(--surface);
  border-radius: 50%; /* Perfect circle */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--primary); /* Sage green icon */
  font-size: 1.2rem;
  /* Replaced harsh pseudo-border with a soft white ring effect */
  box-shadow:
    0 0 0 6px var(--bg),
    0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s var(--ease);
}

.nc-card:hover .nc-icon-wrapper {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  /* The ring matches the card's hover lift */
  box-shadow:
    0 0 0 6px var(--bg),
    0 6px 16px rgba(92, 113, 94, 0.2);
  transform: translateX(-50%) translateY(-2px);
}

/* Card Image Container */
.nc-card-img-container {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  /* Removed glowing drop shadow */
  transition: all 0.4s var(--ease);
}

.nc-card:hover .nc-card-img-container {
  transform: translateY(-4px) scale(1.02); /* Gentle lift and slight scale */
}

.nc-card-img-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Card Text Content */
.nc-card-title {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  /* Removed heavy uppercase */
}

.nc-card-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Shop Now Link - Soft & Subtle */
.nc-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary); /* Sage green */
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.nc-shop-link:hover {
  color: var(--primary-dark);
  /* Removed neon text-shadow */
}

.nc-link-circle {
  width: 32px;
  height: 32px;
  background-color: var(--card); /* Soft beige */
  border: 1px solid var(--border);
  border-radius: 50%; /* Circle instead of square */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}

.nc-shop-link:hover .nc-link-circle {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateX(4px);
  /* Removed glowing box shadow */
}

/* Bottom "View All" Button - Elevated Pill Button */
.nc-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 36px;
  border-radius: 50px; /* Pill shape */
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  z-index: 2;
}

.nc-view-all-btn i.bi-grid-1x2 {
  color: var(--primary);
}

.nc-view-all-btn i.bi-arrow-right {
  color: var(--text-muted);
  transition:
    transform 0.3s var(--ease),
    color 0.3s var(--ease);
}

.nc-view-all-btn:hover {
  background-color: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Soft lift */
  transform: translateY(-2px);
}

.nc-view-all-btn:hover i.bi-arrow-right {
  transform: translateX(6px);
  color: var(--primary);
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

@media (max-width: 1200px) {
  .nc-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }
}

@media (max-width: 768px) {
  .nc-dark-section {
    padding: 80px 20px;
  }
  .nc-grid {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
  .nc-title {
    font-size: 2.2rem;
  }
  .nc-subtitle {
    font-size: 15px;
  }
  .nc-card {
    padding: 50px 25px 25px;
  }
}

/* =====================================================
   PRODUCTS — SERENE EARTH MARKETPLACE
===================================================== */

.products-modern {
  background: var(--bg); /* Warm off-white */
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

/* ================= HEADER ================= */

.products-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
  position: relative;
}

/* eyebrow - Soft Editorial Subtitle */
.products-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent); /* Terracotta */
  margin-bottom: 16px;
  /* Removed neon text-shadow */
}

/* heading */
.products-modern-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.2;
  position: relative;
  /* Removed aggressive uppercase and deep shadows */
}

/* underline accent - Delicate Line */
.products-modern-head h2::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--primary); /* Sage green */
  display: block;
  margin: 20px auto 0;
  /* Removed glowing box-shadow */
}

/* paragraph */
.products-modern-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 20px auto 0;
}

/* ================= TABS ================= */

.products-modern-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.products-modern-tabs .tab-btn {
  padding: 10px 24px;
  border-radius: 50px; /* Elegant pill shape */
  border: 1px solid transparent; /* Removed harsh borders */
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.products-modern-tabs .tab-btn:hover {
  color: var(--primary);
  background: var(--surface); /* Solid white */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Soft lift */
}

.products-modern-tabs .tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15);
}

/* ================= GRID ================= */

.products-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */

.product-modern-card {
  background: var(--surface); /* Clean white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Friendly, rounded corners */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Soft, natural shadow */
}

.product-modern-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary); /* Sage green border on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* ================= IMAGE ================= */

.product-modern-image {
  position: relative;
  padding: 40px 30px;
  background: var(
    --card
  ); /* Soft beige background to make white products pop */
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-modern-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  /* Removed heavy holographic drop shadow */
  transition: transform 0.6s var(--ease);
}

.product-modern-card:hover .product-modern-image img {
  transform: scale(1.05); /* Gentle zoom instead of extreme pop */
}

/* Badge - Soft Pill */
.product-modern-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(217, 125, 84, 0.08); /* Terracotta tint */
  color: var(--accent);
  border: 1px solid rgba(217, 125, 84, 0.3);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px; /* Pill */
  z-index: 2;
  /* Removed neon box-shadow */
}

/* Rating - Clean White Tag */
.product-modern-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50px; /* Pill shape */
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  gap: 6px;
  align-items: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.product-modern-rating i {
  color: #eab308; /* Soft golden yellow instead of neon teal */
  /* Removed neon text shadow */
}

/* ================= BODY ================= */

.product-modern-body {
  padding: 24px;
  flex-grow: 1;
  background-color: var(--surface);
}

.product-modern-category {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary); /* Sage green */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.product-modern-body h3 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px;
  transition: color 0.3s var(--ease);
  /* Removed heavy uppercase */
}

.product-modern-card:hover .product-modern-body h3 {
  color: var(--primary-dark);
  /* Removed neon text-shadow */
}

.product-modern-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= FOOTER ================= */

.product-modern-footer {
  padding: 18px 24px;
  border-top: 1px solid var(--border); /* Clean line */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--surface);
  transition: all 0.3s var(--ease);
}

.product-modern-card:hover .product-modern-footer {
  background-color: var(
    --card
  ); /* Slight subtle shift in background on hover */
  border-top-color: var(--border);
}

.product-modern-footer strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-body);
}

.product-modern-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent); /* Soft terracotta */
  transition: all 0.3s var(--ease);
  /* Removed heavy uppercase */
}

.product-modern-card:hover .product-modern-cta {
  color: var(--text);
  /* Removed neon text shadow */
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .products-modern-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-modern-head h2 {
    font-size: 28px;
  }
  .products-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-modern-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT — SERENE EARTH
===================================================== */

.about-modern {
  background-color: var(--surface); /* Clean white background */
  /* Removed neon radial gradient completely */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* container layout */

.about-modern .container {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Added slight padding for smaller screens */
}

/* =====================================================
   LEFT CONTENT — EDITORIAL STORY
===================================================== */

.about-modern-eyebrow {
  font-size: 13px;
  font-weight: 600; /* Softened from 800 */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
  display: inline-block;
  /* Removed neon text shadow */
  position: relative;
}

/* Delicate line next to eyebrow */
.about-modern-eyebrow::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 40px; /* Slightly longer for elegance */
  height: 1px; /* Thinned from 2px */
  background: var(--accent);
  margin-right: 16px;
  /* Removed neon box-shadow */
}

.about-modern-content h2 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
  /* Removed aggressive uppercase and deep shadow */
}

.about-modern-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 620px;
  border-left: 2px solid var(--primary); /* Sage green accent line */
  padding-left: 20px; /* Slightly more breathing room */
}

.about-modern-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 640px;
}

/* actions */

.about-modern-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

/* =====================================================
   RIGHT FEATURE CARDS — SOFT PANELS
===================================================== */

.about-modern-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  position: relative;
}

/* card - Light & Airy Panel */

.about-card {
  background: var(--bg); /* Warm off-white */
  border-radius: var(--radius-lg); /* Friendly, soft rounded corners */
  padding: 40px 30px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Natural, soft drop shadow */
  /* Removed harsh dark glass backdrop-filter */
}

/* Removed the glowing top pseudo-element completely */
.about-card::before {
  display: none;
}

/* hover */

.about-card:hover {
  transform: translateY(-6px); /* Gentle lift */
  border-color: var(--primary); /* Sage green border */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* number - Elegant Metric */

.about-card strong {
  font-family: var(--font-heading); /* Switch to serif for numbers */
  font-size: 42px; /* Slightly larger for visual hierarchy */
  font-weight: 600;
  color: var(--primary-dark); /* Deep sage */
  display: block;
  margin-bottom: 8px;
  /* Removed neon text-shadow */
}

/* title - Metric Label */

.about-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 12px;
  /* Removed heavy uppercase and extreme letter-spacing */
}

/* text */

.about-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .about-modern .container {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 600px) {
  .about-modern {
    padding: 80px 0;
  }

  .about-modern-content h2 {
    font-size: 32px;
  }

  .about-modern-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-modern-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-modern-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   WHY CHOOSE — SERENE EARTH
===================================================== */

.why-modern {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

/* Replaced the cyber radial gradient with a subtle, elegant pattern */
.why-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6; /* Soften the pattern */
}

/* =====================================================
   HEADER — SOFT EDITORIAL
===================================================== */

.why-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

.why-modern-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.25;
  position: relative;
  /* Removed uppercase and deep shadows */
}

/* underline accent - Delicate elegant line */
.why-modern-head h2::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--primary); /* Sage green */
  display: block;
  margin: 20px auto 0;
  /* Removed neon glow completely */
}

.why-modern-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 20px auto 0;
}

/* =====================================================
   GRID
===================================================== */

.why-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* =====================================================
   CARD — LIGHT & AIRY
===================================================== */

.why-modern-card {
  background: var(--surface); /* Clean white panel */
  border-radius: var(--radius-lg); /* Friendly rounded corners */
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Soft, natural drop shadow */
  /* Removed dark glass backdrop filters */
}

/* Removed the glowing top hover accent line */
.why-modern-card::before {
  display: none;
}

.why-modern-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary); /* Sage green border */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* icon - Elegant Circle Badge */

.why-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Perfect circles instead of rigid squares */
  background: var(--card); /* Soft beige */
  border: 1px solid var(--border);
  color: var(--primary); /* Sage green icon */
  font-size: 22px;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Gently lift and color the icon when card is hovered */
.why-modern-card:hover .why-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-4px); /* Lift instead of scale/rotate */
  box-shadow: 0 6px 16px rgba(92, 113, 94, 0.2);
}

/* title */

.why-modern-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  transition: color 0.3s var(--ease);
  /* Removed aggressive uppercase */
}

.why-modern-card:hover h3 {
  color: var(--primary-dark);
  /* Removed neon text shadow */
}

/* text */

.why-modern-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .why-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-modern {
    padding: 80px 0;
  }

  .why-modern-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-modern-head h2 {
    font-size: 28px;
  }
}

/* =====================================================
   TESTIMONIALS — SERENE EARTH
===================================================== */

.testimonials-modern {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

/* =====================================================
   HEADER — SOFT EDITORIAL
===================================================== */

.testimonials-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

.testimonials-modern-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.25;
  position: relative;
  /* Removed aggressive uppercase and text-shadows */
}

/* underline accent - Delicate Line */
.testimonials-modern-head h2::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--primary); /* Sage green */
  display: block;
  margin: 20px auto 0;
  /* Removed neon glowing shadow */
}

.testimonials-modern-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 20px auto 0;
}

/* =====================================================
   GRID
===================================================== */

.testimonials-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* =====================================================
   CARD — AIRY QUOTE PANEL
===================================================== */

.testimonial-modern-card {
  background: var(--surface); /* Solid white */
  border-radius: var(--radius-lg); /* Friendly, rounded corners */
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Soft, natural drop shadow */
  display: flex;
  flex-direction: column;
  /* Removed dark glass backdrop-filter */
}

/* Removed the glowing top hover accent line completely */
.testimonial-modern-card::before {
  display: none;
}

.testimonial-modern-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary); /* Sage green border on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* stars - Classic Gold */

.testimonial-stars {
  font-size: 14px;
  letter-spacing: 4px;
  color: #eab308; /* Soft classic gold */
  margin-bottom: 20px;
  /* Removed neon teal glow */
}

/* quote - Editorial Text */

.testimonial-modern-card p {
  font-size: 16px; /* Slightly larger for readability */
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-style: italic; /* Keeps the quote feel */
  flex-grow: 1;
  border-left: 2px solid var(--primary); /* Sage green accent line */
  padding-left: 20px;
}

/* user */

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border); /* Clean, subtle divider */
  padding-top: 20px;
}

/* avatar - Elegant Circle */

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%; /* Perfect circle */
  background: var(--card); /* Soft beige */
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading); /* Elegant serif for initials */
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s var(--ease);
  /* Removed neon box-shadow */
}

.testimonial-modern-card:hover .testimonial-avatar {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: scale(1.05); /* Gentle lift instead of aggressive pop */
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.2);
}

.testimonial-user strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  /* Removed uppercase and heavy letter spacing */
}

.testimonial-user span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent); /* Soft terracotta for the title/role */
  /* Removed heavy uppercase */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .testimonials-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-modern {
    padding: 80px 0;
  }

  .testimonials-modern-head h2 {
    font-size: 28px;
  }

  .testimonials-modern-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =====================================================
   RECENTLY VIEWED — SERENE EARTH
===================================================== */

.recent-modern {
  background: var(--bg); /* Warm off-white */
  padding: 100px 0;
  border-top: 1px solid var(--border); /* Clean, natural boundary */
  position: relative;
}

/* ================= HEADER ================= */

.recent-modern-head {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

.recent-modern-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
  /* Removed neon text-shadow */
}

.recent-modern-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text);
  /* Removed heavy uppercase and deep text-shadows */
}

.recent-modern-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ================= GRID ================= */

.recent-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* ================= CARD — EDITORIAL ITEM ================= */

.recent-item {
  background: transparent;
  border-top: 1px solid var(--border); /* Soft, natural divider instead of thick glow */
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}

.recent-item:hover {
  transform: translateY(-4px); /* Gentle lift */
  border-top-color: var(--primary); /* Sage green accent on hover */
  /* Removed neon top-glow box-shadow */
}

/* IMAGE */

.recent-item-image {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-md); /* Soft friendly corners */
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Very subtle shadow */
}

.recent-item:hover .recent-item-image {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  /* Removed neon background and inset shadows */
}

.recent-item-image img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  /* Removed neon holographic drop shadow */
  transition: transform 0.6s var(--ease);
}

.recent-item:hover .recent-item-image img {
  transform: scale(1.05); /* Gentle, elegant zoom */
}

/* INFO */

.recent-item h3 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 8px;
  transition: color 0.3s var(--ease);
  /* Removed heavy uppercase and letter spacing */
}

.recent-item:hover h3 {
  color: var(--primary-dark);
  /* Removed neon text shadow */
}

.recent-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* FOOTER */

.recent-item-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border); /* Clean, solid line instead of dashed */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s var(--ease);
}

.recent-item:hover .recent-item-footer {
  border-top-color: var(--primary); /* Sage green accent on hover */
}

.recent-item-footer strong {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.recent-item-footer span {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent); /* Soft terracotta action text */
  position: relative;
  transition: color 0.3s var(--ease);
  /* Removed uppercase */
}

.recent-item:hover .recent-item-footer span {
  color: var(--text);
  /* Removed neon shadow */
}

.recent-item-footer span::after {
  content: "→";
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.recent-item:hover .recent-item-footer span::after {
  transform: translateX(4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .recent-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recent-modern {
    padding: 80px 0;
  }

  .recent-modern-head h2 {
    font-size: 26px;
  }

  .recent-modern-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .recent-item-image img {
    height: 160px; /* Slightly larger on mobile for visibility */
  }
}

/* =====================================================
   RECENTLY VIEWED (ALT) — SERENE EARTH
===================================================== */

.recent-soft {
  background: var(--bg); /* Warm off-white */
  padding: 100px 0;
  border-top: 1px solid var(--border); /* Clean boundary */
  position: relative;
}

/* Removed faint laser grid background entirely */
.recent-soft::before {
  display: none;
}

/* ================= HEADER ================= */

.recent-soft-head {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
  border-left: 2px solid var(--primary); /* Elegant sage green line */
  padding-left: 24px; /* Slightly more breathing room */
}

.recent-soft-head h2 {
  font-family: var(--font-heading); /* Serif font */
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600; /* Softened from 800 */
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
  /* Removed uppercase and deep text-shadows */
}

.recent-soft-head p {
  font-size: 16px; /* Slightly larger for readability */
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
}

/* ================= GRID ================= */

.recent-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  position: relative;
  z-index: 2;
}

/* ================= TILE (EDITORIAL CARD) ================= */

.recent-card {
  background: transparent;
  border-top: 1px solid var(--border); /* Clean, natural line instead of 2px glow */
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}

.recent-card:hover {
  transform: translateY(-6px); /* Gentle lift */
  border-top-color: var(--primary); /* Sage green accent */
  /* Removed top-scanning neon glow box-shadow */
}

/* ================= IMAGE ================= */

.recent-card-img {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-md); /* Soft friendly corners */
  padding: 24px; /* Slightly more padding for elegance */
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Very subtle shadow */
}

.recent-card:hover .recent-card-img {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  /* Removed neon background and inset shadows */
}

.recent-card-img img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  /* Removed heavy dark drop shadow */
  transition: transform 0.6s var(--ease);
}

.recent-card:hover .recent-card-img img {
  transform: scale(1.05); /* Gentle zoom */
}

/* ================= NAME ================= */

.recent-card h3 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px; /* Slightly larger */
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
  color: var(--text);
  transition: color 0.3s var(--ease);
  /* Removed heavy uppercase and letter-spacing */
}

.recent-card:hover h3 {
  color: var(--primary-dark);
  /* Removed neon text shadow */
}

/* ================= RATING ================= */

.recent-card-rating {
  font-size: 13px;
  letter-spacing: 2px; /* Tightened from 4px */
  color: #eab308; /* Soft golden yellow */
  margin-bottom: 16px;
  /* Removed neon purple glow */
}

/* ================= FOOTER ================= */

.recent-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border); /* Clean, solid line instead of dashed terminal line */
  transition: border-color 0.3s var(--ease);
}

.recent-card:hover .recent-card-footer {
  border-top-color: var(--primary); /* Sage green accent */
}

.recent-card-footer strong {
  font-family: var(--font-body); /* Clean sans-serif for numbers */
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.recent-view-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent); /* Soft terracotta link */
  position: relative;
  transition: all 0.3s var(--ease);
  /* Removed heavy uppercase and letter spacing */
}

.recent-card:hover .recent-view-btn {
  color: var(--text); /* Darkens slightly on hover */
  /* Removed neon text shadow */
}

.recent-view-btn::after {
  content: "→";
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.recent-card:hover .recent-view-btn::after {
  transform: translateX(4px);
  color: var(--text);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .recent-soft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .recent-soft {
    padding: 80px 0;
  }

  .recent-soft-head {
    border-left: none;
    border-top: 2px solid var(--primary); /* Adjusted from 3px neon purple */
    padding-left: 0;
    padding-top: 16px;
  }

  .recent-soft-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .recent-card-img img {
    height: 160px; /* Slightly taller for mobile visibility */
  }
}

/* =====================================================
   FOOTER — SERENE EARTH
===================================================== */

.footer-blue {
  background: var(--surface); /* Clean white bottom */
  /* Removed neon background grids */
  color: var(--text);
  padding-top: 80px;
  border-top: 1px solid var(--border); /* Clean, natural boundary */
  position: relative;
  overflow: hidden;
}

/* Removed the glowing bottom light effect completely */
.footer-blue::before {
  display: none;
}

/* =====================================================
   TOP GRID
===================================================== */

.footer-blue-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* =====================================================
   BRAND
===================================================== */

.footer-brand img {
  width: 180px;
  margin-bottom: 20px;
  /* Removed neon drop-shadow */
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* contact */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact strong {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary); /* Sage green accent */
  display: block;
}

.footer-contact a {
  color: var(--text);
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.footer-contact a:hover {
  color: var(--accent); /* Soft terracotta hover */
  /* Removed neon text-shadow */
}

/* =====================================================
   LINKS
===================================================== */

.footer-links h4 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
  /* Removed uppercase, heavy letter-spacing, and shadows */
}

.footer-links a {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--primary); /* Sage green hover */
  transform: translateX(4px); /* Gentle slide */
  /* Removed neon text shadow */
}

/* =====================================================
   NEWSLETTER
===================================================== */

.footer-newsletter h4 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary-dark); /* Deep sage green */
  /* Removed uppercase and neon shadow */
}

.footer-newsletter p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* form */

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  background: var(--card); /* Soft beige input */
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50px; /* Pill shape */
  font-size: 14px;
  font-family: var(--font-body); /* Removed monospace terminal font */
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.newsletter-form input:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--primary);
  /* Replaced neon glow with subtle sage focus ring */
  box-shadow: 0 0 0 3px rgba(92, 113, 94, 0.15);
}

.newsletter-form input::placeholder {
  color: var(--text-faint);
}

.newsletter-form button {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 50px; /* Pill shape */
  cursor: pointer;
  transition: all 0.3s var(--ease);
  /* Removed uppercase and heavy letter spacing */
}

.newsletter-form button:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.2);
  transform: translateY(-2px);
}

.newsletter-note {
  font-size: 12px;
  color: var(--text-faint);
  /* Removed uppercase */
}

/* =====================================================
   DIVIDER
===================================================== */

.footer-divider {
  height: 1px;
  background: var(--border); /* Clean, solid line instead of glowing gradient */
  margin: 60px 0 30px;
  border: none;
  position: relative;
  z-index: 2;
}

/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 40px;
  position: relative;
  z-index: 2;
}

.footer-company strong {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  /* Removed uppercase */
}

.footer-company span {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copy {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  color: var(--text-faint);
  /* Removed uppercase */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .footer-blue-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-blue-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* =====================================================
   ABOUT PAGE — SERENE EARTH INTRO
===================================================== */

.about-intro {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border); /* Clean, elegant boundary */
}

/* Removed the subtle background node network glow completely */
.about-intro::before {
  display: none;
}

/* ================= LAYOUT ================= */

.about-intro-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* Soft editorial panel replacing the dark tech UI */
  background: var(--surface); /* Solid white */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Friendly, soft corners */
  padding: 80px 60px; /* Slightly more vertical breathing room */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft, natural drop shadow */
  /* Removed heavy blur filter */
}

/* Removed the glowing top neon accent line */
.about-intro-inner::before {
  display: none;
}

/* ================= CONTENT ================= */

.about-intro-text h2 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600; /* Softened from 800 */
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  color: var(--text);
  position: relative;
  /* Removed aggressive uppercase and text-shadow */
}

/* Elegant Accent Underline */
.about-intro-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px; /* Thinned to an elegant stroke */
  background: var(--primary); /* Sage green */
  margin-top: 24px;
  /* Removed neon purple glow */
}

/* Lead text - Editorial Subheading */
.about-intro-lead {
  font-size: 20px; /* Slightly larger for a beautiful reading experience */
  font-weight: 500;
  line-height: 1.7;
  color: var(--text); /* Deep charcoal */
  margin-bottom: 24px;
  max-width: 760px;
  /* Removed neon teal color and text shadow */
}

/* Removed the ">" terminal chevron prompt completely */
.about-intro-lead::before {
  display: none;
}

.about-intro-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 740px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .about-intro-inner {
    padding: 50px 30px;
  }
}

@media (max-width: 600px) {
  .about-intro {
    padding: 80px 15px;
  }

  .about-intro-inner {
    padding: 30px 20px;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  /* Since the panel glow line is gone, we don't need to hide it here anymore, but keeping the block clean */

  .about-intro-text h2 {
    font-size: 32px;
  }

  .about-intro-lead {
    font-size: 18px;
  }
}

/* =====================================================
   CONTACT PAGE — SERENE EARTH
===================================================== */

.contact-page {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border); /* Clean boundary */
}

/* Removed the subtle data grid background completely */
.contact-page::before {
  display: none;
}

/* ================= LAYOUT ================= */

.contact-page-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: start;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* ================= LEFT CONTENT ================= */

.contact-info h2 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
  /* Removed uppercase and heavy text-shadow */
}

/* Elegant Accent under title */
.contact-info h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px; /* Delicate line */
  background: var(--primary); /* Sage green */
  margin-top: 24px;
  /* Removed neon purple glow */
}

.contact-lead {
  font-size: 18px; /* Slightly larger for readability */
  line-height: 1.7;
  color: var(--text); /* Deep charcoal */
  margin-bottom: 28px;
  max-width: 520px;
  /* Removed neon teal color and text shadow */
}

.contact-points {
  margin-bottom: 40px;
  padding-left: 0;
  list-style: none;
}

.contact-points li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
}

/* Elegant bullet points */
.contact-points li::before {
  content: "•"; /* Soft bullet instead of terminal [+] */
  position: absolute;
  left: 0;
  color: var(--primary); /* Sage green */
  font-family: var(--font-body);
  font-size: 18px;
  /* Removed monospace font and text-shadow */
}

/* ================= DETAILS ================= */

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  border-top: 1px solid var(--border); /* Clean solid line */
  padding-top: 32px;
}

.contact-details strong {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-dark); /* Deep sage green */
  margin-bottom: 8px;
}

.contact-details span {
  font-size: 15px;
  color: var(--text-muted);
  font-family: var(--font-body); /* Removed monospace printout feel */
}

/* ================= FORM (CLEAN PANEL) ================= */

.contact-form-card {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Friendly rounded corners */
  padding: 50px 40px; /* Slightly more padding for breathing room */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft natural shadow */
  position: relative;
  /* Removed dark glass backdrop filters */
}

/* Removed Top Neon Scanner Line completely */
.contact-form-card::before {
  display: none;
}

.contact-form-card h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  /* Removed uppercase and heavy letter-spacing */
}

.contact-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 420px;
  border-left: 2px solid var(--primary); /* Sage indicator line */
  padding-left: 16px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-md); /* Soft rounded edges */
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: var(--font-body); /* Removed monospace */
  margin-bottom: 20px;
  background: var(--bg); /* Very light off-white interior */
  color: var(--text);
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-faint);
  /* Removed uppercase placeholder text */
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--surface); /* Turns solid white on focus */
  border-color: var(--primary);
  /* Gentle sage focus ring instead of neon glow */
  box-shadow: 0 0 0 3px rgba(92, 113, 94, 0.15);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ROW */

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ================= SUCCESS MESSAGE ================= */

.contact-success {
  background: var(--surface);
  border: 1px solid var(--primary); /* Sage green border */
  padding: 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 12px 24px rgba(92, 113, 94, 0.08); /* Soft sage shadow */
  position: relative;
  overflow: hidden;
}

/* Removed scanning line animation */
.contact-success::after {
  display: none;
}

.contact-success h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary-dark);
  /* Removed uppercase, heavy tracking, and neon shadow */
}

.contact-success p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 16px;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-lead {
    margin-inline: auto;
  }

  .contact-points li {
    text-align: left;
    display: inline-block;
  }

  .contact-details {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .contact-page {
    padding: 80px 0;
  }

  .contact-form-card {
    padding: 40px 24px;
  }
}

/* =====================================================
   FAQ PAGE — SERENE EARTH
===================================================== */

.faq-page {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border); /* Clean, natural boundary */
}

/* Removed the subtle data grid pattern entirely */
.faq-page::before {
  display: none;
}

.faq-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* ================= GROUP ================= */

.faq-group {
  margin-bottom: 70px;
}

.faq-group h2 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 28px;
  font-weight: 600; /* Softened from 800 */
  margin-bottom: 30px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 16px;
  /* Removed heavy uppercase, extreme letter-spacing, and neon shadow */
}

/* Elegant line next to group header */
.faq-group h2::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: var(--border); /* Soft, solid line instead of glowing gradient */
}

/* ================= ITEM (ACCORDION) ================= */

.faq-item {
  border-top: 1px solid var(--border); /* Clean divider */
  padding: 0;
  transition: background 0.4s var(--ease);
}

.faq-item:hover {
  background: var(--surface); /* Gentle white highlight on hover */
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

/* ================= QUESTION ================= */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 20px;
  font-family: var(--font-heading); /* Serif font for the questions */
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: var(--text);
  transition: all 0.3s var(--ease);
  /* Removed uppercase */
}

.faq-question:hover {
  color: var(--primary); /* Sage green hover */
  /* Removed aggressive terminal indent and neon shadow */
}

/* The Plus/Minus Icon - Elegant Circle */
.faq-question span {
  font-size: 18px;
  color: var(--primary); /* Sage green icon */
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%; /* Perfect circle */
  transition: all 0.4s var(--ease);
}

.faq-question:hover span {
  background: var(--surface);
  border-color: var(--primary);
  /* Removed neon box-shadow */
}

/* ================= ANSWER ================= */

.faq-answer {
  display: none;
  padding: 0 20px 30px;
}

.faq-answer p {
  font-size: 16px; /* Slightly larger for editorial reading */
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0;
  border-left: 2px solid var(--primary); /* Sage green accent line */
  padding-left: 20px;
}

/* ================= ACTIVE STATE ================= */

.faq-item.active {
  background: var(--surface); /* Solid white backing when open */
  border-top-color: var(--border);
}

.faq-item.active .faq-answer {
  display: block;
  animation: smoothFadeIn 0.4s var(--ease) forwards;
}

@keyframes smoothFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Active Question */
.faq-item.active .faq-question {
  color: var(--primary-dark);
  /* Removed neon shadow */
}

/* Active Icon */
.faq-item.active .faq-question span {
  transform: rotate(45deg); /* Turns the plus into an elegant 'X' */
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.2); /* Soft sage shadow */
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .faq-page {
    padding: 80px 0;
  }

  .faq-question {
    font-size: 16px;
    padding: 22px 10px;
  }

  .faq-answer {
    padding: 0 10px 26px;
  }

  .faq-answer p {
    font-size: 15px;
    padding-left: 16px;
  }
}

/* =====================================================
   AUTH HERO — SERENE EARTH
===================================================== */

.auth-x-hero {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border); /* Clean, natural boundary */
  position: relative;
}

/* Removed the data grid overlay completely */
.auth-x-hero::before {
  display: none;
}

.auth-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* EYEBROW - Editorial Subtitle */

.auth-x-eyebrow {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  /* Removed neon text-shadow */
}

/* Removed terminal brackets */
.auth-x-eyebrow::before,
.auth-x-eyebrow::after {
  display: none;
}

/* LEFT CONTENT */

.auth-x-hero-left h1 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
  /* Removed aggressive uppercase and heavy text-shadows */
}

.auth-x-hero-left h1 span {
  color: var(--primary-dark); /* Deep sage green */
  font-style: italic; /* Added editorial flair */
  /* Removed neon highlight and shadow */
}

.auth-x-hero-left p {
  max-width: 520px;
  font-size: 17px; /* Slightly larger for readability */
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 2px solid var(--primary); /* Sage accent line */
  padding-left: 20px;
}

/* RIGHT PANEL — SOFT INFO CONTEXT */

.auth-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border); /* Clean, solid line instead of dashed */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.auth-x-panel-item {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Soft rounded corners */
  padding: 24px 30px; /* More breathing room */
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Very soft shadow */
}

/* Removed hover laser line */
.auth-x-panel-item::before {
  display: none;
}

.auth-x-panel-item:hover {
  border-color: var(--primary); /* Sage green hover border */
  transform: translateY(-4px); /* Gentle lift */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.auth-x-panel-item strong {
  display: block;
  font-family: var(--font-body); /* Removed monospace/heavy heading */
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--text);
}

.auth-x-panel-item span {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .auth-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .auth-x-hero-panel {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 40px;
  }
}

/* =====================================================
   AUTH BODY — SERENE EARTH
===================================================== */

.auth-x {
  background: var(--bg); /* Warm off-white */
  padding: 80px 0 120px;
}

.auth-x-body {
  display: flex;
  justify-content: center;
  padding: 0 20px; /* Safety padding for mobile */
}

/* CARD - ELEGANT LOGIN PANEL */

.auth-x-card {
  background: var(--surface); /* Solid white panel */
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg); /* Friendly, soft rounded corners */
  padding: 50px 42px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04); /* Soft, natural drop shadow */
  position: relative;
  /* Removed dark glass backdrop filters */
}

/* Removed top neon scanner line completely */
.auth-x-card::before {
  display: none;
}

/* HEADINGS */

.auth-x-card h2 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
  color: var(--text);
  /* Removed heavy uppercase and letter-spacing */
}

.auth-x-desc {
  font-family: var(--font-body); /* Removed monospace terminal font */
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 35px;
  text-align: center;
  /* Removed uppercase */
}

/* =====================================================
   AUTH FORM — CLEAN INPUTS
===================================================== */

.auth-x-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-x-field label {
  display: block;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  font-weight: 500; /* Softened from 700 */
  margin-bottom: 8px;
  color: var(--text);
  /* Removed neon teal color and uppercase */
}

.auth-x-field input {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-md); /* Soft rounded inputs */
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: var(--font-body); /* Removed monospace */
  background: var(--bg); /* Very light off-white interior */
  color: var(--text);
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.auth-x-field input:focus {
  outline: none;
  background: var(--surface); /* Turns solid white on focus */
  border-color: var(--primary);
  /* Subtle sage green focus ring instead of neon purple glow */
  box-shadow: 0 0 0 3px rgba(92, 113, 94, 0.15);
}

/* =====================================================
   AUTH BUTTONS
===================================================== */

.auth-x-submit {
  margin-top: 10px;
  background: var(--primary); /* Sage green */
  color: #ffffff;
  padding: 16px;
  font-family: var(--font-body); /* Clean sans-serif */
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px; /* Elegant pill shape */
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15);
  /* Removed heavy uppercase and neon shadows */
}

.auth-x-submit:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(92, 113, 94, 0.25);
  transform: translateY(-2px);
}

/* =====================================================
   AUTH META (Forgot Password, etc)
===================================================== */

.auth-x-meta {
  margin-top: 18px;
  text-align: right;
}

.auth-x-meta a {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  color: var(--accent); /* Soft terracotta link */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  /* Removed uppercase */
}

.auth-x-meta a:hover {
  color: var(--text); /* Darkens slightly on hover */
  /* Removed neon teal glow */
}

/* DIVIDER */

.auth-x-divider {
  margin: 36px 0;
  text-align: center;
  position: relative;
}

.auth-x-divider span {
  background: var(--surface); /* Matches card bg */
  padding: 0 16px;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  color: var(--text-faint);
  position: relative;
  z-index: 1;
}

.auth-x-divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: var(--border); /* Clean solid line instead of translucent white */
}

/* REGISTER CTA */

.auth-x-secondary {
  text-align: center;
}

.auth-x-secondary p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.auth-x-outline-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px; /* Pill shape */
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  /* Removed uppercase and heavy letter spacing */
}

.auth-x-outline-btn:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Gentle lift */
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  /* Inherited from previous block, ensuring we don't break layout */
  .auth-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .auth-x-hero-panel {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 40px;
  }

  .auth-x-hero-left h1 {
    font-size: 34px;
  }

  .auth-x-body {
    padding: 60px 20px 100px;
  }
}

@media (max-width: 600px) {
  .auth-x-card {
    padding: 40px 24px;
  }
}

/* =====================================================
   SIGNUP HERO — SERENE EARTH
===================================================== */

.signup-x-hero {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border); /* Clean, natural boundary */
  position: relative;
  overflow: hidden;
}

/* Removed the data grid overlay completely */
.signup-x-hero::before {
  display: none;
}

.signup-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* EYEBROW - Editorial Subtitle */

.signup-x-eyebrow {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  /* Removed neon text-shadow */
}

/* Removed the terminal prompt prefix */
.signup-x-eyebrow::before {
  display: none;
}

/* LEFT CONTENT */

.signup-x-hero-left h1 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
  /* Removed aggressive uppercase and heavy text-shadows */
}

.signup-x-hero-left h1 span {
  color: var(--primary-dark); /* Deep sage green */
  font-style: italic; /* Added editorial flair */
  /* Removed neon teal highlight and shadow */
}

.signup-x-hero-left p {
  max-width: 520px;
  font-size: 17px; /* Slightly larger for readability */
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 2px solid var(--primary); /* Sage accent line */
  padding-left: 20px;
}

/* RIGHT PANEL — SOFT INFO CONTEXT */

.signup-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border); /* Clean, solid line instead of dashed */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.signup-x-panel-item {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Soft rounded corners */
  padding: 24px 30px; /* More breathing room */
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Very soft shadow */
}

/* Removed hover laser line */
.signup-x-panel-item::before {
  display: none;
}

.signup-x-panel-item:hover {
  border-color: var(--primary); /* Sage green hover border */
  transform: translateY(-4px); /* Gentle lift */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.signup-x-panel-item strong {
  display: block;
  font-family: var(--font-body); /* Removed monospace/heavy heading */
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--text);
}

.signup-x-panel-item span {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================================================
   SIGNUP BODY — SERENE EARTH
===================================================== */

.signup-x {
  background: var(--bg); /* Warm off-white */
  padding: 80px 0 120px;
}

.signup-x-body {
  display: flex;
  justify-content: center;
  padding: 0 20px; /* Safety padding for mobile */
}

/* CARD - ELEGANT SIGNUP PANEL */

.signup-x-card {
  background: var(--surface); /* Solid white panel */
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg); /* Friendly, soft rounded corners */
  padding: 50px 42px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04); /* Soft, natural drop shadow */
  position: relative;
  /* Removed dark glass backdrop filters */
}

/* Removed top neon scanner line completely */
.signup-x-card::before {
  display: none;
}

/* HEADINGS */

.signup-x-card h2 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
  color: var(--text);
  /* Removed heavy uppercase and letter-spacing */
}

.signup-x-desc {
  font-family: var(--font-body); /* Removed monospace terminal font */
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 35px;
  text-align: center;
  /* Removed uppercase */
}

/* =====================================================
   SIGNUP FORM — CLEAN INPUTS
===================================================== */

.signup-x-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.signup-x-field label {
  display: block;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
  /* Removed neon purple color and uppercase */
}

.signup-x-field input {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-md); /* Soft rounded inputs */
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: var(--font-body); /* Removed monospace */
  background: var(--bg); /* Very light off-white interior */
  color: var(--text);
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.signup-x-field input::placeholder {
  color: var(--text-faint);
  /* Removed uppercase placeholder text */
}

.signup-x-field input:focus {
  outline: none;
  background: var(--surface); /* Turns solid white on focus */
  border-color: var(--primary);
  /* Subtle sage green focus ring */
  box-shadow: 0 0 0 3px rgba(92, 113, 94, 0.15);
}

/* =====================================================
   SIGNUP BUTTON
===================================================== */

.signup-x-submit {
  margin-top: 10px;
  background: var(--primary); /* Sage green */
  color: #ffffff;
  padding: 16px;
  font-family: var(--font-body); /* Clean sans-serif */
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px; /* Elegant pill shape */
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15);
  /* Removed heavy uppercase and neon shadows */
}

.signup-x-submit:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(92, 113, 94, 0.25);
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .signup-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .signup-x-hero-panel {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 40px;
  }

  .signup-x-hero-left h1 {
    font-size: 34px;
  }

  .signup-x-body {
    padding: 60px 20px 100px;
  }
}

@media (max-width: 600px) {
  .signup-x-card {
    padding: 40px 24px;
  }
}

/* =====================================================
   DASHBOARD HERO — SERENE EARTH
===================================================== */

.dash-x-hero {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border); /* Clean, natural boundary */
  position: relative;
  overflow: hidden;
}

/* Removed subtle data grid overlay completely */
.dash-x-hero::before {
  display: none;
}

.dash-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* EYEBROW - Elegant Subtitle */

.dash-x-eyebrow {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  /* Removed neon text-shadow */
}

/* Removed the "SYS_MSG:" terminal prefix */
.dash-x-eyebrow::before {
  display: none;
}

/* LEFT CONTENT */

.dash-x-hero-left h1 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
  /* Removed heavy uppercase and shadow */
}

.dash-x-hero-left h1 span {
  color: var(--primary-dark); /* Deep sage green */
  font-style: italic; /* Added editorial flair */
  /* Removed neon teal glow */
}

.dash-x-hero-left p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 2px solid var(--primary); /* Sage accent line */
  padding-left: 20px;
}

/* HERO PANEL — SUMMARY DATA CARDS */

.dash-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border); /* Solid clean line instead of dashed */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.dash-x-panel-item {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Soft rounded corners */
  padding: 24px 30px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Very soft shadow */
  /* Removed dark glass filter */
}

/* Removed hover laser lines */
.dash-x-panel-item::before {
  display: none;
}

.dash-x-panel-item:hover {
  border-color: var(--primary); /* Sage border on hover */
  transform: translateY(-4px); /* Gentle lift */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.dash-x-panel-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--text);
}

.dash-x-panel-item span {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  color: var(--text-muted);
}

/* =====================================================
   DASHBOARD BODY
===================================================== */

.dash-x {
  background: var(--bg);
  padding: 80px 0 120px;
}

.dash-x-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  padding: 0 20px;
}

/* =====================================================
   SIDEBAR — CLEAN NAVIGATION
===================================================== */

.dash-x-sidebar {
  background: transparent;
  padding: 0;
}

/* USER PROFILE */

.dash-x-user {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border); /* Solid clean line */
  margin-bottom: 24px;
}

.dash-x-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%; /* Perfect circle replacing square node */
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading); /* Elegant initial */
  font-size: 22px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.dash-x-user-info strong {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  /* Removed uppercase */
}

.dash-x-user-info span {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  color: var(--text-muted);
}

/* NAV LINKS */

.dash-x-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-x-nav a {
  padding: 12px 16px;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm); /* Soft highlight box */
  transition: all 0.3s var(--ease);
  /* Removed uppercase and heavy tracking */
}

.dash-x-nav a:hover,
.dash-x-nav a.active {
  color: var(--primary-dark);
  background: var(--surface); /* Solid white backing */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  /* Removed neon borders and text shadows */
}

.dash-x-nav a.danger {
  color: var(--accent); /* Soft terracotta for alerts/logout */
}

.dash-x-nav a.danger:hover {
  background: rgba(217, 125, 84, 0.05); /* Very soft terracotta tint */
  color: var(--accent);
}

/* =====================================================
   DASHBOARD MAIN
===================================================== */

.dash-x-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* CARD — CONTENT BLOCK */

.dash-x-card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--border); /* Clean separator */
  padding-top: 32px;
  position: relative;
}

.dash-x-card h2 {
  font-family: var(--font-heading); /* Serif */
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
  /* Removed heavy uppercase */
}

/* =====================================================
   ACCOUNT INFO CARDS
===================================================== */

.dash-x-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  background: var(--surface); /* Solid white */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.dash-x-info-grid span {
  display: block;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.dash-x-info-grid strong {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* =====================================================
   QUICK ACTIONS (MODULES)
===================================================== */

.dash-x-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.dash-x-action {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.dash-x-action strong {
  display: flex;
  align-items: center;
  font-family: var(--font-body); /* Removed serif heading style here */
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  transition: color 0.3s var(--ease);
}

.dash-x-action strong::after {
  content: "→";
  margin-left: auto;
  color: var(--primary); /* Sage green arrow */
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s var(--ease);
}

.dash-x-action span {
  font-size: 14px;
  color: var(--text-muted);
}

.dash-x-action:hover {
  transform: translateY(-4px); /* Gentle lift */
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.dash-x-action:hover strong {
  color: var(--primary-dark);
}

.dash-x-action:hover strong::after {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   NOTICE — ELEGANT ALERT
===================================================== */

.dash-x-notice {
  background: rgba(217, 125, 84, 0.05); /* Very soft terracotta tint */
  border: 1px solid rgba(217, 125, 84, 0.2);
  border-left: 4px solid var(--accent); /* Terracotta accent line */
  padding: 24px;
  border-radius: var(--radius-md); /* Soft corners */
  position: relative;
  overflow: hidden;
  /* Removed glowing box shadow */
}

/* Removed aggressive scanline animation */
.dash-x-notice::after {
  display: none;
}

.dash-x-notice strong {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--accent);
  /* Removed neon text-shadow */
}

.dash-x-notice p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .dash-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .dash-x-hero-panel {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 30px;
  }

  .dash-x-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dash-x-sidebar {
    order: 2;
    border-top: 1px solid var(--border);
    padding-top: 40px;
  }

  .dash-x-main {
    order: 1;
  }

  .dash-x-info-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TRACK ORDER — SERENE EARTH
===================================================== */

.trk-x {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0;
  position: relative;
}

/* Removed radar/grid background overlay completely */
.trk-x::before {
  display: none;
}

.trk-x-body {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

.trk-x-layout {
  display: grid;
  gap: 50px;
}

/* =====================================================
   TRACK ORDER — SECTION (ELEGANT PANEL)
===================================================== */

.trk-x-card {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Soft rounded corners */
  padding: 50px 40px; /* Increased padding for an airy feel */
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Natural drop shadow */
  /* Removed dark glass backdrop-filter */
}

/* Removed top neon scanner line */
.trk-x-card::before {
  display: none;
}

.trk-x-card h2 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  /* Removed heavy uppercase, text-shadow, and letter-spacing */
}

.trk-x-desc {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

/* =====================================================
   TRACK ORDER — FORM (CLEAN INPUTS)
===================================================== */

.trk-x-form label {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  /* Removed uppercase and neon purple color */
}

.trk-x-input-row {
  display: flex;
  gap: 16px;
}

.trk-x-input-row input {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--radius-md); /* Soft rounded edges */
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: var(--font-body); /* Removed monospace */
  background: var(--bg); /* Light off-white interior */
  color: var(--text);
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.trk-x-input-row input::placeholder {
  color: var(--text-faint);
  /* Removed uppercase */
}

.trk-x-input-row input:focus {
  outline: none;
  background: var(--surface); /* Solid white on focus */
  border-color: var(--primary);
  /* Gentle sage focus ring */
  box-shadow: 0 0 0 3px rgba(92, 113, 94, 0.15);
}

.trk-x-input-row button {
  padding: 16px 32px;
  border-radius: 50px; /* Elegant pill shape */
  background: var(--primary); /* Sage green */
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15);
  /* Removed uppercase and harsh borders */
}

.trk-x-input-row button:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(92, 113, 94, 0.25);
  transform: translateY(-2px); /* Gentle lift */
}

/* =====================================================
   TRACK ORDER — ERROR (SOFT ALERT)
===================================================== */

.trk-x-error {
  margin-top: 30px;
  background: rgba(217, 125, 84, 0.05); /* Soft terracotta tint */
  border: 1px solid rgba(217, 125, 84, 0.2);
  border-left: 4px solid var(--accent); /* Terracotta accent line */
  padding: 20px 24px;
  border-radius: var(--radius-md); /* Soft corners */
  /* Removed glowing box shadow */
}

.trk-x-error strong {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--accent);
  /* Removed uppercase and neon red text shadow */
}

.trk-x-error p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* =====================================================
   TRACK ORDER — STATUS (EDITORIAL DISPLAY)
===================================================== */

.trk-x-status {
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--border); /* Default neutral state */
  background: var(--surface); /* Solid white */
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.trk-x-status strong {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  /* Removed uppercase and letter-spacing */
}

.trk-x-status p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* VARIANTS */

.trk-x-status.processing {
  border-left-color: var(--primary); /* Sage Green */
  background: var(--bg); /* Very light off-white to stand out slightly */
  /* Removed neon purple glow */
}

.trk-x-status.processing strong {
  color: var(--primary-dark);
  /* Removed text shadow */
}

.trk-x-status.dispatched {
  border-left-color: var(--primary-dark); /* Deeper sage */
  background: rgba(92, 113, 94, 0.05); /* Gentle green tint */
  /* Removed neon green glow */
}

.trk-x-status.dispatched strong {
  color: var(--primary-dark);
  /* Removed text shadow */
}

/* =====================================================
   TRACK ORDER — SUMMARY (CLEAN PRINTOUT)
===================================================== */

.trk-x-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  border-top: 1px solid var(--border); /* Clean solid line instead of dashed */
  padding-top: 30px;
}

.trk-x-summary span {
  display: block;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.trk-x-summary strong {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .trk-x {
    padding: 80px 0; /* Let padding be handled by the layout and inner padding */
  }

  .trk-x-card {
    padding: 40px 24px;
  }

  .trk-x-input-row {
    flex-direction: column;
    gap: 16px;
  }

  .trk-x-input-row button {
    width: 100%;
  }

  .trk-x-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =====================================================
   RETURN ORDER — SERENE EARTH
===================================================== */

.rtn-x {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0;
  position: relative;
  /* Added a subtle top border to separate sections gracefully */
  border-top: 1px solid var(--border);
}

/* Removed data grid overlay completely */
.rtn-x::before {
  display: none;
}

.rtn-x-body {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* =====================================================
   RETURN ORDER — SECTION (ELEGANT PANEL)
===================================================== */

.rtn-x-card {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Soft rounded corners */
  padding: 50px 40px; /* Adjusted padding for an airy feel */
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Natural drop shadow */
  /* Removed dark glass backdrop-filter */
}

/* Removed Top Neon Scanner Line */
.rtn-x-card::before {
  display: none;
}

.rtn-x-card h2 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  /* Removed heavy uppercase, letter-spacing, and text-shadow */
}

.rtn-x-desc {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 100%;
}

/* =====================================================
   RETURN ORDER — FORM (CLEAN INPUTS)
===================================================== */

.rtn-x-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rtn-x-field label {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  /* Removed uppercase and neon teal colors */
}

.rtn-x-field input,
.rtn-x-field select,
.rtn-x-field textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-md); /* Soft rounded edges */
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: var(--font-body); /* Removed monospace */
  background: var(--bg); /* Light off-white interior */
  color: var(--text);
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Select dropdown specific styling updated for light mode */
.rtn-x-field select {
  appearance: none;
  /* Updated SVG stroke to #6b6b66 (text-muted) instead of neon teal */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.rtn-x-field select option {
  background: var(--surface);
  color: var(--text);
}

.rtn-x-field textarea {
  min-height: 140px;
  resize: vertical;
}

.rtn-x-field input:focus,
.rtn-x-field select:focus,
.rtn-x-field textarea:focus {
  outline: none;
  background: var(--surface); /* Solid white on focus */
  border-color: var(--primary);
  /* Gentle sage focus ring */
  box-shadow: 0 0 0 3px rgba(92, 113, 94, 0.15);
}

/* =====================================================
   RETURN ORDER — ERROR (SOFT WARNING)
===================================================== */

.rtn-x-error {
  background: rgba(217, 125, 84, 0.05); /* Soft terracotta tint */
  border: 1px solid rgba(217, 125, 84, 0.2);
  border-left: 4px solid var(--accent); /* Terracotta accent line */
  padding: 20px 24px;
  border-radius: var(--radius-md); /* Soft corners */
  /* Removed glowing box shadow */
}

.rtn-x-error strong {
  display: block;
  font-family: var(--font-body); /* Removed serif heading */
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--accent);
  /* Removed uppercase and neon red text shadow */
}

.rtn-x-error p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* =====================================================
   RETURN ORDER — ACTION (SUBMIT)
===================================================== */

.rtn-x-primary-btn {
  display: inline-block;
  margin-top: 10px;
  background: var(--primary); /* Sage green */
  color: #ffffff;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px; /* Elegant pill shape */
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15);
  /* Removed uppercase and heavy letter spacing */
}

.rtn-x-primary-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(92, 113, 94, 0.25);
  transform: translateY(-2px); /* Gentle lift */
}

.rtn-x-note {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-faint);
  margin-top: 16px;
  max-width: 100%;
  /* Removed uppercase */
}

/* =====================================================
   RETURN ORDER — SUCCESS (ELEGANT CONFIRMATION)
===================================================== */

.rtn-x-success {
  background: transparent;
  border-top: 1px solid var(--border); /* Clean solid line instead of dashed */
  padding-top: 50px;
  text-align: center;
}

.rtn-x-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%; /* Perfect circle instead of tech node */
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--primary); /* Sage green */
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Soft shadow */
}

.rtn-x-success h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary-dark); /* Deep sage */
  /* Removed uppercase and neon glow */
}

.rtn-x-success p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* =====================================================
   RETURN ORDER — SUMMARY
===================================================== */

.rtn-x-summary {
  border-top: 1px solid var(--border); /* Clean solid line */
  padding-top: 24px;
  margin-bottom: 30px;
}

.rtn-x-summary span {
  display: block;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.rtn-x-summary strong {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .rtn-x {
    padding: 80px 0; /* Horizontal padding is handled by the wrapper */
  }

  .rtn-x-card {
    padding: 40px 24px;
  }
}

/* =====================================================
   CART — SERENE EARTH
===================================================== */

.crt-x {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0;
  position: relative;
}

/* Removed subtle grid overlay completely */
.crt-x::before {
  display: none;
}

.crt-x-body {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* =====================================================
   CART — EMPTY STATE
===================================================== */

.crt-x-empty {
  background: transparent;
  border-top: 1px solid var(--border); /* Clean, natural boundary */
  padding-top: 60px;
  text-align: center;
}

.crt-x-empty h2 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  /* Removed heavy uppercase and neon text-shadow */
}

.crt-x-empty p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 16px; /* Slightly larger for readability */
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 28px;
  /* Removed uppercase */
}

/* =====================================================
   CART — LAYOUT
===================================================== */

.crt-x-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
}

.crt-x-items h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--text);
  /* Removed heavy uppercase and letter spacing */
}

/* =====================================================
   CART — ITEM ROW
===================================================== */

.crt-x-item {
  background: transparent;
  border-top: 1px solid var(--border); /* Clean solid line instead of dashed */
  padding: 30px 10px; /* Adjusted horizontal padding */
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 24px;
  align-items: center;
  transition: all 0.3s var(--ease);
}

.crt-x-item:hover {
  background: var(--surface); /* Turns solid white on hover for clarity */
}

/* IMAGE */

.crt-x-item-image img {
  width: 90px;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: var(--radius-md); /* Soft friendly corners */
  padding: 10px;
  background: var(--card); /* Soft beige housing instead of black */
  transition: all 0.4s var(--ease);
  /* Removed neon filter drop-shadows */
}

.crt-x-item:hover .crt-x-item-image img {
  border-color: var(--primary); /* Sage green accent */
  transform: scale(1.05); /* Gentle elegant zoom */
}

/* INFO */

.crt-x-item-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px; /* Slightly larger */
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  transition: color 0.3s var(--ease);
  /* Removed uppercase */
}

.crt-x-item:hover .crt-x-item-info strong {
  color: var(--primary-dark);
  /* Removed neon text-shadow */
}

.crt-x-item-info span {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  color: var(--text-muted);
}

/* =====================================================
   CART — QUANTITY
===================================================== */

.crt-x-item-qty form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.crt-x-item-qty input {
  width: 50px; /* Thinned slightly since we removed thick borders */
  padding: 8px;
  border-radius: var(--radius-md); /* Soft rounded edges */
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: var(--font-body); /* Removed monospace */
  text-align: center;
  background: var(--bg); /* Very light off-white interior */
  color: var(--text);
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.crt-x-item-qty input:focus {
  outline: none;
  background: var(--surface); /* Solid white */
  border-color: var(--primary);
  /* Gentle sage green focus ring */
  box-shadow: 0 0 0 3px rgba(92, 113, 94, 0.15);
}

.crt-x-item-qty button {
  padding: 8px 12px;
  border-radius: 50px; /* Elegant pill shape for buttons */
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.crt-x-item-qty button:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); /* Soft lift */
}

/* =====================================================
   CART — TOTAL & REMOVE
===================================================== */

.crt-x-item-total {
  text-align: right;
}

.crt-x-item-total strong {
  display: block;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.crt-x-remove {
  background: none;
  border: none;
  color: var(--accent); /* Soft terracotta */
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  /* Removed uppercase and heavy letter spacing */
}

.crt-x-remove:hover {
  color: var(--text); /* Darkens gently on hover */
  /* Removed neon text-shadow */
}

/* =====================================================
   CART — SUMMARY (EDITORIAL CARD)
===================================================== */

.crt-x-summary {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Friendly rounded corners */
  padding: 40px 32px;
  height: fit-content;
  position: sticky;
  top: 120px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft, natural drop shadow */
  /* Removed dark glass backdrop filters */
}

/* Removed Top Neon Scanner Line */
.crt-x-summary::before {
  display: none;
}

.crt-x-summary h2 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 26px;
  color: var(--text);
  /* Removed heavy uppercase and letter-spacing */
}

/* ROWS */

.crt-x-summary-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--text-muted);
  /* Removed uppercase */
}

.crt-x-summary-row strong {
  color: var(--text);
  font-weight: 500;
}

.crt-x-summary-row.total {
  font-weight: 600;
  font-size: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--border); /* Solid clean line instead of dashed */
  color: var(--primary-dark); /* Deep sage green */
  margin-top: 24px;
  /* Removed neon text shadow */
}

/* =====================================================
   CART — PRIMARY ACTION (CHECKOUT)
===================================================== */

.crt-x-primary-btn {
  display: block;
  margin-top: 32px;
  background: var(--primary); /* Sage green */
  color: #ffffff;
  border: 1px solid transparent;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px; /* Elegant pill shape */
  text-align: center;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15);
  text-decoration: none;
  /* Removed uppercase and heavy letter spacing */
}

.crt-x-primary-btn.checkout:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(92, 113, 94, 0.25);
  transform: translateY(-2px); /* Gentle lift */
}

/* TRUST TEXT */

.crt-x-trust {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-faint);
  text-align: center;
  margin-top: 20px;
  /* Removed uppercase */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .crt-x-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .crt-x-summary {
    position: static;
    padding: 30px 20px;
  }

  .crt-x-item {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "img info"
      "img qty"
      "img total";
    padding: 24px 0; /* Remove horizontal padding on mobile to save space */
  }

  .crt-x-item-total {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .crt-x {
    padding: 80px 0;
  }

  .crt-x-items h2 {
    font-size: 22px;
  }
}

/* =====================================================
   CHECKOUT — SERENE EARTH
===================================================== */

.chk-x {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0;
  position: relative;
}

/* Removed subtle grid overlay completely */
.chk-x::before {
  display: none;
}

.chk-x-body {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* =====================================================
   CHECKOUT — ERROR (SOFT ALERT)
===================================================== */

.chk-x-error {
  background: rgba(217, 125, 84, 0.05); /* Soft terracotta tint */
  border: 1px solid rgba(217, 125, 84, 0.2);
  border-left: 4px solid var(--accent); /* Terracotta accent line */
  padding: 20px 24px;
  border-radius: var(--radius-md); /* Soft corners */
  margin-bottom: 40px;
  /* Removed neon shadow */
}

.chk-x-error strong {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--accent);
  /* Removed uppercase and neon red text shadow */
}

.chk-x-error p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* =====================================================
   CHECKOUT — LAYOUT
===================================================== */

.chk-x-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
}

/* =====================================================
   CHECKOUT — SECTIONS (FORM GROUPS)
===================================================== */

.chk-x-card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--border); /* Clean solid separator instead of thick tech line */
  padding-top: 32px;
  margin-bottom: 50px;
}

.chk-x-card h2 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
  /* Removed heavy uppercase and letter-spacing */
}

/* =====================================================
   CHECKOUT — FORM (CLEAN INPUTS)
===================================================== */

.chk-x-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.chk-x-grid.single {
  grid-template-columns: 1fr;
}

.chk-x-card label {
  display: block;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
  /* Removed uppercase and neon purple color */
}

.chk-x-card input,
.chk-x-card textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-md); /* Soft rounded edges */
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: var(--font-body); /* Removed monospace */
  background: var(--bg); /* Light off-white interior */
  color: var(--text);
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.chk-x-card textarea {
  min-height: 120px;
  resize: vertical;
}

.chk-x-card input:focus,
.chk-x-card textarea:focus {
  outline: none;
  background: var(--surface); /* Solid white on focus */
  border-color: var(--primary);
  /* Gentle sage focus ring */
  box-shadow: 0 0 0 3px rgba(92, 113, 94, 0.15);
}

/* =====================================================
   CHECKOUT — PAYMENTS (SELECTION CARDS)
===================================================== */

.chk-x-payments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.chk-x-payment {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--surface); /* Solid white */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); /* Friendly corners */
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.chk-x-payment:hover {
  background: var(--surface);
  border-color: var(--primary); /* Sage green hover */
  transform: translateY(-4px); /* Gentle lift */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.chk-x-payment i {
  font-size: 24px;
  color: var(--text-muted);
  margin-top: 2px;
  transition: color 0.3s var(--ease);
}

.chk-x-payment strong {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  transition: color 0.3s var(--ease);
  /* Removed uppercase */
}

.chk-x-payment span {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  color: var(--text-muted);
}

/* ACTIVE PAYMENT PROTOCOL */

.chk-x-payment.active {
  background: rgba(92, 113, 94, 0.03); /* Extremely subtle sage tint */
  border-color: var(--primary); /* Sage green */
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.1);
}

.chk-x-payment.active i,
.chk-x-payment.active strong {
  color: var(--primary-dark);
  /* Removed neon text shadows */
}

/* =====================================================
   CHECKOUT — SUMMARY (EDITORIAL RECEIPT)
===================================================== */

.chk-x-summary {
  background: var(--surface); /* Solid white */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: fit-content;
  position: sticky;
  top: 120px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft natural shadow */
  /* Removed dark glass filter */
}

/* Removed top neon scanner line */
.chk-x-summary::before {
  display: none;
}

.chk-x-summary h3 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 26px;
  color: var(--text);
  /* Removed uppercase */
}

/* SUMMARY ITEMS */

.chk-x-summary-items {
  margin-bottom: 24px;
}

.chk-x-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-muted);
  background: var(--bg); /* Very light interior */
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius-md); /* Soft corners */
}

.chk-x-summary-item strong {
  color: var(--text);
  border-left: 2px solid var(--primary); /* Sage green accent line */
  padding-left: 12px;
}

/* TOTAL */

.chk-x-summary-total {
  border-top: 1px solid var(--border); /* Clean line instead of dashed */
  padding-top: 20px;
  margin-bottom: 30px;
}

.chk-x-summary-total div {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
  /* Removed uppercase */
}

.chk-x-summary-total .total {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--primary-dark); /* Deep sage green */
  margin-top: 20px;
  /* Removed neon text shadow */
}

/* =====================================================
   CHECKOUT — CTA (PRIMARY BUTTON)
===================================================== */

.chk-x-primary-btn {
  width: 100%;
  background: var(--primary); /* Sage green */
  color: #ffffff;
  border: 1px solid transparent;
  padding: 18px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px; /* Elegant pill shape */
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15);
  /* Removed uppercase and heavy letter spacing */
}

.chk-x-primary-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(92, 113, 94, 0.25);
  transform: translateY(-2px); /* Gentle lift */
}

/* TRUST STATUS */
.chk-x-trust {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-faint);
  text-align: center;
  margin-top: 20px;
  /* Removed uppercase */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .chk-x-layout {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .chk-x-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .chk-x-summary {
    position: static;
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .chk-x {
    padding: 80px 0; /* Horizontal padding handled by inner wrapper */
  }

  .chk-x-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ORDER SUCCESS — SERENE EARTH
===================================================== */

.ordx-success {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0;
  position: relative;
}

/* Removed subtle grid overlay completely */
.ordx-success::before {
  display: none;
}

.ordx-body {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

.ordx-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
}

/* =====================================================
   MAIN AREA
===================================================== */

.ordx-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.ordx-main h3 {
  color: var(--text-muted); /* Soft charcoal */
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
}

/* =====================================================
   SECTION (ELEGANT PANEL)
===================================================== */

.ordx-card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--border); /* Clean solid separator */
  padding-top: 32px;
  position: relative;
}

.ordx-card h2 {
  font-family: var(--font-heading); /* Serif font */
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
  /* Removed uppercase and heavy letter-spacing */
}

.ordx-card p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 680px;
}

/* CONFIRMATION ACCENT — SOFT SUCCESS PANEL */

.ordx-confirm {
  border-top-color: var(--primary); /* Sage green accent */
  background: rgba(
    92,
    113,
    94,
    0.05
  ); /* Gentle green tint instead of neon gradient */
  padding: 40px;
  border-radius: var(--radius-lg); /* Soft rounded corners */
  /* Removed top glow box-shadow */
}

.ordx-confirm h2 {
  color: var(--primary-dark); /* Deep sage */
  /* Removed neon green text shadow */
}

/* =====================================================
   ORDER STATS (TRANSACTION SUMMARY)
===================================================== */

.ordx-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid var(--border); /* Solid line instead of dashed */
  padding-top: 32px;
}

.ordx-stats span {
  display: block;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.ordx-stats strong {
  font-family: var(--font-body); /* Removed heading font for data points */
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* =====================================================
   WHAT HAPPENS NEXT
===================================================== */

.ordx-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ordx-steps li {
  padding-left: 36px;
  position: relative;
  font-size: 16px; /* Slightly larger for readability */
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Removed "[OK]" terminal string and replaced with an elegant bullet */
.ordx-steps li::before {
  content: "✓";
  font-family: var(--font-body);
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary); /* Sage green checkmark */
  font-weight: 500;
  /* Removed neon text shadow */
}

/* =====================================================
   ACTIONS (BUTTONS)
===================================================== */

.ordx-actions {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.ordx-btn {
  padding: 16px 32px;
  border-radius: 50px; /* Elegant pill shape */
  font-family: var(--font-body); /* Removed serif heading font */
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  /* Removed uppercase and heavy letter spacing */
}

/* PRIMARY */

.ordx-btn.primary {
  background: var(--primary); /* Sage green */
  border: 1px solid transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15);
}

.ordx-btn.primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(92, 113, 94, 0.25);
  transform: translateY(-2px); /* Gentle lift */
}

/* GHOST (OUTLINE) */

.ordx-btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.ordx-btn.ghost:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Gentle lift */
  transform: translateY(-2px);
}

/* =====================================================
   RIGHT SIDEBAR
===================================================== */

.ordx-side {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* =====================================================
   STATUS RAIL — ELEGANT TRACKER
===================================================== */

.ordx-rail {
  background: transparent;
  border-top: 1px solid var(--border); /* Clean solid line */
  padding-top: 32px;
}

.rail-step {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0.5; /* Slightly increased base opacity */
  transition: all 0.3s var(--ease);
}

.rail-step span {
  width: 32px;
  height: 32px;
  border-radius: 50%; /* Perfect circles replacing square nodes */
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  font-weight: 500;
}

.rail-step strong {
  font-family: var(--font-body); /* Removed serif heading font */
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  /* Removed uppercase and letter-spacing */
}

/* ACTIVE NODE */

.rail-step.active {
  opacity: 1;
}

.rail-step.active span {
  background: var(--primary); /* Sage green fill */
  border-color: var(--primary);
  color: #ffffff;
  /* Removed neon box-shadow */
}

.rail-step.active strong {
  color: var(--primary-dark);
  /* Removed neon text-shadow */
}

/* =====================================================
   HELP BOX — SOFT ASSISTANCE PANEL
===================================================== */

.ordx-help {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary); /* Sage accent line */
  border-radius: var(--radius-md); /* Soft corners */
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Natural drop shadow */
  /* Removed dark glass filter */
}

.ordx-help strong {
  display: block;
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  /* Removed uppercase */
}

.ordx-help p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.ordx-help a {
  color: var(--accent); /* Soft terracotta link */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.ordx-help a:hover {
  color: var(--text); /* Darkens slightly on hover */
  /* Removed neon text-shadow */
}

/* =====================================================
   UTILITIES
===================================================== */

.text-black {
  color: var(--text) !important; /* Maps back to our deep charcoal */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .ordx-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ordx-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ordx-actions {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .ordx-success {
    padding: 80px 0; /* Horizontal padding handled by wrapper */
  }

  .ordx-confirm {
    padding: 30px 24px;
  }
}

/* Policy Pages */
.policy-page {
  padding: 50px;
}

/* =====================================================
   SHOP PAGE — SERENE EARTH
===================================================== */

.shop-hard {
  background: var(--bg); /* Warm off-white */
  position: relative;
}

/* Removed the subtle schematic grid overlay completely */
.shop-hard::before {
  display: none;
}

.shop-hard-body {
  padding: 100px 20px 120px; /* Added horizontal padding for safety */
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

/* =====================================================
   EMPTY STATE (NO PRODUCTS FOUND)
===================================================== */

.shop-hard-empty {
  background: var(--surface); /* Solid white */
  border: 1px solid var(--border); /* Clean boundary */
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 56px;
  border-radius: var(--radius-lg); /* Soft corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft, natural drop shadow */
  /* Removed dark glass, cyberpunk red border, and glowing shadows */
}

.shop-hard-empty strong {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  /* Removed uppercase, heavy letter-spacing, and neon red glow */
}

.shop-hard-empty p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

/* =====================================================
   SHOP GRID — CATALOG
===================================================== */

.shop-hard-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(280px, 1fr)
  ); /* Slightly wider for elegant spacing */
  gap: 40px;
}

/* =====================================================
   SHOP PRODUCT — EDITORIAL TILE
===================================================== */

.shop-product-card {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-lg); /* Friendly rounded edges */
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  /* Removed dark glass filter and neon top separator */
}

.shop-product-card:hover {
  transform: translateY(-6px); /* Gentle lift */
  border-color: var(--primary); /* Sage green hover border */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* =====================================================
   IMAGE (SOFT HOUSING)
===================================================== */

.shop-product-image {
  position: relative;
  background: var(--card); /* Soft beige background */
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md); /* Soft corners */
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.shop-product-card:hover .shop-product-image {
  background: var(--surface);
  border-color: var(--border);
}

.shop-product-image img {
  max-width: 100%;
  height: 170px;
  object-fit: contain;
  /* Removed heavy drop shadow */
  transition: transform 0.6s var(--ease);
}

.shop-product-card:hover .shop-product-image img {
  transform: scale(1.05); /* Gentle, elegant zoom */
  /* Removed hologram glow */
}

/* =====================================================
   STOCK BADGE — ELEGANT INDICATOR
===================================================== */

.shop-stock {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px; /* Soft pill shape */
  z-index: 2;
  /* Removed neon box-shadows */
}

.shop-stock.in {
  background: rgba(92, 113, 94, 0.1); /* Subtle sage tint */
  color: var(--primary-dark);
  border: 1px solid rgba(92, 113, 94, 0.2);
}

.shop-stock.out {
  background: rgba(217, 125, 84, 0.1); /* Subtle terracotta tint */
  color: var(--accent);
  border: 1px solid rgba(217, 125, 84, 0.2);
}

/* =====================================================
   INFO (CLEAN TYPOGRAPHY)
===================================================== */

.shop-product-info {
  padding: 24px 0 0;
  flex: 1;
}

.shop-product-info h3 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text);
  transition: color 0.3s var(--ease);
  /* Removed heavy uppercase and letter-spacing */
}

.shop-product-card:hover .shop-product-info h3 {
  color: var(--primary-dark);
  /* Removed neon teal text-shadow */
}

.shop-product-info p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* =====================================================
   FOOTER
===================================================== */

.shop-product-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border); /* Clean solid line instead of dashed */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-price {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 16px;
  font-weight: 600;
  color: var(--text); /* Deep charcoal */
  /* Removed neon purple glow */
}

/* =====================================================
   ADD TO CART — PILL BUTTON
===================================================== */

.shop-add-btn {
  background: var(--surface);
  color: var(--primary); /* Sage green */
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px; /* Elegant pill shape */
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  /* Removed uppercase and heavy letter spacing */
}

.shop-add-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15); /* Soft sage lift */
  transform: translateY(-2px);
}

/* DISABLED (OUT OF STOCK) */

.shop-disabled-btn {
  background: var(--bg);
  color: var(--text-faint);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px; /* Pill shape */
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: not-allowed;
  /* Removed uppercase */
}

/* OUT OF STOCK DIMMING */

.shop-product-card.out {
  opacity: 0.7; /* Soften the dimming slightly */
  /* Removed grayscale for a cleaner look */
}

.shop-product-card.out:hover {
  transform: translateY(-2px); /* Much softer lift */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border-color: var(--border); /* Remove hover color change for out of stock */
}

/* LINK */

.shop-product-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .shop-hard-body {
    padding: 80px 15px;
  }

  .shop-product-image img {
    height: 150px;
  }
}

/* =====================================================
   PRODUCT DETAIL — SERENE EARTH
===================================================== */

.prd-pro {
  background: var(--bg); /* Warm off-white */
  padding: 120px 0;
  position: relative;
}

/* Removed schematic grid background completely */
.prd-pro::before {
  display: none;
}

.prd-pro-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Safety padding for mobile */
}

/* =====================================================
   IMAGE (EDITORIAL GALLERY HOUSING)
===================================================== */

.prd-pro-media {
  background: var(--surface); /* Solid white */
  border-radius: var(--radius-lg); /* Soft friendly corners */
  padding: 50px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft natural shadow */
  position: relative;
  overflow: hidden;
  /* Removed dark glass backdrop-filter */
}

/* Removed Top Neon Scanner Line */
.prd-pro-media::before {
  display: none;
}

.prd-pro-media img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  /* Removed neon drop-shadow */
  transition: transform 0.6s var(--ease);
}

.prd-pro-media:hover img {
  transform: scale(1.05); /* Gentle, elegant zoom */
  /* Removed hologram pulse filter */
}

/* =====================================================
   INFO (CLEAN TYPOGRAPHY)
===================================================== */

.prd-pro-meta {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  color: var(--accent); /* Soft terracotta tag */
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  /* Removed neon text-shadow */
}

.prd-pro-info h1 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text);
  /* Removed uppercase and heavy shadow */
}

.prd-pro-rating {
  font-size: 14px;
  color: #eab308; /* Classic gold stars */
  letter-spacing: 2px;
  margin-bottom: 24px;
  /* Removed neon teal glow */
}

.prd-pro-rating span {
  font-family: var(--font-body); /* Removed monospace */
  color: var(--text-muted);
  margin-left: 8px;
  letter-spacing: normal;
}

.prd-pro-price {
  font-family: var(--font-body); /* Removed heavy heading font */
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text); /* Deep charcoal value */
  display: flex;
  align-items: baseline;
  gap: 12px;
  /* Removed purple neon shadow */
}

.prd-pro-price small {
  display: inline-block;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 15px;
  color: var(--text-faint);
  font-weight: 400;
  /* Removed uppercase */
}

.prd-pro-desc {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 16px; /* Slightly larger for readability */
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
  border-left: 2px solid var(--primary); /* Sage green accent line */
  padding-left: 20px;
}

/* =====================================================
   ACTIONS & TRUST
===================================================== */

.prd-pro-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.prd-pro-trust {
  display: flex;
  gap: 24px;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-top: 1px solid var(--border); /* Solid clean line instead of dashed */
  padding-top: 24px;
  /* Removed uppercase */
}

/* =====================================================
   TABS (ELEGANT NAVIGATION)
===================================================== */

.prd-pro-tabs {
  margin-top: 100px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.prd-pro-tabs input {
  display: none;
}

.prd-pro-tab-head {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid var(--border); /* Clean separator */
  margin-bottom: 40px;
}

.prd-pro-tab-head label {
  padding-bottom: 16px;
  font-family: var(--font-body); /* Removed heavy heading */
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-faint); /* Dimmed inactive tabs */
  transition: all 0.3s var(--ease);
  position: relative;
  /* Removed uppercase and heavy letter-spacing */
}

/* Hover effect */
.prd-pro-tab-head label:hover {
  color: var(--text);
}

/* Active Tab Target */
#tab1:checked ~ .prd-pro-tab-head label[for="tab1"],
#tab2:checked ~ .prd-pro-tab-head label[for="tab2"],
#tab3:checked ~ .prd-pro-tab-head label[for="tab3"],
#tab4:checked ~ .prd-pro-tab-head label[for="tab4"] {
  color: var(--primary-dark); /* Active deep sage */
  /* Removed neon teal glow */
}

/* Active Bottom Accent Line */
#tab1:checked ~ .prd-pro-tab-head label[for="tab1"]::after,
#tab2:checked ~ .prd-pro-tab-head label[for="tab2"]::after,
#tab3:checked ~ .prd-pro-tab-head label[for="tab3"]::after,
#tab4:checked ~ .prd-pro-tab-head label[for="tab4"]::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary); /* Sage green indicator */
  /* Removed neon box-shadow */
}

.prd-pro-tab-body .prd-tab {
  display: none;
  animation: smoothFadeIn 0.4s var(--ease) forwards;
}

@keyframes smoothFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#tab1:checked ~ .prd-pro-tab-body .prd-tab:nth-child(1),
#tab2:checked ~ .prd-pro-tab-body .prd-tab:nth-child(2),
#tab3:checked ~ .prd-pro-tab-body .prd-tab:nth-child(3),
#tab4:checked ~ .prd-pro-tab-body .prd-tab:nth-child(4) {
  display: block;
}

/* =====================================================
   TABLE (CLEAN SPEC DATA)
===================================================== */

.prd-spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface); /* Solid white */
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden; /* Ensures border-radius clips the table cells perfectly */
}

.prd-spec-table th,
.prd-spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.prd-spec-table tr:last-child th,
.prd-spec-table tr:last-child td {
  border-bottom: none;
}

.prd-spec-table th {
  width: 260px;
  text-align: left;
  font-family: var(--font-body); /* Removed monospace */
  font-weight: 600;
  color: var(--text);
  background: var(--card); /* Soft beige background for table headers */
  /* Removed purple text and uppercase */
}

.prd-spec-table td {
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .prd-pro-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .prd-pro-media {
    padding: 30px;
  }

  .prd-pro-media img {
    height: 320px;
  }

  .prd-pro-tab-head {
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2px;
  }
}

/* =====================================================
   CATEGORY LANDING HERO — SERENE EARTH
===================================================== */

.cat-landing {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--bg); /* Warm off-white fallback */
}

/* LINK WRAPPER */

.cat-landing-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  position: relative;
}

/* IMAGE WITH LIGHT EDITORIAL OVERLAY */

.cat-landing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* This elegant gradient ensures the dark text is readable over any image */
.cat-landing-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(249, 248, 246, 0.95) 0%,
    rgba(249, 248, 246, 0.4) 100%
  );
  z-index: 2;
  transition: opacity 0.4s var(--ease);
}

.cat-landing-link:hover::before {
  opacity: 0.85; /* Image reveals slightly more on hover */
}

/* CONTENT */

.cat-landing-content {
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
  position: relative;
  z-index: 3; /* Sits above the image overlay */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-landing-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent); /* Soft terracotta */
  margin-bottom: 16px;
}

.cat-landing-title {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--text); /* Deep charcoal */
  max-width: 600px;
}

.cat-landing-title span {
  color: var(--primary-dark); /* Deep sage green */
  font-style: italic; /* Added editorial flair */
}

.cat-landing-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cat-landing-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary); /* Sage green */
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.cat-landing-cta::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

/* Hover effects tied to the parent link wrapper */
.cat-landing-link:hover .cat-landing-cta {
  color: var(--primary-dark);
}

.cat-landing-link:hover .cat-landing-cta::after {
  transform: translateX(6px); /* Gentle slide */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .cat-landing {
    height: 460px;
  }

  .cat-landing-content {
    padding: 0 24px;
  }

  .cat-landing-link::before {
    /* More solid overlay on mobile for easier reading */
    background: linear-gradient(
      to bottom,
      rgba(249, 248, 246, 0.95) 0%,
      rgba(249, 248, 246, 0.7) 100%
    );
  }
}

@media (max-width: 600px) {
  .cat-landing {
    height: 420px; /* Slight adjustment to give text room */
  }

  .cat-landing-title {
    font-size: 30px;
  }

  .cat-landing-text {
    font-size: 16px;
  }
}

/* =====================================================
   CATEGORY GRID — SERENE EARTH
===================================================== */

.category-modern {
  padding: 100px 0;
  background: var(--bg); /* Warm off-white */
  position: relative;
}

/* Removed schematic grid background overlay completely */
.category-modern::before {
  display: none;
}

.category-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px; /* Safety padding for mobile */
}

/* =====================================================
   PRODUCT CARD — EDITORIAL TILE
===================================================== */

.category-product-card {
  background: var(--surface); /* Solid white panel */
  border-radius: var(--radius-lg); /* Friendly, rounded corners */
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02); /* Soft, natural shadow */
  /* Removed dark glass backdrop filters and heavy tech borders */
}

.w-100 {
  width: 100%;
}

/* Removed Top Neon Scanner Line completely */
.category-product-card::before {
  display: none;
}

.category-product-card:hover {
  transform: translateY(-6px); /* Gentle lift */
  border-color: var(--primary); /* Sage green border on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.category-product-link {
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* =====================================================
   IMAGE — SOFT HOUSING
===================================================== */

.category-product-image {
  position: relative;
  background: var(--card); /* Soft beige background */
  padding: 30px 22px;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease);
}

.category-product-card:hover .category-product-image {
  background: var(--surface); /* Turns white to match the card on hover */
}

.category-product-image img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  /* Removed heavy drop shadow */
  transition: transform 0.6s var(--ease);
}

.category-product-card:hover .category-product-image img {
  transform: scale(1.05); /* Gentle, elegant zoom */
  /* Removed hologram pulse */
}

/* =====================================================
   STOCK — ELEGANT INDICATOR
===================================================== */

.category-stock {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body); /* Removed monospace */
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px; /* Soft pill shape */
  z-index: 2;
  /* Removed neon box shadows */
}

.category-stock.in {
  background: rgba(92, 113, 94, 0.1); /* Gentle sage tint */
  color: var(--primary-dark);
  border: 1px solid rgba(92, 113, 94, 0.2);
}

.category-stock.out {
  background: rgba(217, 125, 84, 0.1); /* Gentle terracotta tint */
  color: var(--accent);
  border: 1px solid rgba(217, 125, 84, 0.2);
}

/* =====================================================
   INFO — CLEAN TYPOGRAPHY
===================================================== */

.category-product-info {
  padding: 24px 22px 10px;
  background-color: transparent;
  flex-grow: 1;
}

.category-product-info h3 {
  font-family: var(--font-heading); /* Elegant serif */
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
  color: var(--text);
  transition: color 0.3s var(--ease);
  /* Removed heavy uppercase and letter-spacing */
}

.category-product-card:hover .category-product-info h3 {
  color: var(--primary-dark);
  /* Removed neon teal text shadow */
}

.category-product-info p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.category-price {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 16px;
  font-weight: 600;
  color: var(--text); /* Deep charcoal */
  /* Removed neon purple glow */
}

/* =====================================================
   ACTION — PILL BUTTON
===================================================== */

.category-cart-form,
.btn-disabled {
  margin: 16px 22px 22px;
}

.category-cart-form button {
  width: 100%;
  background: var(--surface);
  color: var(--primary); /* Sage green */
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 50px; /* Elegant pill shape */
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  /* Removed uppercase and neon teal styles */
}

.category-cart-form button:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(92, 113, 94, 0.15); /* Soft lift */
  transform: translateY(-2px);
}

.btn-disabled {
  width: calc(100% - 44px); /* Accounting for margins */
  padding: 12px;
  border-radius: 50px; /* Pill shape */
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-faint);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  cursor: not-allowed;
  text-align: center;
  /* Removed uppercase */
}

/* =====================================================
   EMPTY STATE — SOFT NOTIFICATION
===================================================== */

.category-empty-modern {
  background: var(--surface); /* Solid white panel */
  border: 1px solid var(--border);
  text-align: center;
  padding: 100px 20px;
  border-radius: var(--radius-lg); /* Soft corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Natural shadow */
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  /* Removed dark glass filter and cyberpunk red warning line */
}

.category-empty-modern h3 {
  font-family: var(--font-heading); /* Serif font */
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  /* Removed uppercase, heavy tracking, and neon red shadow */
}

.category-empty-modern p {
  font-family: var(--font-body); /* Removed monospace */
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {
  .category-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .category-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .category-modern {
    padding: 80px 0; /* Horizontal padding handled by wrapper */
  }

  .category-grid-modern {
    grid-template-columns: 1fr;
  }

  .category-product-image img {
    height: 220px;
  }
}
