:root {
  /* ---------- COLORS (Earthy & Modern Editorial) ---------- */

  --bg: #f7f5f0; /* Warm cream background */
  --surface: #ffffff; /* Clean white for sections */
  --card: #ffffff;

  --primary: #c25e4c; /* Terracotta orange/red */
  --primary-dark: #9e4a3b;

  --accent: #5e7a63; /* Sage/Forest green */

  --text: #2d2a26; /* Deep espresso/charcoal for soft contrast */
  --text-muted: #6b6661;
  --text-faint: #a6a19a;

  --border: #e8e2d5;

  /* ---------- RADII (Soft & Organic) ---------- */

  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 9999px; /* For rounded buttons */

  /* ---------- SPACING ---------- */

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 80px;
  --space-2xl: 120px;

  /* ---------- TYPOGRAPHY ---------- */

  --font-body: "Inter", "Helvetica Neue", -apple-system, sans-serif;
  --font-heading: "Playfair Display", "Georgia", serif;

  /* ---------- MOTION ---------- */

  --ease: cubic-bezier(0.4, 0, 0.2, 1); /* Smooth, elegant transition */
}

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 — EDITORIAL & ELEGANT
===================================================== */

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0 0 var(--space-md);
  color: var(--text);
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary);
}

h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
  color: var(--accent);
}

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);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
}

.nc-view-all-btn {
  color: #ffffff !important;
}

/* =====================================================
   DIVIDERS
===================================================== */

.hr {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: var(--space-xl) 0;
  border: none;
  position: relative;
}

/* Adds a small decorative dot in the center of the divider */
.hr::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--text-faint);
  border-radius: 50%;
}

/* =====================================================
   BUTTONS — SOFT & ROUNDED
===================================================== */

.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: var(--radius-pill);
  border: 1px solid transparent;

  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(194, 94, 76, 0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 6px 16px rgba(94, 122, 99, 0.1);
  transform: translateY(-2px);
}

/* =====================================================
   SURFACES
===================================================== */

.surface {
  background: var(--surface);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s var(--ease);
}

.card:hover {
  border-color: rgba(94, 122, 99, 0.3); /* Subtle sage border on hover */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

/* =====================================================
   FORMS — LIGHT & MINIMAL
===================================================== */

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-size: 16px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-faint);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94, 122, 99, 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: 16px;
  }
}

/* =====================================================
   PAGE HEADER — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.page-header-dark {
  /* Soft, warm gradient replacing the neon void */
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

/* Delicate, sophisticated border replacing the neon glow */
.page-header-dark::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;
}

/* BREADCRUMB — REFINED & MINIMAL */

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 28px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.breadcrumb a:hover {
  color: var(--primary); /* Terracotta on hover */
  border-bottom: 1px solid var(--primary);
}

.breadcrumb span {
  color: var(--accent); /* Sage green for separators */
  font-style: italic; /* Adding an editorial touch to separators */
  text-transform: lowercase;
}

/* TITLE — CLASSIC SERIF */

.page-header-dark h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text); /* Deep espresso */
  /* Removing the neon gradient and shadow for a clean, ink-like look */
  background: none;
  -webkit-text-fill-color: initial;
  text-shadow: none;
  letter-spacing: -0.02em;
}

/* SUBTEXT — ELEGANT PROSE */

.page-header-dark p {
  font-size: 18px; /* Slightly larger for a high-end editorial feel */
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px; /* Perfect measure for readable line length */
  margin: 0 auto;
  font-weight: 400;
}

/* =====================================================
   TOP BAR — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.topbar-soft {
  background: var(--surface); /* Clean white background */
  border-bottom: 1px solid var(--border); /* Soft, natural border */
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0; /* Slightly tighter for a refined look */
}

/* LEFT SIDE */

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-msg {
  font-weight: 400;
}

.topbar-msg strong {
  font-weight: 600;
  color: var(--text); /* Deep espresso text */
  text-shadow: none; /* Removed neon glow */
}

/* BADGE — SOFT PILL */

.topbar-badge {
  background: rgba(94, 122, 99, 0.1); /* Very subtle sage green tint */
  border: 1px solid rgba(94, 122, 99, 0.2);
  color: var(--accent); /* Sage green */
  padding: 4px 12px;
  border-radius: var(--radius-pill); /* Soft, organic rounded edges */
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: none; /* Removed teal glow */
}

/* RIGHT SIDE */

.topbar-right {
  font-weight: 400;
}

.topbar-help strong {
  font-weight: 600;
  color: var(--primary); /* Terracotta emphasis */
  text-transform: none; /* Removed shouting uppercase */
  letter-spacing: normal;
  text-shadow: none; /* Removed purple glow */
}

/* =====================================================
   HEADER — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.header-soft {
  background: rgba(255, 255, 255, 0.92); /* Light translucent glass */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); /* Soft organic border */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Gentle shadow instead of glow */
}

.header-soft-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 0; /* Slightly more breathing room */
}

.container.header-soft-inner {
  max-width: 1520px;
}

/* =====================================================
   NAVIGATION
===================================================== */

.nav-soft {
  display: flex;
  gap: 34px;
}

.nav-soft a {
  font-family: var(--font-body); /* Clean sans-serif for UI */
  font-size: 15px;
  font-weight: 500;
  text-transform: none; /* Removed uppercase for editorial feel */
  letter-spacing: 0.01em;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 6px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

/* Elegant, delicate underline replacing the neon glow */
.nav-soft a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--primary); /* Terracotta */
  box-shadow: none;
  transition: width 0.3s var(--ease);
}

.nav-soft a:hover,
.nav-soft a.active {
  color: var(--text);
  text-shadow: none;
}

.nav-soft a:hover::after,
.nav-soft a.active::after {
  width: 100%;
}

/* =====================================================
   LOGO
===================================================== */

.logo-soft img {
  display: block;
  margin-left: 18px;
  /* Removed any invert/glow filters to keep it natural */
}

/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-right: 10px;
}

/* =====================================================
   SEARCH — SOFT PILL
===================================================== */

.search-soft {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill); /* Organic pill shape */
  background: var(--bg); /* Warm cream inset */
  transition: all 0.3s var(--ease);
}

.search-soft:focus-within {
  border-color: var(--accent); /* Sage green focus */
  box-shadow: 0 0 0 3px rgba(94, 122, 99, 0.1); /* Editorial focus ring */
  background: var(--surface);
}

.search-soft i {
  font-size: 15px;
  color: var(--text-muted);
  margin-left: 20px;
}

.search-soft input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  width: 160px;
  color: var(--text);
  padding: 10px 0;
}

.search-soft input::placeholder {
  color: var(--text-faint);
  text-transform: none; /* Removed shouty uppercase */
  font-size: 14px;
  letter-spacing: normal;
}

/* =====================================================
   ICON BUTTONS
===================================================== */

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%; /* Perfect circles instead of sharp squares */
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  position: relative;
  transition: all 0.3s var(--ease);
}

.icon-btn:hover {
  border-color: var(--border);
  color: var(--primary); /* Terracotta hover */
  background: var(--bg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

/* CART BADGE */

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary); /* Terracotta */
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-pill); /* Soft pill */
  box-shadow: none; /* Removed neon glow */
  border: 2px solid var(--surface); /* Creates a cutout effect against the button */
}

/* =====================================================
   MOBILE TOGGLE
===================================================== */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.menu-toggle:hover {
  border-color: var(--border);
  color: var(--primary);
  background: var(--bg);
}

/* =====================================================
   MOBILE MENU — EDITORIAL OFFCANVAS
===================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--surface); /* Clean white */
  z-index: 2000;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  border-left: 1px solid var(--border); /* Gentle separation */
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05); /* Soft, natural 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: 24px;
}

.mobile-menu-header img {
  height: 42px;
}

.mobile-menu-header button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.mobile-menu-header button:hover {
  color: var(--primary);
  background: var(--bg);
}

/* =====================================================
   MOBILE NAV
===================================================== */

.mobile-nav a {
  display: block;
  font-family: var(--font-heading); /* Beautiful serif for mobile menu */
  font-size: 28px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 24px;
  transition: all 0.3s var(--ease);
}

.mobile-nav a:hover {
  color: var(--primary); /* Terracotta */
  padding-left: 12px; /* Soft indent */
  text-shadow: none; /* No neon glow */
  /* Replaced heavy block border with a delicate accent dot/line indicator */
  position: relative;
}

.mobile-nav a:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* =====================================================
   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;
  }
}

/* Banner Section Starts */
/* =====================================================
   HERO BANNER — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.nb-banner-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body, "Inter", "Helvetica Neue", sans-serif);
}

/* Main Wrapper */
.nb-banner-wrapper {
  width: 100%;
  height: 680px;
  background-image: url(../images/bgs.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  border-bottom: 1px solid var(--border);
}

/* Background Shape - Soft, elegant sweeping curve */
.nb-bg-curve {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: url(../images/side.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: ellipse(120% 100% at 100% 50%);
  border-left: none; /* Removed neon edge */
  z-index: 1;
  transition: all 0.4s var(--ease);
}

/* Slider Track */
.nb-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); /* Elegant, smooth slide */
  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;
}

/* Tech Badge -> Editorial Tag */
.nb-badge-pill {
  display: inline-flex;
  align-items: center;
  background-color: rgba(94, 122, 99, 0.1); /* Soft sage tint */
  color: var(--accent);
  border: 1px solid rgba(94, 122, 99, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill, 9999px); /* Soft pill shape */
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  box-shadow: none; /* Removed neon glow */
}

.nb-badge-pill i {
  margin-right: 8px;
  font-size: 14px;
}

/* Heavy Tech Typography -> Classic Serif Heading */
.nb-title-dark {
  color: var(--text);
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.15;
  font-weight: 600;
  text-transform: none; /* Natural casing looks more editorial */
  letter-spacing: -0.02em;
  text-shadow: none;
}

/* Neon Gradient Title -> Solid Terracotta Emphasis */
.nb-title-blue {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentcolor;
  color: var(--primary); /* Terracotta */
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.15;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: none;
}

.nb-desc-text {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 85%;
  font-weight: 400;
}

/* 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(--accent); /* Sage green */
  font-size: 20px;
  text-shadow: none;
}

.nb-feature-block span {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Buttons */
.nb-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nb-btn-solid {
  background-color: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius-pill, 9999px);
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 14px rgba(194, 94, 76, 0.15);
}

.nb-btn-solid:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 94, 76, 0.25);
}

.nb-btn-outline {
  background-color: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 32px;
  border-radius: var(--radius-pill, 9999px);
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease);
}

.nb-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transform: translateY(-2px);
}

/* 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;
  /* Soft, natural shadow for a grounded editorial look */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

.nb-image-container img {
  max-width: 100%;
  object-fit: contain;
}

/* Bottom Trust Panel - Light, Clean Card */
.nb-trust-panel {
  background-color: var(--surface); /* Solid white */
  backdrop-filter: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 20px); /* Softly rounded */
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Elegant top border accent replacing the neon side slash */
.nb-trust-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent); /* Sage green top accent */
  box-shadow: none;
}

.nb-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nb-trust-item i {
  color: var(--accent);
  font-size: 24px;
  text-shadow: none;
}

.nb-trust-text h4 {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: normal;
  text-transform: none;
}

.nb-trust-text p {
  color: var(--text-muted);
  font-size: 13px;
}

/* Navigation Arrows - Minimal & Circular */
.nb-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: none;
  border-radius: 50%; /* Perfect circles */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  z-index: 10;
  transition: all 0.3s var(--ease);
}

.nb-nav-arrow:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(194, 94, 76, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.nb-arrow-prev {
  left: 25px;
}
.nb-arrow-next {
  right: 25px;
}

/* Pagination Dots - Soft Circles */
.nb-pagination-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.nb-dot {
  width: 8px;
  height: 8px; /* Round dots instead of dashes */
  background-color: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.nb-dot.active {
  background-color: var(--primary); /* Terracotta */
  transform: scale(1.3);
  box-shadow: none;
}

/* =========================================
           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: 20px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .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;
  }
  /* Adjusting the organic curve for mobile layout */
  .nb-bg-curve {
    width: 100%;
    height: 55%;
    top: auto;
    bottom: 0;
    clip-path: ellipse(150% 100% at 50% 100%);
  }
  .nb-content-left {
    padding-right: 0;
    margin-bottom: 50px;
    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: 44px;
    height: 44px;
  }
  .nb-arrow-prev {
    left: 15px;
  }
  .nb-arrow-next {
    right: 15px;
  }
}

@media (max-width: 576px) {
  .nb-title-dark,
  .nb-title-blue {
    font-size: clamp(36px, 10vw, 48px);
  }
  .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 Starts */
/* =====================================================
   FEATURES SECTION — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.nfs-features-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body, "Inter", "Helvetica Neue", sans-serif);
}

/* Main Wrapper */
.nfs-features-section {
  background-color: var(--bg, #f7f5f0); /* Warm cream background */
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--border, #e8e2d5);
}

/* Decorative Background Elements - Soft Organic Accents */
.nfs-decor-dots {
  position: absolute;
  top: 40px;
  right: 5%;
  width: 150px;
  height: 150px;
  /* Soft sage dotted pattern */
  background-image: radial-gradient(
    rgba(94, 122, 99, 0.15) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  opacity: 0.6;
  filter: none; /* Removed neon drop-shadow */
}

.nfs-decor-plane {
  position: absolute;
  top: 60px;
  left: -2%;
  color: var(--primary, #c25e4c); /* Terracotta */
  font-size: 8rem; /* Made larger to act as a soft watermark */
  transform: rotate(-10deg);
  opacity: 0.05; /* Barely visible, elegant watermark effect */
  text-shadow: none;
}

/* Converted from laser trail to a soft, elegant dashed arc */
.nfs-plane-path {
  position: absolute;
  top: 100px;
  left: 5%;
  width: 200px;
  height: 100px;
  border-top: 1px dashed rgba(94, 122, 99, 0.3); /* Sage green dashed line */
  border-radius: 50%; /* Creates a smooth sweeping curve */
  border-image: none;
  transform: rotate(15deg);
  opacity: 0.8;
  filter: none;
}

/* Header Area */
.nfs-header {
  text-align: center;
  margin-bottom: 90px;
  position: relative;
  z-index: 2;
}

/* Editorial Tag */
.nfs-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(94, 122, 99, 0.1); /* Sage tint */
  color: var(--accent, #5e7a63);
  border: 1px solid rgba(94, 122, 99, 0.2);
  padding: 6px 16px;
  border-radius: 9999px; /* Soft pill shape */
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  box-shadow: none; /* No glow */
}

.nfs-badge i {
  margin-right: 8px;
  font-size: 14px;
}

/* Classic Serif Typography */
.nfs-title {
  color: var(--text, #2d2a26);
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  text-shadow: none;
}

.nfs-subtitle {
  color: var(--text-muted, #6b6661);
  font-size: 18px;
  font-weight: 400;
  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 Minimalist Surface */
.nfs-card {
  background-color: var(--surface, #ffffff);
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  padding: 65px 24px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Grounded, realistic shadow */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nfs-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 122, 99, 0.3); /* Subtle sage border on hover */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Floating Icon Wrapper - Clean White Circle */
.nfs-icon-wrapper {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--surface, #ffffff);
  border-radius: 50%; /* Perfect circle */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Gentle lift */
  border: 1px solid var(--border, #e8e2d5);
  transition: all 0.4s ease;
}

.nfs-card:hover .nfs-icon-wrapper {
  border-color: var(--accent, #5e7a63);
  box-shadow: 0 8px 20px rgba(94, 122, 99, 0.1);
}

/* Decorative Tech Ring - Delicate Outer Stroke */
.nfs-icon-ring {
  position: absolute;
  width: 90px; /* Slightly larger than wrapper */
  height: 90px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--border, #e8e2d5);
  border-bottom-color: var(--border, #e8e2d5);
  transform: rotate(0deg);
  opacity: 0.5;
  transition:
    transform 0.8s ease,
    opacity 0.4s ease;
}

.nfs-card:hover .nfs-icon-ring {
  transform: rotate(180deg); /* Slow, elegant spin */
  opacity: 1;
  border-top-color: rgba(94, 122, 99, 0.3);
  border-bottom-color: rgba(94, 122, 99, 0.3);
  box-shadow: none;
}

/* Inner Icon */
.nfs-icon-inner {
  font-size: 28px;
  color: var(--ring-color, var(--primary, #c25e4c)); /* Default Terracotta */
  z-index: 2;
  text-shadow: none; /* Removed neon glow */
}

.nfs-card-title {
  color: var(--text, #2d2a26);
  font-size: 18px;
  font-weight: 600;
  text-transform: none; /* Editorial natural casing */
  letter-spacing: normal;
  margin-bottom: 12px;
}

.nfs-card-text {
  color: var(--text-muted, #6b6661);
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 24px;
}

/* Arrow Button - Soft Circular Action */
.nfs-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%; /* Circle */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg, #f7f5f0);
  color: var(--text-muted, #6b6661);
  border: 1px solid var(--border, #e8e2d5);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.nfs-arrow-btn:hover {
  background-color: var(--primary, #c25e4c); /* Terracotta fill */
  color: #ffffff;
  border-color: var(--primary, #c25e4c);
  box-shadow: 0 4px 12px rgba(194, 94, 76, 0.2);
  transform: translateY(-2px);
}

/* Bottom Trust Bar - Clean Editorial Panel */
.nfs-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface, #ffffff);
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 12px;
  padding: 24px 40px;
  margin-top: 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

/* Elegant top accent line replacing the neon stream */
.nfs-trust-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent, #5e7a63); /* Sage green top border */
  opacity: 1;
}

.nfs-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text, #2d2a26);
  font-size: 14px;
  font-weight: 500;
  text-transform: none; /* Removed harsh uppercase */
  letter-spacing: 0.02em;
}

.nfs-trust-item i {
  color: var(--accent, #5e7a63);
  font-size: 20px;
  text-shadow: none;
}

.nfs-trust-divider {
  width: 1px;
  height: 24px;
  background-color: var(--border, #e8e2d5); /* Soft structural divider */
}

/* =========================================
           RESPONSIVE MEDIA QUERIES
           ========================================= */

@media (max-width: 1200px) {
  .nfs-cards-container {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 70px;
  }
  .nfs-title {
    font-size: 42px;
  }
}

@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: 30px;
    gap: 20px;
  }
  .nfs-trust-item {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .nfs-cards-container {
    grid-template-columns: 1fr;
    row-gap: 80px;
  }
  .nfs-title {
    font-size: 32px;
  }
  .nfs-subtitle {
    font-size: 16px;
  }
  .nfs-features-section {
    padding: 60px 15px;
  }
  .nfs-decor-plane,
  .nfs-plane-path {
    display: none;
  }
}

/* Category Section Starts */
/* =====================================================
   CATEGORY SECTION — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.nc-dark-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body, "Inter", "Helvetica Neue", sans-serif);
}

/* Full Width Wrapper - Warm cream with a subtle, organic dot texture */
.nc-dark-section {
  background-color: var(--bg, #f7f5f0);
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.08) 1px,
    transparent 1px
  );
  background-size: 24px 24px; /* Tighter, more subtle than a tech grid */
  background-position: center center;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--border, #e8e2d5);
  position: relative;
}

/* Header Area */
.nc-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 90px;
  position: relative;
  z-index: 2;
}

/* Overline - Refined Editorial Kicker */
.nc-overline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--accent, #5e7a63); /* Sage green */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: none; /* Removed neon glow */
}

/* Replaced glowing line with a solid, elegant dash */
.nc-line {
  height: 1px;
  width: 40px;
  background: var(--accent, #5e7a63);
  box-shadow: none;
}

/* Main Titles - Classic Serif */
.nc-title {
  color: var(--text, #2d2a26);
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  text-shadow: none;
}

/* Removed neon gradient, replaced with Terracotta emphasis */
.nc-title-blue {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentcolor;
  color: var(--primary, #c25e4c);
  text-shadow: none;
}

.nc-subtitle {
  color: var(--text-muted, #6b6661);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: normal;
  font-weight: 400;
}

/* Grid Layout for Cards */
.nc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; /* Slightly wider gap for breathing room */
  width: 100%;
  max-width: 1400px;
  margin-bottom: 60px;
  z-index: 2;
}

/* Individual Card - Clean White Surface */
.nc-card {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  padding: 55px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Elegant easing */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Realistic shadow */
}

/* Removed the glowing top pseudo-element */
.nc-card::before {
  display: none;
}

.nc-card:hover {
  border-color: rgba(94, 122, 99, 0.3); /* Sage border tint on hover */
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Floating Top Icon - Clean White Circle */
.nc-icon-wrapper {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px; /* Slightly larger */
  height: 54px;
  background-color: var(--surface, #ffffff);
  border-radius: 50%; /* Perfect circle */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border, #e8e2d5);
  color: var(--accent, #5e7a63);
  font-size: 20px;
  /* Removed heavy cutout shadow, replaced with a gentle lift */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.nc-card:hover .nc-icon-wrapper {
  background-color: var(--primary, #c25e4c);
  color: #fff;
  border-color: var(--primary, #c25e4c);
  box-shadow: 0 8px 20px rgba(194, 94, 76, 0.2);
  transform: translateX(-50%) translateY(-4px);
}

/* Card Image Container - Soft Grounding Shadow */
.nc-card-img-container {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  /* Natural shadow replacing the neon hologram effect */
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
  transition: all 0.4s ease;
}

.nc-card:hover .nc-card-img-container {
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.12));
  transform: translateY(-5px);
}

.nc-card-img-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Card Text Content */
.nc-card-title {
  color: var(--text, #2d2a26);
  font-size: 18px;
  font-weight: 600;
  text-transform: none; /* Editorial natural casing */
  letter-spacing: normal;
  margin-bottom: 12px;
}

.nc-card-desc {
  color: var(--text-muted, #6b6661);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Shop Now Link - Elegant Arrow Action */
.nc-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent, #5e7a63); /* Sage green */
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: none; /* Removed shouting uppercase */
  letter-spacing: 0.02em;
  transition: all 0.3s;
}

.nc-shop-link:hover {
  color: var(--primary, #c25e4c); /* Terracotta */
  text-shadow: none;
}

.nc-link-circle {
  width: 32px;
  height: 32px;
  background-color: var(--bg, #f7f5f0);
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 50%; /* Circle */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #5e7a63);
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nc-shop-link:hover .nc-link-circle {
  background-color: var(--primary, #c25e4c);
  color: #ffffff;
  border-color: var(--primary, #c25e4c);
  box-shadow: 0 4px 10px rgba(194, 94, 76, 0.2);
  transform: translateX(4px);
}

/* Bottom "View All" Button - Soft Pill */
.nc-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--surface, #ffffff);
  color: var(--text, #2d2a26);
  border: 1px solid var(--border, #e8e2d5);
  padding: 14px 36px;
  border-radius: 9999px; /* Pill shape */
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  z-index: 2;
}

.nc-view-all-btn i.bi-grid-1x2 {
  color: var(--accent, #5e7a63);
  font-size: 16px;
}

.nc-view-all-btn i.bi-arrow-right {
  color: var(--text-muted, #6b6661);
  transition: transform 0.3s;
}

.nc-view-all-btn:hover {
  background-color: var(--primary, #c25e4c); /* Terracotta fill */
  border-color: var(--primary, #c25e4c);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(194, 94, 76, 0.2);
  transform: translateY(-2px);
}

.nc-view-all-btn:hover i.bi-grid-1x2,
.nc-view-all-btn:hover i.bi-arrow-right {
  color: #ffffff;
}

.nc-view-all-btn:hover i.bi-arrow-right {
  transform: translateX(6px);
}

/* =========================================
           RESPONSIVE MEDIA QUERIES
           ========================================= */

@media (max-width: 1200px) {
  .nc-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px; /* Adjusted for icon spacing */
  }
}

@media (max-width: 768px) {
  .nc-dark-section {
    padding: 80px 20px;
  }
  .nc-grid {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
  .nc-title {
    font-size: clamp(32px, 8vw, 42px);
  }
  .nc-subtitle {
    font-size: 16px;
  }
  .nc-card {
    padding: 50px 25px 25px;
  }
}

/* =====================================================
   PRODUCTS — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.products-modern {
  background: var(--bg, #f7f5f0); /* Warm cream background */
  padding: 100px 0;
  border-top: 1px solid var(--border, #e8e2d5);
}

/* ================= HEADER ================= */

.products-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
  position: relative;
}

/* eyebrow - Refined Editorial Kicker */
.products-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent, #5e7a63); /* Sage green */
  margin-bottom: 16px;
  text-shadow: none; /* Removed neon glow */
}

/* heading - Classic Serif */
.products-modern-head h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  text-transform: none; /* Natural editorial casing */
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text, #2d2a26);
  line-height: 1.2;
  position: relative;
  text-shadow: none;
}

/* underline accent - Delicate Terracotta Line */
.products-modern-head h2::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--primary, #c25e4c);
  display: block;
  margin: 24px auto 0;
  border-radius: 2px;
  box-shadow: none;
}

/* paragraph */
.products-modern-head p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  max-width: 600px;
  margin: 20px auto 0;
  font-weight: 400;
}

/* ================= 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: 9999px; /* Soft pill shape */
  border: 1px solid var(--border, #e8e2d5);
  background: var(--surface, #ffffff);
  color: var(--text-muted, #6b6661);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 500;
  text-transform: none; /* Natural casing */
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.products-modern-tabs .tab-btn:hover {
  border-color: var(--accent, #5e7a63);
  color: var(--accent, #5e7a63);
  box-shadow: 0 4px 12px rgba(94, 122, 99, 0.08);
  transform: translateY(-2px);
}

.products-modern-tabs .tab-btn.active {
  background: var(--primary, #c25e4c);
  color: #ffffff;
  border-color: var(--primary, #c25e4c);
  box-shadow: 0 6px 16px rgba(194, 94, 76, 0.2);
}

/* ================= GRID ================= */

.products-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= CARD ================= */

.product-modern-card {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Realistic grounding shadow */
}

.product-modern-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 122, 99, 0.3); /* Subtle sage border on hover */
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

/* ================= IMAGE ================= */

.product-modern-image {
  position: relative;
  padding: 40px 30px;
  background: var(--bg, #f7f5f0); /* Very soft interior background */
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--border, #e8e2d5);
}

.product-modern-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  /* Natural shadow replacing neon glow */
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.06));
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
  mix-blend-mode: darken;
}

.product-modern-card:hover .product-modern-image img {
  transform: scale(1.05);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

/* Badge - Clean Tag */
.product-modern-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(194, 94, 76, 0.1); /* Soft terracotta tint */
  color: var(--primary, #c25e4c);
  border: 1px solid rgba(194, 94, 76, 0.2);
  font-family: var(--font-body, sans-serif);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 9999px; /* Pill */
  box-shadow: none;
  z-index: 2;
}

/* Rating - Elegant Pill */
.product-modern-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  color: var(--text, #2d2a26);
  backdrop-filter: none;
  border-radius: 9999px; /* Pill */
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  gap: 6px;
  align-items: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-modern-rating i {
  color: #eab308; /* Soft golden yellow */
  text-shadow: none;
}

/* ================= BODY ================= */

.product-modern-body {
  padding: 24px 24px 16px;
  flex-grow: 1;
  background-color: var(--surface, #ffffff);
}

.product-modern-category {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted, #6b6661);
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 8px;
  display: block;
}

.product-modern-body h3 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text, #2d2a26);
  text-transform: none; /* Natural casing */
  letter-spacing: normal;
  margin: 0 0 10px;
  transition: color 0.3s ease;
}

.product-modern-card:hover .product-modern-body h3 {
  color: var(--primary, #c25e4c); /* Terracotta hover */
  text-shadow: none;
}

.product-modern-desc {
  font-size: 14px;
  color: var(--text-muted, #6b6661);
  line-height: 1.6;
}

/* ================= FOOTER ================= */

.product-modern-footer {
  padding: 16px 24px 24px;
  border-top: none; /* Removed harsh border */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--surface, #ffffff);
  transition: all 0.3s ease;
}

.product-modern-card:hover .product-modern-footer {
  background-color: var(--surface, #ffffff);
}

.product-modern-footer strong {
  font-size: 20px;
  font-weight: 600;
  color: var(--text, #2d2a26);
  font-family: var(--font-body, "Inter", sans-serif); /* Clean price */
}

.product-modern-cta {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent, #5e7a63); /* Sage green */
  text-transform: none; /* Natural casing */
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-modern-card:hover .product-modern-cta {
  color: var(--primary, #c25e4c); /* Terracotta */
  text-shadow: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .products-modern-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-modern-head h2 {
    font-size: 32px;
  }
  .products-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-modern-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.about-modern {
  background-color: var(--bg, #f7f5f0); /* Warm cream */
  /* Subtle, elegant light wash replacing the neon glow */
  background-image: radial-gradient(
    circle at 0% 50%,
    rgba(255, 255, 255, 0.6) 0%,
    transparent 50%
  );
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border, #e8e2d5);
  border-bottom: 1px solid var(--border, #e8e2d5);
}

/* 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;
}

/* =====================================================
   LEFT CONTENT — EDITORIAL PROSE
===================================================== */

.about-modern-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent, #5e7a63); /* Sage green */
  margin-bottom: 16px;
  display: inline-block;
  text-shadow: none; /* Removed neon glow */
  position: relative;
}

/* Delicate line next to eyebrow */
.about-modern-eyebrow::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 1px;
  background: var(--accent, #5e7a63);
  margin-right: 12px;
  box-shadow: none;
}

.about-modern-content h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.15;
  font-weight: 600;
  text-transform: none; /* Natural editorial casing */
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

.about-modern-lead {
  font-size: 20px; /* Slightly larger for editorial lead */
  font-weight: 400;
  color: var(--text, #2d2a26);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 620px;
  letter-spacing: normal;
  border-left: 2px solid var(--primary, #c25e4c); /* Terracotta accent line */
  padding-left: 20px;
}

.about-modern-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted, #6b6661);
  margin-bottom: 16px;
  max-width: 640px;
  letter-spacing: normal;
}

/* actions */

.about-modern-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

/* =====================================================
   RIGHT FEATURE CARDS — REFINED METRICS
===================================================== */

.about-modern-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  position: relative;
}

/* card - Light, Minimalist Surface */

.about-card {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 20px; /* Soft organic corners */
  padding: 40px 30px;
  border: 1px solid var(--border, #e8e2d5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft, realistic shadow */
}

/* Elegant Top Accent on Cards replacing the neon pulse */
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--surface, #ffffff);
  transition: all 0.4s ease;
}

/* hover */

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 122, 99, 0.3); /* Subtle sage border on hover */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.about-card:hover::before {
  background: var(--accent, #5e7a63); /* Sage accent line appears on hover */
  box-shadow: none;
}

/* number - Classic Serif Metric */

.about-card strong {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--primary, #c25e4c); /* Terracotta */
  display: block;
  margin-bottom: 4px;
  text-shadow: none;
}

/* title - Metric Label */

.about-card span {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--text, #2d2a26);
  display: block;
  margin-bottom: 12px;
  text-transform: none; /* Removed heavy uppercase */
  letter-spacing: 0.02em;
}

/* text */

.about-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  margin: 0;
}

/* =====================================================
   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: clamp(32px, 8vw, 42px);
  }

  .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 — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.why-modern {
  background: var(--bg, #f7f5f0); /* Warm cream background */
  padding: 120px 0;
  border-top: 1px solid var(--border, #e8e2d5);
  position: relative;
}

/* Optional subtle background grid effect converted to elegant faint dot pattern */
.why-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(94, 122, 99, 0.08) 1px,
    /* Faint sage dots */ transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}

/* =====================================================
   HEADER — EDITORIAL STYLE
===================================================== */

.why-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.why-modern-head h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  text-transform: none; /* Natural editorial casing */
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text, #2d2a26);
  line-height: 1.2;
  position: relative;
  text-shadow: none; /* Removed neon shadow */
}

/* underline accent - Delicate Terracotta Line */
.why-modern-head h2::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--primary, #c25e4c);
  display: block;
  margin: 24px auto 0;
  border-radius: 2px; /* Soft edges */
  box-shadow: none;
}

.why-modern-head p {
  font-size: 18px; /* Slightly larger for editorial readability */
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  max-width: 600px;
  margin: 20px auto 0;
  font-weight: 400;
}

/* =====================================================
   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;
}

/* =====================================================
   CARD — MINIMALIST SURFACE
===================================================== */

.why-modern-card {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 20px; /* Soft organic corners */
  border: 1px solid var(--border, #e8e2d5);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft grounding shadow */
}

/* Hover Accent Line */
.why-modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: all 0.4s ease;
}

.why-modern-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 122, 99, 0.3); /* Gentle sage border tint */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.why-modern-card:hover::before {
  background: var(--accent, #5e7a63); /* Solid sage top accent */
  box-shadow: none;
}

/* icon - Clean Circular Badge */

.why-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Perfect circles replacing square nodes */
  background: rgba(94, 122, 99, 0.1); /* Soft sage tint */
  border: 1px solid rgba(94, 122, 99, 0.2);
  color: var(--accent, #5e7a63);
  font-size: 22px;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

/* Fill the icon when the card is hovered */
.why-modern-card:hover .why-icon {
  background: var(--primary, #c25e4c); /* Shift to Terracotta */
  border-color: var(--primary, #c25e4c);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(194, 94, 76, 0.2);
  transform: translateY(
    -4px
  ); /* Gentle lift instead of a terminal shake/rotate */
}

/* title */

.why-modern-card h3 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 22px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: normal;
  margin-bottom: 12px;
  color: var(--text, #2d2a26);
  transition: color 0.3s ease;
}

.why-modern-card:hover h3 {
  color: var(--primary, #c25e4c); /* Terracotta emphasis on hover */
  text-shadow: none;
}

/* text */

.why-modern-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  margin: 0;
}

/* =====================================================
   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: clamp(32px, 8vw, 42px);
  }

  .why-modern-card {
    padding: 30px 24px;
  }
}

/* =====================================================
   TESTIMONIALS — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.testimonials-modern {
  background: var(--bg, #f7f5f0); /* Warm cream background */
  padding: 120px 0;
  border-top: 1px solid var(--border, #e8e2d5);
  position: relative;
}

/* =====================================================
   HEADER — EDITORIAL STYLE
===================================================== */

.testimonials-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.testimonials-modern-head h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  text-transform: none; /* Natural editorial casing */
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text, #2d2a26);
  line-height: 1.2;
  position: relative;
  text-shadow: none; /* Removed neon shadow */
}

/* underline accent - Delicate Sage Line */
.testimonials-modern-head h2::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--accent, #5e7a63);
  display: block;
  margin: 24px auto 0;
  border-radius: 2px; /* Soft edges */
  box-shadow: none;
}

.testimonials-modern-head p {
  font-size: 18px; /* Slightly larger for editorial readability */
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  max-width: 600px;
  margin: 20px auto 0;
  font-weight: 400;
}

/* =====================================================
   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;
}

/* =====================================================
   CARD — MINIMALIST SURFACE
===================================================== */

.testimonial-modern-card {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 20px; /* Soft organic corners */
  border: 1px solid var(--border, #e8e2d5);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft grounding shadow */
  display: flex;
  flex-direction: column;
}

/* Hover Accent Line */
.testimonial-modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: all 0.4s ease;
}

.testimonial-modern-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 122, 99, 0.3); /* Gentle sage border tint */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-modern-card:hover::before {
  background: var(--primary, #c25e4c); /* Solid terracotta top accent */
  box-shadow: none;
}

/* stars - Classic Gold */

.testimonial-stars {
  font-size: 14px;
  letter-spacing: 4px;
  color: #eab308; /* Soft golden yellow */
  margin-bottom: 24px;
  text-shadow: none; /* Removed glowing effect */
}

/* quote - Editorial Prose */

.testimonial-modern-card p {
  font-family: var(
    --font-heading,
    "Playfair Display",
    serif
  ); /* Elegant serif for quotes */
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted, #6b6661);
  margin-bottom: 30px;
  font-style: italic;
  flex-grow: 1;
  border-left: 2px solid var(--border, #e8e2d5); /* Subtle structural line */
  padding-left: 20px;
}

/* user */

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border, #e8e2d5); /* Soft natural border */
  padding-top: 20px;
}

/* avatar - Circular Monogram */

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%; /* Perfect circles replacing square nodes */
  background: rgba(194, 94, 76, 0.1); /* Soft terracotta tint */
  border: 1px solid rgba(194, 94, 76, 0.2);
  color: var(--primary, #c25e4c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-modern-card:hover .testimonial-avatar {
  background: var(--primary, #c25e4c);
  color: #ffffff;
  border-color: var(--primary, #c25e4c);
  transform: scale(1.05); /* Gentle scale instead of harsh pop */
}

.testimonial-user strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text, #2d2a26);
  text-transform: none; /* Natural casing */
  letter-spacing: normal;
  margin-bottom: 2px;
}

.testimonial-user span {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent, #5e7a63); /* Sage green */
  text-transform: none;
  letter-spacing: 0.02em;
}

/* =====================================================
   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: clamp(32px, 8vw, 42px);
  }

  .testimonials-modern-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-modern-card {
    padding: 30px 24px;
  }
}

/* =====================================================
   RECENTLY VIEWED — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.recent-modern {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 100px 0;
  border-top: 1px solid var(--border, #e8e2d5); /* Soft natural boundary */
  position: relative;
}

/* ================= HEADER ================= */

.recent-modern-head {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.recent-modern-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent, #5e7a63); /* Sage green */
  margin-bottom: 16px;
  text-shadow: none; /* Removed neon glow */
}

.recent-modern-head h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

.recent-modern-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: normal;
}

/* ================= GRID ================= */

.recent-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ================= CARD (EDITORIAL ITEM) ================= */

.recent-item {
  background: transparent;
  /* Delicate structural line replacing the tech divider */
  border-top: 1px solid var(--border, #e8e2d5);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recent-item:hover {
  transform: translateY(-4px);
  border-top-color: var(--primary, #c25e4c); /* Shifts to terracotta on hover */
  box-shadow: none; /* Removed neon top glow */
}

/* IMAGE */

.recent-item-image {
  background: var(--surface, #ffffff); /* Clean white */
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02); /* Very soft grounding shadow */
}

.recent-item:hover .recent-item-image {
  border-color: rgba(94, 122, 99, 0.2); /* Sage border tint */
  background: var(--surface, #ffffff);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.recent-item-image img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.recent-item:hover .recent-item-image img {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
}

/* INFO */

.recent-item h3 {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: normal;
  line-height: 1.4;
  color: var(--text, #2d2a26);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.recent-item:hover h3 {
  color: var(--primary, #c25e4c); /* Terracotta hover */
  text-shadow: none;
}

.recent-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted, #6b6661);
  margin-bottom: 16px;
}

/* FOOTER */

.recent-item-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border, #e8e2d5); /* Solid elegant line */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s ease;
}

.recent-item:hover .recent-item-footer {
  border-top-color: rgba(94, 122, 99, 0.3);
}

.recent-item-footer strong {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text, #2d2a26);
}

.recent-item-footer span {
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--accent, #5e7a63); /* Sage action text */
  position: relative;
  transition: color 0.3s ease;
}

.recent-item:hover .recent-item-footer span {
  text-shadow: none;
  color: var(--primary, #c25e4c);
}

.recent-item-footer span::after {
  content: "→";
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.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: clamp(28px, 8vw, 36px);
  }

  .recent-modern-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .recent-item-image img {
    height: 160px;
  }
}

/* =====================================================
   RECENTLY VIEWED — VARIANT 2 (.recent-soft)
===================================================== */

.recent-soft {
  background: var(--bg, #f7f5f0);
  padding: 100px 0;
  border-top: 1px solid var(--border, #e8e2d5);
  position: relative;
}

/* Subtle elegant dot pattern replacing the laser grid */
.recent-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

/* ================= HEADER ================= */

.recent-soft-head {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
  border-left: 2px solid var(--primary, #c25e4c); /* Terracotta accent line */
  padding-left: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.recent-soft-head h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

.recent-soft-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  max-width: 560px;
  letter-spacing: normal;
}

/* ================= GRID ================= */

.recent-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= TILE ================= */

.recent-card {
  background: transparent;
  border-top: 1px solid var(--border, #e8e2d5); /* Structural line */
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recent-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--accent, #5e7a63); /* Sage accent */
  box-shadow: none; /* Removed neon scanning glow */
}

/* ================= IMAGE ================= */

.recent-card-img {
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.recent-card:hover .recent-card-img {
  border-color: rgba(94, 122, 99, 0.2);
  background: var(--surface, #ffffff);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.recent-card-img img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
  mix-blend-mode: darken;
}

.recent-card:hover .recent-card-img img {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
}

/* ================= NAME ================= */

.recent-card h3 {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: normal;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text, #2d2a26);
  transition: color 0.3s ease;
}

.recent-card:hover h3 {
  color: var(--primary, #c25e4c);
  text-shadow: none;
}

/* ================= RATING ================= */

.recent-card-rating {
  font-size: 13px;
  letter-spacing: 2px;
  color: #eab308; /* Soft gold stars */
  margin-bottom: 16px;
  text-shadow: none; /* Removed 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, #e8e2d5); /* Solid line */
  transition: border-color 0.3s ease;
}

.recent-card:hover .recent-card-footer {
  border-top-color: rgba(194, 94, 76, 0.3); /* Terracotta tint */
}

.recent-card-footer strong {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text, #2d2a26);
}

.recent-view-btn {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--accent, #5e7a63);
  position: relative;
  transition: all 0.3s ease;
}

.recent-card:hover .recent-view-btn {
  text-shadow: none;
  color: var(--primary, #c25e4c);
}

.recent-view-btn::after {
  content: "→";
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recent-card:hover .recent-view-btn::after {
  transform: translateX(4px);
}

/* ================= 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, #c25e4c);
    padding-left: 0;
    padding-top: 16px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .recent-soft-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .recent-card-img img {
    height: 160px;
  }
}

/* =====================================================
   FOOTER — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.footer-blue {
  background: var(--bg, #f7f5f0); /* Warm cream */
  color: var(--text, #2d2a26);
  padding-top: 80px;
  border-top: 1px solid var(--border, #e8e2d5); /* Soft, natural boundary */
  position: relative;
  overflow: hidden;
}

/* Removed the glowing light pseudo-element 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;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   BRAND
===================================================== */

.footer-brand img {
  width: 280px; /* Slightly refined size */
  margin-bottom: 24px;
  filter: none; /* Removed neon drop-shadow */
}

.footer-brand p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  margin-bottom: 24px;
  letter-spacing: normal;
}

/* contact */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact strong {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent, #5e7a63); /* Sage green */
  display: block;
}

.footer-contact a {
  color: var(--text, #2d2a26);
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary, #c25e4c); /* Terracotta */
  text-shadow: none;
}

/* =====================================================
   LINKS
===================================================== */

.footer-links h4 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 18px;
  font-weight: 600;
  text-transform: none; /* Natural editorial casing */
  letter-spacing: normal;
  margin-bottom: 20px;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

.footer-links a {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--text-muted, #6b6661);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
  color: var(--primary, #c25e4c);
  text-decoration: none;
  text-shadow: none;
  transform: translateX(4px); /* Soft editorial indent */
}

/* =====================================================
   NEWSLETTER
===================================================== */

.footer-newsletter h4 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 12px;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

.footer-newsletter p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted, #6b6661);
  margin-bottom: 20px;
}

/* form */

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  color: var(--text, #2d2a26);
  border-radius: 9999px; /* Soft pill shape */
  font-size: 15px;
  font-family: var(--font-body, "Inter", sans-serif); /* Clean sans-serif */
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.newsletter-form input:focus {
  outline: none;
  background: var(--surface, #ffffff);
  border-color: var(--accent, #5e7a63); /* Sage focus */
  box-shadow: 0 0 0 3px rgba(94, 122, 99, 0.1);
}

.newsletter-form input::placeholder {
  color: var(--text-faint, #a6a19a);
}

.newsletter-form button {
  background: var(--primary, #c25e4c); /* Terracotta */
  color: #ffffff;
  border: 1px solid var(--primary, #c25e4c);
  padding: 12px 24px;
  font-weight: 500;
  text-transform: none; /* Natural casing */
  letter-spacing: 0.02em;
  border-radius: 9999px; /* Pill */
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-form button:hover {
  background: var(--primary-dark, #9e4a3b);
  border-color: var(--primary-dark, #9e4a3b);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(194, 94, 76, 0.2);
  transform: translateY(-2px);
}

.newsletter-note {
  font-size: 12px;
  color: var(--text-faint, #a6a19a);
  text-transform: none; /* Removed shouting uppercase */
  letter-spacing: normal;
}

/* =====================================================
   DIVIDER
===================================================== */

.footer-divider {
  height: 1px;
  background: var(
    --border,
    #e8e2d5
  ); /* Solid, elegant line replacing gradient */
  margin: 60px 20px 30px; /* Added slight side margins to match container */
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  border: none;
  position: relative;
  z-index: 2;
}

/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-company strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  color: var(--text, #2d2a26);
  text-transform: none;
}

.footer-company span {
  font-size: 14px;
  color: var(--text-muted, #6b6661);
  letter-spacing: normal;
}

.footer-copy {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  color: var(--text-muted, #6b6661);
  letter-spacing: normal;
  text-transform: none; /* Removed terminal 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 — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.about-intro {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border, #e8e2d5);
}

/* Subtle, elegant light wash replacing the neon node network */
.about-intro::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.6) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* ================= LAYOUT ================= */

.about-intro-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* Elegant editorial reading pane */
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  padding: 70px 80px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); /* Soft grounding shadow */
  backdrop-filter: none;
}

/* Elegant top accent line replacing the neon glow */
.about-intro-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent, #5e7a63); /* Sage green */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: none;
}

/* ================= CONTENT ================= */

.about-intro-text h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  text-transform: none; /* Natural casing */
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  color: var(--text, #2d2a26);
  text-shadow: none; /* Removed neon shadow */
  position: relative;
}

/* Delicate Terracotta Underline */
.about-intro-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--primary, #c25e4c);
  margin-top: 24px;
  box-shadow: none;
}

/* Lead text - Editorial Intro Style */
.about-intro-lead {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text, #2d2a26); /* Deep espresso */
  margin-bottom: 24px;
  max-width: 760px;
  letter-spacing: normal;
  text-shadow: none;
}

/* Removed the terminal chevron prompt entirely */
.about-intro-lead::before {
  display: none;
}

.about-intro-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted, #6b6661);
  margin-bottom: 20px;
  max-width: 740px;
  letter-spacing: normal;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .about-intro-inner {
    padding: 50px 40px;
  }
}

@media (max-width: 600px) {
  .about-intro {
    padding: 80px 15px;
  }

  .about-intro-inner {
    padding: 30px 20px;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .about-intro-inner::before {
    display: none; /* Hide the top accent line when the card wrapper disappears on mobile */
  }

  .about-intro-text h2 {
    font-size: clamp(32px, 8vw, 42px);
  }

  .about-intro-lead {
    font-size: 18px;
  }
}

/* =====================================================
   CONTACT PAGE — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.contact-page {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border, #e8e2d5); /* Soft structural boundary */
}

/* Subtle, elegant organic dot pattern replacing the data grid */
.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

/* ================= LAYOUT ================= */

.contact-page-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: start;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= LEFT CONTENT ================= */

.contact-info h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  text-transform: none; /* Natural editorial casing */
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text, #2d2a26);
  text-shadow: none; /* Removed neon shadow */
}

/* Elegant Accent under title replacing the neon line */
.contact-info h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--primary, #c25e4c); /* Terracotta */
  margin-top: 24px;
  box-shadow: none;
}

.contact-lead {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 20px;
  line-height: 1.7;
  color: var(--text, #2d2a26); /* Deep espresso */
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 520px;
  text-shadow: none;
}

.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, #6b6661);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}

/* Elegant editorial dash replacing the terminal bracket [+] */
.contact-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent, #5e7a63); /* Sage green */
  font-family: var(--font-heading, serif);
  font-weight: 600;
  text-shadow: none;
}

/* ================= DETAILS ================= */

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  border-top: 1px solid var(--border, #e8e2d5); /* Solid line instead of dashed */
  padding-top: 32px;
}

.contact-details strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: 0.02em;
  color: var(--text, #2d2a26);
  margin-bottom: 6px;
}

.contact-details span {
  font-family: var(
    --font-body,
    "Inter",
    sans-serif
  ); /* Clean readable text instead of monospace */
  font-size: 15px;
  color: var(--text-muted, #6b6661);
}

/* ================= FORM (EDITORIAL CARD) ================= */

.contact-form-card {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); /* Grounding shadow */
  position: relative;
}

/* Top Accent Line replacing the scanner glow */
.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent, #5e7a63); /* Sage top accent */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: none;
}

.contact-form-card h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 28px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: normal;
  margin-bottom: 12px;
  color: var(--text, #2d2a26);
}

.contact-desc {
  font-size: 15px;
  color: var(--text-muted, #6b6661);
  margin-bottom: 32px;
  max-width: 420px;
  border-left: 2px solid var(--border, #e8e2d5); /* Subtle structural indicator */
  padding-left: 16px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px; /* Soft, modern form corners */
  border: 1px solid var(--border, #e8e2d5);
  font-size: 15px;
  font-family: var(--font-body, "Inter", sans-serif);
  margin-bottom: 20px;
  background: var(--bg, #f7f5f0); /* Very faint cream interior */
  color: var(--text, #2d2a26);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-faint, #a6a19a);
  text-transform: none; /* Removed shouting uppercase */
  letter-spacing: normal;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--surface, #ffffff);
  border-color: var(--accent, #5e7a63);
  box-shadow: 0 0 0 3px rgba(94, 122, 99, 0.1); /* Editorial focus ring */
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ROW */

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ================= SUCCESS (ELEGANT CONFIRMATION) ================= */

.contact-success {
  background: var(--surface, #ffffff);
  border: 1px solid rgba(94, 122, 99, 0.3); /* Soft sage border */
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

/* Removed the scanline animation entirely for a calm editorial feel */
.contact-success::after {
  display: none;
}

.contact-success h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 32px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--accent, #5e7a63); /* Sage emphasis */
  text-shadow: none;
}

.contact-success p {
  font-family: var(
    --font-body,
    "Inter",
    sans-serif
  ); /* Clean text instead of monospace */
  font-size: 16px;
  color: var(--text-muted, #6b6661);
  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 — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.faq-page {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border, #e8e2d5); /* Soft, natural boundary */
}

/* Subtle elegant organic dot pattern replacing the data grid */
.faq-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.faq-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* ================= GROUP ================= */

.faq-group {
  margin-bottom: 70px;
}

.faq-group h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 32px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  color: var(--text, #2d2a26);
  text-shadow: none; /* Removed neon shadow */
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Delicate accent line next to group header */
.faq-group h2::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: var(--border, #e8e2d5); /* Soft structural line */
}

/* ================= ITEM (EDITORIAL ROW) ================= */

.faq-item {
  border-top: 1px solid var(--border, #e8e2d5);
  padding: 0;
  transition: background 0.4s ease;
  border-radius: 12px; /* Prepared for active state */
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.4); /* Very subtle highlight */
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border, #e8e2d5);
}

/* ================= QUESTION ================= */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 20px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 18px;
  font-weight: 600;
  text-transform: none; /* Removed shouting uppercase */
  letter-spacing: normal;
  text-align: left;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: var(--text, #2d2a26);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary, #c25e4c); /* Terracotta hover */
  text-shadow: none;
  padding-left: 26px; /* Gentle editorial indent */
}

/* The Plus/Minus Icon - Soft Circular Badge */
.faq-question span {
  font-size: 18px;
  color: var(--accent, #5e7a63); /* Sage green */
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 50%; /* Perfect circle */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-question:hover span {
  background: var(--surface, #ffffff);
  border-color: var(--primary, #c25e4c);
  color: var(--primary, #c25e4c);
  box-shadow: 0 4px 12px rgba(194, 94, 76, 0.1);
}

/* ================= ANSWER (PROSE) ================= */

.faq-answer {
  display: none;
  padding: 0 20px 30px;
}

.faq-answer p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted, #6b6661);
  max-width: 760px;
  margin: 0;
  border-left: 2px solid var(--border, #e8e2d5); /* Subtle structural indicator */
  padding-left: 24px;
}

/* ================= ACTIVE STATE ================= */

.faq-item.active {
  background: var(
    --surface,
    #ffffff
  ); /* Solid white background for open items */
  border-color: transparent; /* Remove top border to let the card shape breathe */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin: 10px 0; /* Creates separation when open */
}

/* Fix adjacent borders when an item is active */
.faq-item.active + .faq-item {
  border-top-color: transparent;
}

.faq-item.active .faq-answer {
  display: block;
  animation: faqFadeIn 0.5s ease forwards;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Active Question */
.faq-item.active .faq-question {
  color: var(--primary, #c25e4c); /* Terracotta */
  text-shadow: none;
  padding-left: 20px; /* Reset the hover indent when active */
}

/* Active Node Icon */
.faq-item.active .faq-question span {
  transform: rotate(45deg); /* Rotates to an 'X' */
  background: var(--primary, #c25e4c);
  color: #ffffff;
  border-color: var(--primary, #c25e4c);
  box-shadow: 0 4px 12px rgba(194, 94, 76, 0.2);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .faq-page {
    padding: 80px 0;
  }

  .faq-group h2 {
    font-size: 26px;
  }

  .faq-question {
    font-size: 16px;
    padding: 22px 16px;
  }

  .faq-question:hover {
    padding-left: 20px;
  }

  .faq-item.active .faq-question {
    padding-left: 16px;
  }

  .faq-answer {
    padding: 0 16px 26px;
  }

  .faq-answer p {
    font-size: 15px;
    padding-left: 16px;
  }
}

/* =====================================================
   AUTH HERO — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.auth-x-hero {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border, #e8e2d5); /* Soft natural boundary */
  position: relative;
}

/* Subtle, elegant organic dot pattern replacing the data grid */
.auth-x-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.auth-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* EYEBROW - Editorial Kicker */

.auth-x-eyebrow {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent, #5e7a63); /* Sage green */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  text-shadow: none; /* Removed neon glow */
}

/* Replaced terminal brackets with an elegant em-dash */
.auth-x-eyebrow::before {
  content: "—";
  margin-right: 12px;
  color: var(--accent, #5e7a63);
}
.auth-x-eyebrow::after {
  display: none; /* Removed trailing bracket */
}

/* LEFT CONTENT */

.auth-x-hero-left h1 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.15;
  font-weight: 600;
  text-transform: none; /* Natural editorial casing */
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

.auth-x-hero-left h1 span {
  color: var(--primary, #c25e4c); /* Terracotta highlight */
  font-style: italic; /* Adds an editorial touch */
  text-shadow: none;
}

.auth-x-hero-left p {
  max-width: 520px;
  font-size: 18px; /* Slightly larger for readability */
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  border-left: 2px solid var(--border, #e8e2d5); /* Subtle structural line */
  padding-left: 20px;
}

/* RIGHT PANEL — CONTEXT CARDS */

.auth-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border, #e8e2d5); /* Solid line instead of dashed stream */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.auth-x-panel-item {
  background: var(--surface, #ffffff); /* Clean white surface */
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  padding: 24px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Grounding shadow */
}

/* Soft accent replacing the neon hover laser */
.auth-x-panel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent, #5e7a63); /* Sage accent */
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: none;
}

.auth-x-panel-item:hover {
  border-color: rgba(94, 122, 99, 0.3); /* Sage border tint */
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.auth-x-panel-item:hover::before {
  opacity: 1;
}

.auth-x-panel-item strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: normal;
  margin-bottom: 6px;
  color: var(--text, #2d2a26);
}

.auth-x-panel-item span {
  font-family: var(
    --font-body,
    "Inter",
    sans-serif
  ); /* Clean sans-serif replacing monospace */
  font-size: 14px;
  color: var(--text-muted, #6b6661);
  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;
    border-top: 1px solid var(--border, #e8e2d5);
    padding-left: 0;
    padding-top: 40px;
  }
}

@media (max-width: 600px) {
  .auth-x-hero {
    padding: 80px 0 60px;
  }

  .auth-x-hero-left h1 {
    font-size: clamp(32px, 8vw, 42px);
  }

  .auth-x-hero-left p {
    font-size: 16px;
  }

  .auth-x-panel-item {
    padding: 20px 24px;
  }
}

/* =====================================================
   AUTH BODY — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.auth-x {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 80px 0 120px;
}

.auth-x-body {
  display: flex;
  justify-content: center;
}

/* CARD - CLEAN EDITORIAL SURFACE */

.auth-x-card {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  width: 100%;
  max-width: 440px; /* Slightly wider for elegant spacing */
  border-radius: 20px; /* Soft organic corners */
  padding: 50px 42px;
  border: 1px solid var(--border, #e8e2d5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); /* Soft grounding shadow */
  position: relative;
}

/* Elegant Top Accent Line */
.auth-x-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary, #c25e4c); /* Terracotta accent */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: none; /* Removed neon glow */
}

/* HEADINGS */

.auth-x-card h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 32px;
  font-weight: 600;
  text-transform: none; /* Natural editorial casing */
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-align: center;
  color: var(--text, #2d2a26);
}

.auth-x-desc {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  color: var(--text-muted, #6b6661);
  margin-bottom: 35px;
  text-align: center;
  text-transform: none;
  letter-spacing: normal;
}

/* =====================================================
   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, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  color: var(--text, #2d2a26); /* Deep espresso */
}

.auth-x-field input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px; /* Soft modern inputs */
  border: 1px solid var(--border, #e8e2d5);
  font-size: 15px;
  font-family: var(--font-body, "Inter", sans-serif);
  background: var(--bg, #f7f5f0); /* Slight cream inset */
  color: var(--text, #2d2a26);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.auth-x-field input:focus {
  outline: none;
  background: var(--surface, #ffffff);
  border-color: var(--accent, #5e7a63); /* Sage focus */
  box-shadow: 0 0 0 3px rgba(94, 122, 99, 0.1);
}

/* =====================================================
   AUTH BUTTONS
===================================================== */

.auth-x-submit {
  margin-top: 10px;
  background: var(--primary, #c25e4c); /* Terracotta */
  color: #ffffff;
  padding: 16px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  border-radius: 9999px; /* Pill */
  border: 1px solid var(--primary, #c25e4c);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(194, 94, 76, 0.15);
}

.auth-x-submit:hover {
  background: var(--primary-dark, #9e4a3b);
  color: #ffffff;
  border-color: var(--primary-dark, #9e4a3b);
  box-shadow: 0 6px 20px rgba(194, 94, 76, 0.2);
  transform: translateY(-2px);
}

/* =====================================================
   AUTH META (Forgot Password, etc)
===================================================== */

.auth-x-meta {
  margin-top: 12px;
  text-align: right;
}

.auth-x-meta a {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  color: var(--text-muted, #6b6661);
  text-transform: none;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.auth-x-meta a:hover {
  color: var(--primary, #c25e4c);
  text-shadow: none;
}

/* DIVIDER */

.auth-x-divider {
  margin: 36px 0;
  text-align: center;
  position: relative;
}

.auth-x-divider span {
  background: var(--surface, #ffffff);
  padding: 0 16px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  color: var(--text-faint, #a6a19a);
  position: relative;
  z-index: 1;
}

.auth-x-divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: var(--border, #e8e2d5);
}

/* REGISTER CTA */

.auth-x-secondary {
  text-align: center;
}

.auth-x-secondary p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--text-muted, #6b6661);
}

.auth-x-outline-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 9999px; /* Pill */
  border: 1px solid var(--border, #e8e2d5);
  background: var(--surface, #ffffff);
  font-family: var(--font-body, "Inter", sans-serif);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 15px;
  color: var(--text, #2d2a26);
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.auth-x-outline-btn:hover {
  background: var(--bg, #f7f5f0);
  border-color: var(--accent, #5e7a63);
  color: var(--accent, #5e7a63);
  box-shadow: 0 4px 12px rgba(94, 122, 99, 0.08);
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  /* Retained structure from original for legacy classes */
  .auth-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .auth-x-hero-panel {
    border-left: none;
    border-top: 1px solid var(--border, #e8e2d5);
    padding-left: 0;
    padding-top: 40px;
  }

  .auth-x-hero-left h1 {
    font-size: 34px;
  }

  .auth-x-body {
    padding: 60px 20px 100px;
  }
}

@media (max-width: 480px) {
  .auth-x-card {
    padding: 40px 24px;
  }
}

/* =====================================================
   SIGNUP HERO — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.signup-x-hero {
  background: var(--bg, #f7f5f0); /* Warm cream background */
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border, #e8e2d5); /* Soft structural line */
  position: relative;
  overflow: hidden;
}

/* Subtle, elegant organic dot pattern replacing the data grid */
.signup-x-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.signup-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* EYEBROW - Editorial Kicker */

.signup-x-eyebrow {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent, #5e7a63); /* Sage green */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  text-shadow: none;
}

/* Replaced terminal prompt with an elegant em-dash */
.signup-x-eyebrow::before {
  content: "—";
  margin-right: 12px;
  color: var(--accent, #5e7a63);
  font-weight: 400;
}

/* LEFT CONTENT */

.signup-x-hero-left h1 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.15;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

.signup-x-hero-left h1 span {
  color: var(--primary, #c25e4c); /* Terracotta highlight */
  font-style: italic; /* Editorial touch */
  text-shadow: none;
}

.signup-x-hero-left p {
  max-width: 520px;
  font-size: 18px; /* Slightly larger for readability */
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  border-left: 2px solid var(--border, #e8e2d5); /* Gentle structural line */
  padding-left: 20px;
}

/* RIGHT PANEL — VALUE CONTEXT / SPECS */

.signup-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border, #e8e2d5); /* Solid line instead of dashed */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.signup-x-panel-item {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  padding: 24px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Grounding shadow */
}

/* Elegant accent replacing the hover laser */
.signup-x-panel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent, #5e7a63); /* Sage accent */
  box-shadow: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.signup-x-panel-item:hover {
  border-color: rgba(94, 122, 99, 0.3); /* Sage border tint */
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.signup-x-panel-item:hover::before {
  opacity: 1;
}

.signup-x-panel-item strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: normal;
  margin-bottom: 6px;
  color: var(--text, #2d2a26);
}

.signup-x-panel-item span {
  font-family: var(
    --font-body,
    "Inter",
    sans-serif
  ); /* Clean sans-serif replacing monospace */
  font-size: 14px;
  color: var(--text-muted, #6b6661);
  line-height: 1.6;
}

/* =====================================================
   SIGNUP BODY — EDITORIAL SURFACE
===================================================== */

.signup-x {
  background: var(--bg, #f7f5f0);
  padding: 80px 0 120px;
}

.signup-x-body {
  display: flex;
  justify-content: center;
}

/* CARD - CLEAN MODULE */

.signup-x-card {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  width: 100%;
  max-width: 460px; /* Slightly wider for elegance */
  border-radius: 20px; /* Organic radii */
  padding: 50px 42px;
  border: 1px solid var(--border, #e8e2d5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); /* Soft realistic shadow */
  position: relative;
}

/* Top Accent Line on Signup Card */
.signup-x-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary, #c25e4c); /* Terracotta */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: none;
}

/* HEADINGS */

.signup-x-card h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 32px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-align: center;
  color: var(--text, #2d2a26);
}

.signup-x-desc {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  color: var(--text-muted, #6b6661);
  margin-bottom: 35px;
  text-align: center;
  text-transform: none;
  letter-spacing: normal;
}

/* =====================================================
   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, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  color: var(--text, #2d2a26); /* Deep espresso */
}

.signup-x-field input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px; /* Soft modern form elements */
  border: 1px solid var(--border, #e8e2d5);
  font-size: 15px;
  font-family: var(--font-body, "Inter", sans-serif);
  background: var(--bg, #f7f5f0); /* Subtle inset */
  color: var(--text, #2d2a26);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.signup-x-field input::placeholder {
  color: var(--text-faint, #a6a19a);
  text-transform: none;
  letter-spacing: normal;
}

.signup-x-field input:focus {
  outline: none;
  background: var(--surface, #ffffff);
  border-color: var(--accent, #5e7a63); /* Sage focus */
  box-shadow: 0 0 0 3px rgba(94, 122, 99, 0.1); /* Editorial focus ring */
}

/* =====================================================
   SIGNUP BUTTON
===================================================== */

.signup-x-submit {
  margin-top: 10px;
  background: var(--primary, #c25e4c); /* Terracotta */
  color: #ffffff;
  padding: 16px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: 0.02em;
  border-radius: 9999px; /* Pill */
  border: 1px solid var(--primary, #c25e4c);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(194, 94, 76, 0.15);
}

.signup-x-submit:hover {
  background: var(--primary-dark, #9e4a3b);
  color: #ffffff;
  border-color: var(--primary-dark, #9e4a3b);
  box-shadow: 0 6px 20px rgba(194, 94, 76, 0.2);
  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, #e8e2d5);
    padding-left: 0;
    padding-top: 40px;
  }

  .signup-x-hero-left h1 {
    font-size: clamp(32px, 8vw, 42px);
  }

  .signup-x-body {
    padding: 60px 20px 100px;
  }
}

@media (max-width: 480px) {
  .signup-x-card {
    padding: 40px 24px;
  }
}

/* =====================================================
   DASHBOARD HERO — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.dash-x-hero {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border, #e8e2d5); /* Soft natural boundary */
  position: relative;
  overflow: hidden;
}

/* Subtle, elegant organic dot pattern replacing the data grid */
.dash-x-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.dash-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* EYEBROW - Editorial Kicker */

.dash-x-eyebrow {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent, #5e7a63); /* Sage green */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  text-shadow: none; /* Removed neon glow */
}

/* Replaced terminal message with an elegant em-dash */
.dash-x-eyebrow::before {
  content: "—";
  margin-right: 12px;
  color: var(--accent, #5e7a63);
  font-weight: 400;
}

/* LEFT CONTENT */

.dash-x-hero-left h1 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.15;
  font-weight: 600;
  text-transform: none; /* Natural editorial casing */
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

.dash-x-hero-left h1 span {
  color: var(--primary, #c25e4c); /* Terracotta highlight */
  font-style: italic; /* Editorial touch */
  text-shadow: none;
}

.dash-x-hero-left p {
  max-width: 520px;
  font-size: 18px; /* Slightly larger for readability */
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  border-left: 2px solid var(--border, #e8e2d5); /* Subtle structural line */
  padding-left: 20px;
}

/* HERO PANEL — SUMMARY DATA CARDS */

.dash-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border, #e8e2d5); /* Solid line instead of dashed */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.dash-x-panel-item {
  background: var(--surface, #ffffff); /* Clean white surface */
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  padding: 24px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Grounding shadow */
}

/* Soft accent replacing the neon hover laser */
.dash-x-panel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent, #5e7a63); /* Sage accent */
  box-shadow: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dash-x-panel-item:hover {
  border-color: rgba(94, 122, 99, 0.3); /* Sage border tint */
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.dash-x-panel-item:hover::before {
  opacity: 1;
}

.dash-x-panel-item strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: normal;
  margin-bottom: 6px;
  color: var(--text, #2d2a26);
}

.dash-x-panel-item span {
  font-family: var(
    --font-body,
    "Inter",
    sans-serif
  ); /* Clean sans-serif replacing monospace */
  font-size: 14px;
  color: var(--text-muted, #6b6661);
}

/* =====================================================
   DASHBOARD BODY
===================================================== */

.dash-x {
  background: var(--bg, #f7f5f0);
  padding: 80px 0 120px;
}

.dash-x-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   SIDEBAR — EDITORIAL 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, #e8e2d5); /* Solid line */
  margin-bottom: 24px;
}

.dash-x-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%; /* Perfect circle */
  background: rgba(194, 94, 76, 0.1); /* Soft terracotta tint */
  border: 1px solid rgba(194, 94, 76, 0.2);
  color: var(--primary, #c25e4c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 18px;
  font-weight: 600;
  box-shadow: none;
}

.dash-x-user-info strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  color: var(--text, #2d2a26);
  letter-spacing: normal;
  margin-bottom: 2px;
}

.dash-x-user-info span {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  color: var(--text-muted, #6b6661);
  letter-spacing: 0.02em;
}

/* NAV */

.dash-x-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-x-nav a {
  padding: 12px 16px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted, #6b6661);
  text-transform: none; /* Natural casing */
  letter-spacing: 0.02em;
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 8px 8px 0; /* Soften the background hover */
  transition: all 0.3s ease;
}

.dash-x-nav a:hover,
.dash-x-nav a.active {
  color: var(--primary, #c25e4c);
  border-left-color: var(--primary, #c25e4c);
  background: var(--surface, #ffffff);
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.dash-x-nav a.danger {
  color: #c25e4c; /* Soft terracotta for alerts */
}

.dash-x-nav a.danger:hover {
  border-left-color: #c25e4c;
  background: var(--surface, #ffffff);
  text-shadow: none;
}

/* =====================================================
   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, #e8e2d5); /* Structural separator */
  padding-top: 32px;
  position: relative;
}

.dash-x-card h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 24px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 24px;
  color: var(--text, #2d2a26);
}

/* =====================================================
   ACCOUNT INFO (DATA CARDS)
===================================================== */

.dash-x-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Organic corners */
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.dash-x-info-grid span {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  color: var(--accent, #5e7a63); /* Sage label */
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  font-weight: 500;
}

.dash-x-info-grid strong {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text, #2d2a26);
}

/* =====================================================
   QUICK ACTIONS (MODULAR CARDS)
===================================================== */

.dash-x-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.dash-x-action {
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Organic corners */
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  position: relative;
}

/* Elegant top border replacing tech highlight */
.dash-x-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: all 0.3s ease;
}

.dash-x-action strong {
  display: flex;
  align-items: center;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: normal;
  margin-bottom: 8px;
  color: var(--text, #2d2a26);
  transition: color 0.3s ease;
}

.dash-x-action strong::after {
  content: "→";
  margin-left: auto;
  color: var(--primary, #c25e4c); /* Terracotta arrow */
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dash-x-action span {
  font-size: 14px;
  color: var(--text-muted, #6b6661);
}

.dash-x-action:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 122, 99, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.dash-x-action:hover::before {
  background: var(--accent, #5e7a63); /* Sage accent appears */
}

.dash-x-action:hover strong {
  color: var(--primary, #c25e4c);
  text-shadow: none;
}

.dash-x-action:hover strong::after {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   NOTICE — EDITORIAL CALLOUT
===================================================== */

.dash-x-notice {
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  border-left: 4px solid var(--primary, #c25e4c); /* Terracotta accent line */
  padding: 24px 30px;
  border-radius: 12px; /* Soft blockquote style */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

/* Removed scanline animation */
.dash-x-notice::after {
  display: none;
}

.dash-x-notice strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: normal;
  margin-bottom: 8px;
  color: var(--primary, #c25e4c);
  text-shadow: none;
}

.dash-x-notice p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted, #6b6661);
  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, #e8e2d5);
    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, #e8e2d5);
    padding-top: 40px;
  }

  .dash-x-main {
    order: 1;
  }

  .dash-x-info-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TRACK ORDER — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.trk-x {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border, #e8e2d5);
}

/* Subtle, elegant organic dot pattern replacing the radar grid */
.trk-x::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.trk-x-body {
  max-width: 800px; /* Refined width for editorial readability */
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.trk-x-layout {
  display: grid;
  gap: 50px;
}

/* =====================================================
   TRACK ORDER — SECTION (DATA MODULE)
===================================================== */

.trk-x-card {
  background: var(--surface, #ffffff); /* Clean white */
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  padding: 50px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft grounding shadow */
}

/* Elegant top accent line replacing the neon scanner */
.trk-x-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent, #5e7a63); /* Sage accent */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: none;
}

.trk-x-card h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 32px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

.trk-x-desc {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  margin-bottom: 32px;
  max-width: 520px;
}

/* =====================================================
   TRACK ORDER — FORM (INPUTS)
===================================================== */

.trk-x-form label {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 600;
  text-transform: none; /* Removed uppercase */
  letter-spacing: normal;
  display: block;
  margin-bottom: 10px;
  color: var(--text, #2d2a26);
}

.trk-x-input-row {
  display: flex;
  gap: 16px;
}

.trk-x-input-row input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 12px; /* Soft pill-like inputs */
  border: 1px solid var(--border, #e8e2d5);
  font-size: 15px;
  font-family: var(--font-body, "Inter", sans-serif);
  background: var(--bg, #f7f5f0);
  color: var(--text, #2d2a26);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.trk-x-input-row input::placeholder {
  color: var(--text-faint, #a6a19a);
  text-transform: none;
}

.trk-x-input-row input:focus {
  outline: none;
  background: var(--surface, #ffffff);
  border-color: var(--accent, #5e7a63); /* Sage focus */
  box-shadow: 0 0 0 3px rgba(94, 122, 99, 0.1);
}

.trk-x-input-row button {
  padding: 16px 32px;
  border-radius: 9999px; /* Pill */
  background: var(--primary, #c25e4c); /* Terracotta */
  color: #ffffff;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  border: 1px solid var(--primary, #c25e4c);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(194, 94, 76, 0.15);
}

.trk-x-input-row button:hover {
  background: var(--primary-dark, #9e4a3b);
  box-shadow: 0 6px 20px rgba(194, 94, 76, 0.25);
  transform: translateY(-2px);
}

/* =====================================================
   TRACK ORDER — ERROR (EDITORIAL CALLOUT)
===================================================== */

.trk-x-error {
  margin-top: 30px;
  background: var(--surface, #ffffff);
  border: 1px solid rgba(194, 94, 76, 0.3); /* Terracotta tint */
  border-left: 4px solid var(--primary, #c25e4c);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: none;
}

.trk-x-error strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 8px;
  color: var(--primary, #c25e4c);
  text-shadow: none;
}

.trk-x-error p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
}

/* =====================================================
   TRACK ORDER — STATUS
===================================================== */

.trk-x-status {
  padding: 24px;
  border: 1px solid var(--border, #e8e2d5);
  border-left: 4px solid #a6a19a; /* Neutral offline */
  background: var(--surface, #ffffff);
  border-radius: 12px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.trk-x-status strong {
  display: block;
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 8px;
  color: var(--text, #2d2a26);
}

.trk-x-status p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
}

/* VARIANTS */

.trk-x-status.processing {
  border-left-color: var(--primary, #c25e4c); /* Terracotta active */
}

.trk-x-status.processing strong {
  color: var(--primary, #c25e4c);
}

.trk-x-status.dispatched {
  border-left-color: var(--accent, #5e7a63); /* Sage success */
}

.trk-x-status.dispatched strong {
  color: var(--accent, #5e7a63);
}

/* =====================================================
   TRACK ORDER — SUMMARY
===================================================== */

.trk-x-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  border-top: 1px solid var(--border, #e8e2d5);
  padding-top: 30px;
}

.trk-x-summary span {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  color: var(--accent, #5e7a63);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.trk-x-summary strong {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text, #2d2a26);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .trk-x {
    padding: 80px 15px;
  }

  .trk-x-card {
    padding: 30px 20px;
  }

  .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 — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.rtn-x {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border, #e8e2d5);
}

/* Subtle, elegant organic dot pattern replacing the data grid */
.rtn-x::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.rtn-x-body {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* =====================================================
   RETURN ORDER — CARD (EDITORIAL MODULE)
===================================================== */

.rtn-x-card {
  background: var(--surface, #ffffff); /* Clean white */
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  padding: 50px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); /* Grounding shadow */
}

/* Elegant top accent line replacing the neon scanner */
.rtn-x-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary, #c25e4c); /* Terracotta */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: none;
}

.rtn-x-card h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 32px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

.rtn-x-desc {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  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, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  display: block;
  margin-bottom: 8px;
  color: var(--text, #2d2a26);
}

.rtn-x-field input,
.rtn-x-field select,
.rtn-x-field textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px; /* Soft inputs */
  border: 1px solid var(--border, #e8e2d5);
  font-size: 15px;
  font-family: var(--font-body, "Inter", sans-serif);
  background: var(--bg, #f7f5f0);
  color: var(--text, #2d2a26);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

/* Select dropdown specific styling */
.rtn-x-field select {
  appearance: none;
  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='%236b6661' 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, #ffffff);
  color: var(--text, #2d2a26);
}

.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, #ffffff);
  border-color: var(--accent, #5e7a63); /* Sage focus */
  box-shadow: 0 0 0 3px rgba(94, 122, 99, 0.1);
}

/* =====================================================
   RETURN ORDER — ERROR (EDITORIAL CALLOUT)
===================================================== */

.rtn-x-error {
  margin-top: 30px;
  background: var(--surface, #ffffff);
  border: 1px solid rgba(194, 94, 76, 0.3);
  border-left: 4px solid var(--primary, #c25e4c); /* Terracotta */
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: none;
}

.rtn-x-error strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 8px;
  color: var(--primary, #c25e4c);
  text-shadow: none;
}

.rtn-x-error p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
}

/* =====================================================
   RETURN ORDER — ACTION
===================================================== */

.rtn-x-primary-btn {
  display: inline-block;
  margin-top: 10px;
  background: var(--primary, #c25e4c);
  color: #ffffff;
  padding: 16px 32px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  border-radius: 9999px; /* Pill */
  border: 1px solid var(--primary, #c25e4c);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(194, 94, 76, 0.15);
}

.rtn-x-primary-btn:hover {
  background: var(--primary-dark, #9e4a3b);
  box-shadow: 0 6px 20px rgba(194, 94, 76, 0.25);
  transform: translateY(-2px);
}

.rtn-x-note {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  margin-top: 16px;
  max-width: 100%;
}

/* =====================================================
   RETURN ORDER — SUCCESS (RECALL VERIFIED)
===================================================== */

.rtn-x-success {
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  padding: 50px;
  text-align: center;
  border-radius: 20px;
}

.rtn-x-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Circle */
  background: rgba(94, 122, 99, 0.1); /* Sage tint */
  border: 1px solid var(--accent, #5e7a63);
  color: var(--accent, #5e7a63);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: none;
}

.rtn-x-success h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 28px;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 16px;
  color: var(--accent, #5e7a63);
  text-shadow: none;
}

.rtn-x-success p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* =====================================================
   RETURN ORDER — SUMMARY
===================================================== */

.rtn-x-summary {
  border-top: 1px solid var(--border, #e8e2d5);
  padding-top: 24px;
  margin-bottom: 30px;
}

.rtn-x-summary span {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  color: var(--accent, #5e7a63);
  text-transform: none;
  margin-bottom: 6px;
}

.rtn-x-summary strong {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text, #2d2a26);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .rtn-x {
    padding: 80px 15px;
  }

  .rtn-x-card {
    padding: 30px 20px;
  }
}

/* =====================================================
   CART — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.crt-x {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 100px 0;
  position: relative;
}

/* Subtle, elegant organic dot pattern replacing the grid */
.crt-x::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.crt-x-body {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* =====================================================
   CART — EMPTY STATE
===================================================== */

.crt-x-empty {
  background: transparent;
  border-top: 1px solid var(--border, #e8e2d5);
  padding-top: 60px;
  text-align: center;
}

.crt-x-empty h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 32px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

.crt-x-empty p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  max-width: 420px;
  margin: 0 auto 28px;
}

/* =====================================================
   CART — LAYOUT
===================================================== */

.crt-x-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
}

.crt-x-items h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 26px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  color: var(--text, #2d2a26);
}

/* =====================================================
   CART — ITEM (EDITORIAL ROW)
===================================================== */

.crt-x-item {
  background: transparent;
  border-top: 1px solid var(--border, #e8e2d5);
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 24px;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.crt-x-item:hover {
  background: rgba(255, 255, 255, 0.4);
  border-top-color: var(--primary, #c25e4c);
}

/* IMAGE */

.crt-x-item-image img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 12px; /* Soft rounded corners */
  padding: 10px;
  background: var(--surface, #ffffff);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.03));
  transition: all 0.4s ease;
}

.crt-x-item:hover .crt-x-item-image img {
  border-color: rgba(94, 122, 99, 0.2);
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.05));
}

/* INFO */

.crt-x-item-info strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text, #2d2a26);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.crt-x-item:hover .crt-x-item-info strong {
  color: var(--primary, #c25e4c);
}

.crt-x-item-info span {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  color: var(--text-muted, #6b6661);
}

/* =====================================================
   CART — QUANTITY (SOFT CONTROLS)
===================================================== */

.crt-x-item-qty form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.crt-x-item-qty input {
  width: 60px;
  padding: 10px;
  border-radius: 9999px; /* Pill */
  border: 1px solid var(--border, #e8e2d5);
  font-size: 14px;
  font-family: var(--font-body, "Inter", sans-serif);
  text-align: center;
  background: var(--bg, #f7f5f0);
  color: var(--text, #2d2a26);
  transition: all 0.3s ease;
}

.crt-x-item-qty input:focus {
  outline: none;
  border-color: var(--accent, #5e7a63);
  box-shadow: 0 0 0 3px rgba(94, 122, 99, 0.1);
}

.crt-x-item-qty button {
  padding: 8px 12px;
  border-radius: 50%; /* Circle */
  border: 1px solid var(--border, #e8e2d5);
  background: var(--surface, #ffffff);
  color: var(--text-muted, #6b6661);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.crt-x-item-qty button:hover {
  background: var(--bg, #f7f5f0);
  border-color: var(--primary, #c25e4c);
  color: var(--primary, #c25e4c);
}

/* =====================================================
   CART — TOTAL & REMOVE
===================================================== */

.crt-x-item-total {
  text-align: right;
}

.crt-x-item-total strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text, #2d2a26);
}

.crt-x-remove {
  background: none;
  border: none;
  color: var(--text-faint, #a6a19a);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.crt-x-remove:hover {
  color: var(--primary, #c25e4c);
}

/* =====================================================
   CART — SUMMARY (EDITORIAL PANEL)
===================================================== */

.crt-x-summary {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Organic corners */
  padding: 40px;
  height: fit-content;
  position: sticky;
  top: 120px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Elegant top accent line replacing scanner line */
.crt-x-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent, #5e7a63);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: none;
}

.crt-x-summary h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 22px;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 26px;
  color: var(--text, #2d2a26);
}

/* ROWS */

.crt-x-summary-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--text-muted, #6b6661);
}

.crt-x-summary-row strong {
  color: var(--text, #2d2a26);
}

.crt-x-summary-row.total {
  font-family: var(--font-body, "Inter", sans-serif);
  font-weight: 600;
  font-size: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--border, #e8e2d5);
  color: var(--text, #2d2a26);
  text-shadow: none;
  margin-top: 24px;
}

/* =====================================================
   CART — PRIMARY ACTION
===================================================== */

.crt-x-primary-btn {
  display: block;
  margin-top: 32px;
  background: var(--primary, #c25e4c);
  color: #ffffff;
  border: 1px solid var(--primary, #c25e4c);
  padding: 16px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  border-radius: 9999px; /* Pill */
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(194, 94, 76, 0.15);
  text-decoration: none;
}

.crt-x-primary-btn.checkout:hover {
  background: var(--primary-dark, #9e4a3b);
  border-color: var(--primary-dark, #9e4a3b);
  box-shadow: 0 6px 20px rgba(194, 94, 76, 0.25);
  transform: translateY(-2px);
}

/* TRUST TEXT */

.crt-x-trust {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-faint, #a6a19a);
  text-align: center;
  margin-top: 20px;
}

/* =====================================================
   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 10px;
  }
}

/* =====================================================
   CHECKOUT — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.chk-x {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border, #e8e2d5);
}

/* Subtle, elegant organic dot pattern replacing the radar grid */
.chk-x::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.chk-x-body {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* =====================================================
   CHECKOUT — ERROR (EDITORIAL CALLOUT)
===================================================== */

.chk-x-error {
  background: var(--surface, #ffffff);
  border: 1px solid rgba(194, 94, 76, 0.3);
  border-left: 4px solid var(--primary, #c25e4c); /* Terracotta */
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.chk-x-error strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 8px;
  color: var(--primary, #c25e4c);
  text-shadow: none;
}

.chk-x-error p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
}

/* =====================================================
   CHECKOUT — LAYOUT
===================================================== */

.chk-x-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
}

/* =====================================================
   CHECKOUT — SECTIONS
===================================================== */

.chk-x-card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--border, #e8e2d5);
  padding-top: 32px;
  margin-bottom: 50px;
}

.chk-x-card h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 24px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 24px;
  color: var(--text, #2d2a26);
}

/* =====================================================
   CHECKOUT — FORM (CLEAN INPUTS)
===================================================== */

.chk-x-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.chk-x-grid.single {
  grid-template-columns: 1fr;
}

.chk-x-card label {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 8px;
  color: var(--text, #2d2a26);
}

.chk-x-card input,
.chk-x-card textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px; /* Soft inputs */
  border: 1px solid var(--border, #e8e2d5);
  font-size: 15px;
  font-family: var(--font-body, "Inter", sans-serif);
  background: var(--bg, #f7f5f0);
  color: var(--text, #2d2a26);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.chk-x-card textarea {
  min-height: 120px;
  resize: vertical;
}

.chk-x-card input:focus,
.chk-x-card textarea:focus {
  outline: none;
  background: var(--surface, #ffffff);
  border-color: var(--accent, #5e7a63); /* Sage focus */
  box-shadow: 0 0 0 3px rgba(94, 122, 99, 0.1);
}

/* =====================================================
   CHECKOUT — PAYMENTS
===================================================== */

.chk-x-payments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.chk-x-payment {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.chk-x-payment:hover {
  background: var(--bg, #f7f5f0);
  border-color: var(--accent, #5e7a63);
  transform: translateY(-2px);
}

.chk-x-payment i {
  font-size: 20px;
  color: var(--text-muted, #6b6661);
  margin-top: 2px;
  transition: color 0.3s ease;
}

.chk-x-payment strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 4px;
  color: var(--text, #2d2a26);
}

.chk-x-payment span {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  color: var(--text-muted, #6b6661);
}

/* ACTIVE PAYMENT */

.chk-x-payment.active {
  background: var(--surface, #ffffff);
  border-color: var(--primary, #c25e4c); /* Terracotta */
  box-shadow: 0 4px 12px rgba(194, 94, 76, 0.1);
}

.chk-x-payment.active i,
.chk-x-payment.active strong {
  color: var(--primary, #c25e4c);
}

/* =====================================================
   CHECKOUT — SUMMARY (EDITORIAL PANEL)
===================================================== */

.chk-x-summary {
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft corners */
  padding: 40px;
  height: fit-content;
  position: sticky;
  top: 120px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Elegant top accent line */
.chk-x-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent, #5e7a63);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: none;
}

.chk-x-summary h3 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 24px;
  color: var(--text, #2d2a26);
}

/* SUMMARY ROWS */

.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, "Inter", sans-serif);
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-muted, #6b6661);
  background: var(--bg, #f7f5f0);
  padding: 12px 16px;
  border-radius: 8px;
}

.chk-x-summary-item strong {
  color: var(--text, #2d2a26);
  border-left: 2px solid var(--primary, #c25e4c);
  padding-left: 12px;
}

/* TOTAL */

.chk-x-summary-total {
  border-top: 1px solid var(--border, #e8e2d5);
  padding-top: 20px;
  margin-bottom: 30px;
}

.chk-x-summary-total div {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  color: var(--text-muted, #6b6661);
  margin-bottom: 12px;
}

.chk-x-summary-total .total {
  font-family: var(--font-body, "Inter", sans-serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--text, #2d2a26);
  text-shadow: none;
  margin-top: 20px;
}

/* =====================================================
   CHECKOUT — CTA (EXECUTE)
===================================================== */

.chk-x-primary-btn {
  width: 100%;
  background: var(--primary, #c25e4c);
  color: #ffffff;
  border: 1px solid var(--primary, #c25e4c);
  padding: 16px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  border-radius: 9999px; /* Pill */
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(194, 94, 76, 0.15);
  text-decoration: none;
  display: block;
}

.chk-x-primary-btn:hover {
  background: var(--primary-dark, #9e4a3b);
  border-color: var(--primary-dark, #9e4a3b);
  box-shadow: 0 6px 20px rgba(194, 94, 76, 0.25);
  transform: translateY(-2px);
}

.chk-x-trust {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-faint, #a6a19a);
  text-align: center;
  margin-top: 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .chk-x-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .chk-x-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  .chk-x {
    padding: 80px 15px;
  }
  .chk-x-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ORDER SUCCESS — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.ordx-success {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border, #e8e2d5);
}

/* Subtle, elegant organic dot pattern replacing the radar overlay */
.ordx-success::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.ordx-body {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.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, #6b6661);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
}

/* =====================================================
   SECTION (EDITORIAL MODULE)
===================================================== */

.ordx-card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--border, #e8e2d5); /* Solid line */
  padding-top: 32px;
  position: relative;
}

.ordx-card h2 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 28px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--text, #2d2a26);
}

.ordx-card p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted, #6b6661);
  max-width: 680px;
}

/* CONFIRMATION ACCENT — VERIFIED STATE */

.ordx-confirm {
  border-top: 4px solid var(--accent, #5e7a63); /* Sage accent */
  background: var(--surface, #ffffff);
  padding: 40px;
  border-radius: 20px; /* Soft organic corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.ordx-confirm h2 {
  color: var(--accent, #5e7a63);
  text-shadow: none;
}

/* =====================================================
   ORDER STATS (DATA ROWS)
===================================================== */

.ordx-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid var(--border, #e8e2d5);
  padding-top: 32px;
}

.ordx-stats span {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  color: var(--text-muted, #6b6661);
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 8px;
}

.ordx-stats strong {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text, #2d2a26);
}

/* =====================================================
   WHAT HAPPENS NEXT (PROTOCOL)
===================================================== */

.ordx-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ordx-steps li {
  padding-left: 36px;
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text, #2d2a26);
  margin-bottom: 16px;
}

.ordx-steps li::before {
  content: "✓";
  font-family: var(--font-body, sans-serif);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent, #5e7a63);
  font-weight: 600;
}

/* =====================================================
   ACTIONS (EDITORIAL BUTTONS)
===================================================== */

.ordx-actions {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.ordx-btn {
  padding: 16px 26px;
  border-radius: 9999px; /* Pill */
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

/* PRIMARY (TERRACOTTA) */

.ordx-btn.primary {
  background: var(--primary, #c25e4c);
  border: 1px solid var(--primary, #c25e4c);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(194, 94, 76, 0.15);
}

.ordx-btn.primary:hover {
  background: var(--primary-dark, #9e4a3b);
  border-color: var(--primary-dark, #9e4a3b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 94, 76, 0.25);
}

/* GHOST (NEUTRAL) */

.ordx-btn.ghost {
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  color: var(--text, #2d2a26);
}

.ordx-btn.ghost:hover {
  background: var(--bg, #f7f5f0);
  border-color: var(--accent, #5e7a63);
  color: var(--accent, #5e7a63);
  box-shadow: 0 4px 12px rgba(94, 122, 99, 0.08);
  transform: translateY(-2px);
}

/* =====================================================
   RIGHT SIDEBAR
===================================================== */

.ordx-side {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* =====================================================
   STATUS RAIL — TRACKER
===================================================== */

.ordx-rail {
  background: transparent;
  border-top: 1px solid var(--border, #e8e2d5);
  padding-top: 32px;
}

.rail-step {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.rail-step span {
  width: 32px;
  height: 32px;
  border-radius: 50%; /* Circle */
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  color: var(--text-muted, #6b6661);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 500;
}

.rail-step strong {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  color: var(--text-muted, #6b6661);
}

/* ACTIVE NODE */

.rail-step.active {
  opacity: 1;
}

.rail-step.active span {
  background: var(--accent, #5e7a63);
  border-color: var(--accent, #5e7a63);
  color: #ffffff;
}

.rail-step.active strong {
  color: var(--accent, #5e7a63);
}

/* =====================================================
   HELP BOX — EDITORIAL ASSISTANCE
===================================================== */

.ordx-help {
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  border-left: 4px solid var(--primary, #c25e4c); /* Terracotta */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ordx-help strong {
  display: block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text, #2d2a26);
}

.ordx-help p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  margin: 0;
}

.ordx-help a {
  color: var(--primary, #c25e4c);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ordx-help a:hover {
  text-decoration: underline;
}

/* =====================================================
   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 15px;
  }

  .ordx-confirm {
    padding: 30px 20px;
  }
}

/* Policy Pages */
.policy-page {
  padding: 50px;
}

/* =====================================================
   SHOP PAGE — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.shop-hard {
  background: var(--bg, #f7f5f0); /* Warm cream */
  position: relative;
}

/* Subtle, elegant organic dot pattern replacing the schematic grid */
.shop-hard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.shop-hard-body {
  padding: 100px 20px 120px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

/* =====================================================
   EMPTY STATE
===================================================== */

.shop-hard-empty {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-top: 4px solid var(--primary, #c25e4c); /* Terracotta accent */
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 56px;
  border-radius: 20px; /* Soft organic corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.shop-hard-empty strong {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 24px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  display: block;
  margin-bottom: 12px;
  color: var(--primary, #c25e4c);
  text-shadow: none;
}

.shop-hard-empty p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted, #6b6661);
  max-width: 420px;
  margin: 0 auto;
  text-transform: none;
}

/* =====================================================
   SHOP GRID — CATALOG
===================================================== */

.shop-hard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* =====================================================
   SHOP PRODUCT — EDITORIAL TILE
===================================================== */

.shop-product-card {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-top: 3px solid var(--border, #e8e2d5);
  padding: 24px;
  border-radius: 20px; /* Soft organic corners */
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.shop-product-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--accent, #5e7a63); /* Sage hover line */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* =====================================================
   IMAGE
===================================================== */

.shop-product-image {
  position: relative;
  background: var(--bg, #f7f5f0); /* Soft cream interior */
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: none;
  overflow: hidden;
  transition: all 0.4s ease;
}

.shop-product-card:hover .shop-product-image {
  background: var(--bg, #f7f5f0);
}

.shop-product-image img {
  max-width: 100%;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.shop-product-card:hover .shop-product-image img {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.08));
}

/* =====================================================
   STOCK BADGE — EDITORIAL STATUS
===================================================== */

.shop-stock {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 9999px; /* Pill */
  z-index: 2;
}

.shop-stock.in {
  background: rgba(94, 122, 99, 0.1);
  color: var(--accent, #5e7a63);
  border: 1px solid rgba(94, 122, 99, 0.2);
  box-shadow: none;
}

.shop-stock.out {
  background: rgba(194, 94, 76, 0.1);
  color: var(--primary, #c25e4c);
  border: 1px solid rgba(194, 94, 76, 0.2);
  box-shadow: none;
}

/* =====================================================
   INFO
===================================================== */

.shop-product-info {
  padding: 24px 0 0;
  flex: 1;
}

.shop-product-info h3 {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text, #2d2a26);
  transition: color 0.3s ease;
}

.shop-product-card:hover .shop-product-info h3 {
  color: var(--primary, #c25e4c);
  text-shadow: none;
}

.shop-product-info p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted, #6b6661);
}

/* =====================================================
   FOOTER
===================================================== */

.shop-product-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border, #e8e2d5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-price {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

/* =====================================================
   ADD TO CART — BUTTON
===================================================== */

.shop-add-btn {
  background: var(--surface, #ffffff);
  color: var(--text, #2d2a26);
  border: 1px solid var(--border, #e8e2d5);
  padding: 8px 16px;
  border-radius: 9999px; /* Pill */
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-add-btn:hover {
  background: var(--primary, #c25e4c);
  color: #ffffff;
  border-color: var(--primary, #c25e4c);
  box-shadow: 0 4px 12px rgba(194, 94, 76, 0.2);
  transform: translateY(-2px);
}

/* DISABLED */

.shop-disabled-btn {
  background: var(--bg, #f7f5f0);
  color: var(--text-faint, #a6a19a);
  border: 1px solid var(--border, #e8e2d5);
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  cursor: not-allowed;
}

/* OUT OF STOCK DIMMING */

.shop-product-card.out {
  opacity: 0.7;
  filter: grayscale(40%);
}

.shop-product-card.out:hover {
  transform: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border-top-color: var(--border, #e8e2d5);
}

/* 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 — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.prd-pro {
  background: var(--bg, #f7f5f0); /* Warm cream */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border, #e8e2d5);
}

/* Subtle, elegant organic dot pattern replacing the schematic grid */
.prd-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.prd-pro-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   IMAGE (CLEAN HOUSING)
===================================================== */

.prd-pro-media {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 20px; /* Soft organic corners */
  padding: 60px;
  border: 1px solid var(--border, #e8e2d5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Grounding shadow */
  position: relative;
  overflow: hidden;
}

/* Top Accent Line replacing the neon scanner */
.prd-pro-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent, #5e7a63); /* Sage accent */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: none;
}

.prd-pro-media img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
  transition: all 0.5s ease;
}

.prd-pro-media:hover img {
  transform: scale(1.03);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.12));
}

/* =====================================================
   INFO (EDITORIAL READOUT)
===================================================== */

.prd-pro-meta {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  color: var(--accent, #5e7a63); /* Sage tag */
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  text-shadow: none;
}

.prd-pro-info h1 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.15;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

.prd-pro-rating {
  font-size: 14px;
  color: #eab308; /* Gold stars */
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-shadow: none;
}

.prd-pro-rating span {
  font-family: var(--font-body, "Inter", sans-serif);
  color: var(--text-muted, #6b6661);
  margin-left: 8px;
  letter-spacing: normal;
}

.prd-pro-price {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text, #2d2a26);
  text-shadow: none;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.prd-pro-price small {
  display: inline-block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  color: var(--text-muted, #6b6661);
  text-transform: none;
  letter-spacing: normal;
}

.prd-pro-desc {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted, #6b6661);
  margin-bottom: 32px;
  border-left: 2px solid var(--border, #e8e2d5);
  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, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text-muted, #6b6661);
  border-top: 1px solid var(--border, #e8e2d5);
  padding-top: 20px;
}

/* =====================================================
   TABS (EDITORIAL NAVIGATION)
===================================================== */

.prd-pro-tabs {
  margin-top: 100px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.prd-pro-tabs input {
  display: none;
}

.prd-pro-tab-head {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid var(--border, #e8e2d5);
  margin-bottom: 40px;
}

.prd-pro-tab-head label {
  padding-bottom: 16px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  cursor: pointer;
  color: var(--text-muted, #6b6661);
  transition: all 0.3s ease;
  position: relative;
}

.prd-pro-tab-head label:hover {
  color: var(--text, #2d2a26);
}

/* 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, #c25e4c);
  text-shadow: none;
}

/* 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, #c25e4c);
  box-shadow: none;
}

.prd-pro-tab-body .prd-tab {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  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 (RAW SPEC DATA)
===================================================== */

.prd-spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface, #ffffff);
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 12px;
  overflow: hidden;
}

.prd-spec-table th,
.prd-spec-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border, #e8e2d5);
  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, "Inter", sans-serif);
  font-weight: 600;
  text-transform: none;
  color: var(--text-muted, #6b6661);
  background: var(--bg, #f7f5f0);
}

.prd-spec-table td {
  color: var(--text, #2d2a26);
  font-family: var(--font-body, "Inter", sans-serif);
}

/* =====================================================
   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;
  }
}

/* =====================================================
   CATEGORY LANDING HERO — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.cat-landing {
  width: 100%;
  height: 580px; /* Slightly taller for an editorial "feature" look */
  position: relative;
  overflow: hidden;
  background: var(--surface, #ffffff);
}

/* LINK */

.cat-landing-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  position: relative;
}

/* IMAGE — Subtle Zoom Effect */

.cat-landing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-landing-link:hover .cat-landing-img {
  transform: scale(1.02);
}

/* CONTENT CONTAINER */

.cat-landing-content {
  max-width: 1200px;
  padding: 0 40px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  color: #ffffff; /* Keeping white for image overlay contrast */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Soft text shadow for readability */
}

/* EYEBROW */

.cat-landing-eyebrow {
  display: inline-block;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px; /* Pill */
}

/* TITLE */

.cat-landing-title {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cat-landing-title span {
  color: var(--primary, #c25e4c); /* Terracotta */
}

/* TEXT */

.cat-landing-text {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 30px;
  font-weight: 400;
}

/* CTA */

.cat-landing-cta {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cat-landing-cta::after {
  content: "→";
  transition: transform 0.3s ease;
}

.cat-landing-link:hover .cat-landing-cta::after {
  transform: translateX(4px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .cat-landing {
    height: 500px;
  }

  .cat-landing-content {
    padding: 0 30px;
  }
}

@media (max-width: 600px) {
  .cat-landing {
    height: 420px;
  }

  .cat-landing-title {
    font-size: 36px;
  }

  .cat-landing-text {
    font-size: 16px;
  }
}

/* =====================================================
   CATEGORY GRID — EARTHY & EDITORIAL
   (Class names retained for HTML compatibility)
===================================================== */

.category-modern {
  padding: 100px 0;
  background: var(--bg, #f7f5f0); /* Warm cream */
  position: relative;
}

/* Subtle, elegant organic dot pattern replacing the schematic grid */
.category-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(107, 102, 97, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.category-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   PRODUCT CARD — EDITORIAL DATABANK
===================================================== */

.category-product-card {
  background: var(--surface, #ffffff);
  backdrop-filter: none;
  border: 1px solid var(--border, #e8e2d5);
  border-radius: 20px; /* Soft organic corners */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft grounding shadow */
}

.w-100 {
  width: 100%;
}

/* Removed the glowing top scanner line */
.category-product-card::before {
  display: none;
}

.category-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 122, 99, 0.3); /* Sage border tint */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.category-product-link {
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* =====================================================
   IMAGE — CLEAN HOUSING
===================================================== */

.category-product-image {
  position: relative;
  background: var(--bg, #f7f5f0); /* Very soft cream interior */
  padding: 30px 22px;
  border-bottom: 1px solid var(--border, #e8e2d5);
  transition: all 0.4s ease;
}

.category-product-image img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.category-product-card:hover .category-product-image img {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.08));
}

/* =====================================================
   STOCK — EDITORIAL STATUS
===================================================== */

.category-stock {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 9999px; /* Pill */
  z-index: 2;
}

.category-stock.in {
  background: rgba(94, 122, 99, 0.1);
  color: var(--accent, #5e7a63);
  border: 1px solid rgba(94, 122, 99, 0.2);
}

.category-stock.out {
  background: rgba(194, 94, 76, 0.1);
  color: var(--primary, #c25e4c);
  border: 1px solid rgba(194, 94, 76, 0.2);
}

/* =====================================================
   INFO — EDITORIAL READOUT
===================================================== */

.category-product-info {
  padding: 24px 22px 10px;
  background-color: var(--surface, #ffffff);
  flex-grow: 1;
}

.category-product-info h3 {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 16px;
  font-weight: 600;
  text-transform: none; /* Natural casing */
  letter-spacing: normal;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text, #2d2a26);
  transition: color 0.3s ease;
}

.category-product-card:hover .category-product-info h3 {
  color: var(--primary, #c25e4c);
  text-shadow: none;
}

.category-product-info p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted, #6b6661);
  margin-bottom: 16px;
}

.category-price {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text, #2d2a26);
  text-shadow: none;
}

/* =====================================================
   ACTION — EDITORIAL BUTTON
===================================================== */

.category-cart-form button {
  width: calc(100% - 44px);
  margin: 0 22px 22px;
  background: var(--surface, #ffffff);
  color: var(--text, #2d2a26);
  border: 1px solid var(--border, #e8e2d5);
  padding: 12px;
  border-radius: 9999px; /* Pill */
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-cart-form button:hover {
  background: var(--primary, #c25e4c);
  color: #ffffff;
  border-color: var(--primary, #c25e4c);
  box-shadow: 0 4px 12px rgba(194, 94, 76, 0.2);
  transform: translateY(-2px);
}

.btn-disabled {
  width: calc(100% - 44px);
  margin: 0 22px 22px;
  padding: 12px;
  border-radius: 9999px; /* Pill */
  border: 1px solid var(--border, #e8e2d5);
  background: var(--bg, #f7f5f0);
  color: var(--text-faint, #a6a19a);
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  cursor: not-allowed;
  text-align: center;
}

/* =====================================================
   EMPTY STATE
===================================================== */

.category-empty-modern {
  background: var(--surface, #ffffff);
  border: 1px solid rgba(194, 94, 76, 0.3);
  text-align: center;
  padding: 100px 20px;
  border-radius: 20px; /* Organic corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 2;
}

.category-empty-modern h3 {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 26px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 12px;
  color: var(--primary, #c25e4c);
  text-shadow: none;
}

.category-empty-modern p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 15px;
  color: var(--text-muted, #6b6661);
  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 15px;
  }
  .category-grid-modern {
    grid-template-columns: 1fr;
  }
  .category-product-image img {
    height: 220px;
  }
}
