:root {
  /* ---------- COLORS ---------- */

  --bg: #f5f7fb; /* cleaner background */
  --surface: #ffffff;
  --card: #ffffff;

  --primary: #629d23; /* modern blue */
  --primary-dark: #3e5822;

  --accent: #0f172a; /* dark slate */

  --text: #0f172a;
  --text-muted: #64748b;
  --text-faint: #94a3b8;

  --border: #e5e7eb;

  /* ---------- RADII ---------- */

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* ---------- SPACING ---------- */

  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 36px;
  --space-xl: 70px;
  --space-2xl: 110px;

  /* ---------- TYPOGRAPHY ---------- */

  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-heading: "Inter", system-ui, -apple-system, sans-serif;

  /* ---------- MOTION ---------- */

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* =====================================================
   LAYOUT
===================================================== */

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.container-wide {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 32px;
}

.section {
  padding: var(--space-2xl) 0;
}

/* =====================================================
   TYPOGRAPHY — EDITORIAL
===================================================== */

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.12;
}

h3 {
  font-size: 24px;
}

p {
  font-size: 15.5px;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
}

strong {
  color: var(--text);
  font-weight: 600;
}

.mt-5 {
  margin-top: 25px;
}

/* =====================================================
   LINKS
===================================================== */

a {
  color: var(--primary);
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

a:hover {
  color: var(--primary);
}

.text-white {
  color: white !important;
}

/* =====================================================
   DIVIDERS
===================================================== */

.hr {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: var(--space-xl) 0;
}

/* =====================================================
   BUTTONS — REFINED
===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;

  border-radius: var(--radius-md);
  border: none;

  cursor: pointer;

  transition: all 0.25s var(--ease);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--primary);
}

/* =====================================================
   SURFACES
===================================================== */

.surface {
  background: var(--surface);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

/* =====================================================
   FORMS — CLEAN & NEUTRAL
===================================================== */

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-faint);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
}

/* =====================================================
   UTILITIES
===================================================== */

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.w-100 {
  width: 100%;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .section {
    padding: var(--space-xl) 0;
  }

  p {
    font-size: 15px;
  }
}

/* =====================================================
   PAGE HEADER — DARK BREADCRUMB
===================================================== */

.page-header-dark {
  background: #629d23; /* deep blue-charcoal */
  padding: 90px 0 80px;
  text-align: center;
  color: #e5e7eb;
}

.page-header-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* BREADCRUMB */

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb span {
  color: #ffffff;
}

/* TITLE */

.page-header-dark h1 {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #ffffff;
}

/* SUBTEXT */

.page-header-dark p {
  font-size: 16px;
  line-height: 1.7;
  color: white;
  max-width: 1220px;
}

/* =====================================================
   TOP BAR — MODERN PROMO BAR
===================================================== */

.topbar-soft {
  background: linear-gradient(90deg, #629d23, #3e5822);
  font-size: 13px;
  color: white;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

/* LEFT SIDE */

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-msg {
  font-weight: 500;
}

.topbar-msg strong {
  font-weight: 700;
}

/* BADGE */

.topbar-badge {
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* RIGHT SIDE */

.topbar-right {
  font-weight: 500;
}

.topbar-help strong {
  font-weight: 700;
}

/* =====================================================
   HEADER — LIGHT EDITORIAL
===================================================== */

.header-soft {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-soft-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 0;
}

.container.header-soft-inner {
  max-width: 1520px;
}

/* =====================================================
   NAVIGATION
===================================================== */

.nav-soft {
  display: flex;
  gap: 34px;
}

.nav-soft a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 6px;
}

.nav-soft a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-soft a:hover,
.nav-soft a.active {
  color: var(--text);
}

.nav-soft a:hover::after,
.nav-soft a.active::after {
  width: 100%;
}

/* =====================================================
   LOGO
===================================================== */

.logo-soft img {
  height: 100px;
  display: block;
  margin-left: 18px;
}

/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin-right: 10px;
}

/* =====================================================
   SEARCH
===================================================== */

.search-soft {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 348px;
  background: var(--surface);
}

.search-soft i {
  font-size: 14px;
  color: var(--text-faint);
  margin-left: 20px;
}

.search-soft input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  width: 160px;
  color: var(--text);
}

.search-soft input::placeholder {
  color: var(--text-faint);
}

/* =====================================================
   ICON BUTTONS
===================================================== */

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  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.25s ease;
}

.icon-btn:hover {
  border-color: var(--primary);
  color: var(--text);
}

/* CART BADGE */

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
}

/* =====================================================
   MOBILE TOGGLE
===================================================== */

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* =====================================================
   MOBILE MENU — FULLSCREEN
===================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 2000;
  padding: 32px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-menu-header img {
  height: 46px;
}

.mobile-menu-header button {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}

/* =====================================================
   MOBILE NAV
===================================================== */

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 22px;
}

/* =====================================================
   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;
  }
}

/* =====================================================
   HERO GRID — FULL WIDTH SLIDER (MARKETPLACE STYLE)
===================================================== */

.hero-grid {
  padding: 40px 0 70px;
  background: url("../../assets/images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

/* Container */
.hero-grid .container {
  max-width: 1620px;
  margin: 0 auto;
}

/* =====================================================
   HERO MAIN SLIDER
===================================================== */

.hero-main-slider {
  overflow: hidden;
  border-radius: 18px;
  position: relative;
}

/* Slider Track */
.hero-main-track {
  display: flex;
  width: 400%;
  animation: heroMainSlide 20s infinite ease-in-out;
}

/* Individual Slide */
.hero-slide {
  width: 100%;
  flex-shrink: 0;
}

/* =====================================================
   HERO BANNER (BASE)
===================================================== */

.hero-banner {
  position: relative;
  display: block;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #5c9022;
  color: #fff;
  border: 2px solid #fff;
  text-align: center;
}

/* Image */
.hero-banner img {
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}

/* Overlay */
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
}

/* Hover zoom */
.hero-banner:hover img {
  transform: scale(1.05);
}

/* =====================================================
   HERO CONTENT
===================================================== */

.hero-banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  z-index: 2;
}

/* Heading */
.hero-banner-content h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}

/* Paragraph */
.hero-banner-content p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 14px;
  color: #fff;
  max-width: 520px;
}

/* CTA */
.hero-cta {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  color: #fff;
}

/* =====================================================
   SLIDER ANIMATION
===================================================== */

@keyframes heroMainSlide {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-100%);
  }
  45% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(-200%);
  }
  70% {
    transform: translateX(-200%);
  }

  75% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(-300%);
  }
}

/* Pause on hover */
.hero-main-slider:hover .hero-main-track {
  animation-play-state: paused;
}

/* Touch friendly */
.hero-main-slider {
  touch-action: pan-x;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .hero-banner {
    height: 360px;
  }

  .hero-banner-content {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .hero-grid {
    padding: 30px 0 50px;
  }

  .hero-banner {
    height: 300px;
  }

  .hero-banner-content {
    padding: 22px;
  }

  .hero-banner-content h2 {
    font-size: 26px;
  }

  .hero-main-track {
    animation-duration: 14s;
  }
}

/* =====================================================
   CATEGORIES — HORIZONTAL RAIL
===================================================== */

.categories-soft {
  background: #ffffff;
  padding: var(--space-xl) 0;
}

/* Wider container ONLY for this section */
.categories-soft .container {
  max-width: 1520px;
}

/* ================= GRID ================= */

.categories-soft-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 6px;

  /* smooth horizontal scroll */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}

/* hide scrollbar but keep scroll */
.categories-soft-grid::-webkit-scrollbar {
  height: 6px;
}

.categories-soft-grid::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 6px;
}

/* ================= CARD ================= */

.category-soft-card {
  flex: 0 0 160px; /* fixed width per item */
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  text-decoration: none;
  color: var(--text);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.category-soft-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* IMAGE */

.category-soft-card img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  margin-bottom: 25px;
}

/* TITLE */

.category-soft-card h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

/* REMOVE EXTRA CONTENT */
.category-soft-card span,
.category-soft-card::after {
  display: none !important;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .category-soft-card {
    flex: 0 0 140px;
    padding: 18px 14px;
  }

  .category-soft-card img {
    height: 75px;
  }

  .category-soft-card h3 {
    font-size: 14px;
  }
}

/* =====================================================
   PRODUCTS — MODERN MARKETPLACE DESIGN
===================================================== */

.products-modern {
  background: #f7f8fa; /* SAME AS BEFORE */
  padding: 80px 0;
}

/* ================= HEADER ================= */

.products-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
  position: relative;
}

/* eyebrow */

.products-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

/* heading */

.products-modern-head h2 {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.2;
  position: relative;
}

/* underline accent */

.products-modern-head h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primary);
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

/* paragraph */

.products-modern-head p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 16px auto 0;
}

/* ================= TABS ================= */

.products-modern-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.products-modern-tabs .tab-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.products-modern-tabs .tab-btn.active {
  background: #629d23;
  color: #fff;
  border-color: #629d23;
}

/* ================= GRID ================= */

.products-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ================= CARD ================= */

.product-modern-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ================= IMAGE ================= */

.product-modern-image {
  position: relative;
  padding: 30px;
  background: white;
}

.product-modern-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

/* Badge */
.product-modern-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #111;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
}

/* Rating */
.product-modern-rating {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  display: flex;
  gap: 4px;
  align-items: center;
}

.product-modern-rating i {
  color: #f4b400;
}

/* ================= BODY ================= */

.product-modern-body {
  padding: 20px;
  flex-grow: 1;
  background-color: #fafafa;
}

.product-modern-category {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.product-modern-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 6px 0 10px;
}

.product-modern-desc {
  font-size: 14px;
  color: #666;
}

/* ================= FOOTER ================= */

.product-modern-footer {
  padding: 18px 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #629d23;
}

.product-modern-footer strong {
  font-size: 18px;
  color: white;
}

.product-modern-cta {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .products-modern-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-modern-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT — PREMIUM MARKETPLACE SECTION
===================================================== */

.about-modern {
  background: white;
  padding: 110px 0;
}

/* container layout */

.about-modern .container {
  max-width: 1500px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;

  align-items: center;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.about-modern-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: inline-block;
}

.about-modern-content h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--text);
}

.about-modern-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
  max-width: 620px;
}

.about-modern-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 640px;
}

/* actions */

.about-modern-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

/* =====================================================
   RIGHT FEATURE CARDS
===================================================== */

.about-modern-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* card */

.about-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;

  border: 1px solid var(--border);

  transition: all 0.3s ease;
}

/* hover */

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* number */

.about-card strong {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

/* title */

.about-card span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}

/* text */

.about-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .about-modern .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .about-modern {
    padding: 70px 0;
  }

  .about-modern-cards {
    grid-template-columns: 1fr;
  }

  .about-modern-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =====================================================
   WHY CHOOSE — MODERN TRUST SECTION
===================================================== */

.why-modern {
  background: #ffffff;
  padding: 110px 0;
}

/* =====================================================
   HEADER (same style as products section)
===================================================== */

.why-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.why-modern-head h2 {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.2;
  position: relative;
}

.why-modern-head h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primary);
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

.why-modern-head p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 16px auto 0;
}

/* =====================================================
   GRID
===================================================== */

.why-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: auto;
}

/* =====================================================
   CARD
===================================================== */

.why-modern-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);

  padding: 32px;

  transition: all 0.3s ease;
}

.why-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* icon */

.why-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);

  font-size: 20px;

  margin-bottom: 18px;
}

/* title */

.why-modern-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

/* text */

.why-modern-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .why-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-modern {
    padding: 70px 0;
  }

  .why-modern-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TESTIMONIALS — MODERN TRUST SECTION
===================================================== */

.testimonials-modern {
  background: white;
  padding: 110px 0;
}

/* =====================================================
   HEADER (same style used across sections)
===================================================== */

.testimonials-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.testimonials-modern-head h2 {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.2;
  position: relative;
}

.testimonials-modern-head h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primary);
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

.testimonials-modern-head p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 16px auto 0;
}

/* =====================================================
   GRID
===================================================== */

.testimonials-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: auto;
}

/* =====================================================
   CARD
===================================================== */

.testimonial-modern-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 32px;

  transition: all 0.3s ease;
}

.testimonial-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* stars */

.testimonial-stars {
  font-size: 14px;
  letter-spacing: 2px;
  color: #f59e0b;
  margin-bottom: 16px;
}

/* quote */

.testimonial-modern-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* user */

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* avatar */

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 700;
}

.testimonial-user strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-user span {
  font-size: 13px;
  color: var(--text-muted);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .testimonials-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-modern {
    padding: 70px 0;
  }

  .testimonials-modern-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   RECENTLY VIEWED — SMART RECALL
===================================================== */

.recent-modern {
  background: var(--bg);
  padding: 90px 0;
}

/* ================= HEADER ================= */

.recent-modern-head {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.recent-modern-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.recent-modern-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}

.recent-modern-head p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ================= GRID ================= */

.recent-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ================= CARD ================= */

.recent-item {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}

.recent-item:hover {
  transform: translateY(-3px);
}

/* IMAGE */

.recent-item-image {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 16px;
}

.recent-item-image img {
  width: 100%;
  height: 140px;
  object-fit: contain;
}

/* INFO */

.recent-item h3 {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 6px;
}

.recent-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* FOOTER */

.recent-item-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recent-item-footer strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.recent-item-footer span {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

.recent-item-footer span::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.recent-item:hover .recent-item-footer span::after {
  transform: translateX(4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .recent-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recent-modern {
    padding: 70px 0;
  }

  .recent-modern-grid {
    grid-template-columns: 1fr;
  }

  .recent-item-image img {
    height: 120px;
  }
}

/* =====================================================
   RECENTLY VIEWED — REFINED EDITORIAL RECALL
===================================================== */

.recent-soft {
  background: var(--bg);
  padding: calc(var(--space-xl) + 10px) 0;
}

/* ================= HEADER ================= */

.recent-soft-head {
  margin-bottom: calc(var(--space-lg) + 6px);
}

.recent-soft-head h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.recent-soft-head p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
}

/* ================= GRID ================= */

.recent-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

/* ================= TILE ================= */

.recent-card {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}

.recent-card:hover {
  transform: translateY(-5px);
}

/* ================= IMAGE ================= */

.recent-card-img {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 18px;
  transition:
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.recent-card:hover .recent-card-img {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.recent-card-img img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

/* ================= NAME ================= */

.recent-card h3 {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.35;
  color: var(--text);
}

/* ================= RATING ================= */

.recent-card-rating {
  font-size: 12.5px;
  letter-spacing: 2.5px;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ================= FOOTER ================= */

.recent-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.recent-card-footer strong {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
}

.recent-view-btn {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  transition: color 0.25s ease;
}

.recent-view-btn::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.recent-card:hover .recent-view-btn::after {
  transform: translateX(6px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .recent-soft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .recent-soft {
    padding: var(--space-lg) 0;
  }

  .recent-soft-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .recent-card-img img {
    height: 130px;
  }
}

/* =====================================================
   FOOTER — MODERN BLUE
===================================================== */

.footer-blue {
  background: #3c4c16;
  color: #ffffff;
  padding-top: 80px;
}

/* =====================================================
   TOP GRID
===================================================== */

.footer-blue-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
}

/* =====================================================
   BRAND
===================================================== */

.footer-brand img {
  width: 280px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* contact */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact strong {
  font-size: 13px;
  display: block;
}

.footer-contact a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

/* =====================================================
   LINKS
===================================================== */

.footer-links h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* =====================================================
   NEWSLETTER
===================================================== */

.footer-newsletter h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-newsletter p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

/* form */

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

.newsletter-form button {
  background: #ffffff;
  color: #3e5822;
  border: none;
  padding: 12px 18px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.newsletter-note {
  font-size: 12px;
  opacity: 0.8;
}

/* =====================================================
   DIVIDER
===================================================== */

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 50px 0 20px;
}

/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

.footer-company strong {
  display: block;
  font-size: 14px;
}

.footer-company span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .footer-blue-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-blue-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* =====================================================
   ABOUT PAGE — EDITORIAL INTRO
===================================================== */

.about-intro {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

/* ================= LAYOUT ================= */

.about-intro-inner {
  max-width: 880px;
  margin: 0 auto;
}

/* ================= CONTENT ================= */

.about-intro-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
}

.about-intro-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 760px;
}

.about-intro-text p {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 740px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .about-intro {
    padding: var(--space-xl) 0;
  }

  .about-intro-text h2 {
    font-size: 30px;
  }

  .about-intro-lead {
    font-size: 16.5px;
  }
}

/* =====================================================
   CONTACT PAGE — EDITORIAL CONVERSATION
===================================================== */

.contact-page {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

/* ================= LAYOUT ================= */

.contact-page-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: start;
}

/* ================= LEFT CONTENT ================= */

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
}

.contact-lead {
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 520px;
}

.contact-points {
  margin-bottom: 36px;
  padding-left: 18px;
}

.contact-points li {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ================= DETAILS ================= */

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.contact-details strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-details span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ================= FORM ================= */

.contact-form-card {
  background: transparent;
  padding: 0;
}

.contact-form-card h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 420px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14.5px;
  margin-bottom: 16px;
  background: var(--surface);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ROW */

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ================= SUCCESS ================= */

.contact-success {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 50px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-success h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-success p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .contact-lead {
    margin-inline: auto;
  }

  .contact-details {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .contact-page {
    padding: var(--space-xl) 0;
  }
}

/* =====================================================
   FAQ PAGE — EDITORIAL KNOWLEDGE
===================================================== */

.faq-page {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

.faq-answer {
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-inner {
  max-width: 920px;
  margin: 0 auto;
}

/* ================= GROUP ================= */

.faq-group {
  margin-bottom: var(--space-xl);
}

.faq-group h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--text);
}

/* ================= ITEM ================= */

.faq-item {
  border-top: 1px solid var(--border);
  padding: 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

/* ================= QUESTION ================= */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: var(--text);
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question span {
  font-size: 18px;
  color: var(--text-faint);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

/* ================= ANSWER ================= */

.faq-answer {
  display: none;
  padding: 0 0 26px;
}

.faq-answer p {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--text-muted);
  max-width: 760px;
}

/* ================= ACTIVE ================= */

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  color: var(--primary);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .faq-page {
    padding: var(--space-xl) 0;
  }

  .faq-question {
    font-size: 17px;
    padding: 22px 0;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

/* =====================================================
   AUTH HERO — EDITORIAL ACCESS
===================================================== */

.auth-x-hero {
  background: var(--bg);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.auth-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* EYEBROW */

.auth-x-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

/* LEFT CONTENT */

.auth-x-hero-left h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text);
}

.auth-x-hero-left h1 span {
  color: var(--primary);
}

.auth-x-hero-left p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
}

/* RIGHT PANEL — CONTEXT */

.auth-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border);
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.auth-x-panel-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.auth-x-panel-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.auth-x-panel-item span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* =====================================================
   AUTH BODY
===================================================== */

.auth-x-body {
  padding: var(--space-xl) 0 var(--space-2xl);
  display: flex;
  justify-content: center;
}

/* CARD */

.auth-x-card {
  background: var(--surface);
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  padding: 42px;
  border: 1px solid var(--border);
}

/* HEADINGS */

.auth-x-card h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.auth-x-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 30px;
  text-align: center;
}

/* =====================================================
   AUTH FORM
===================================================== */

.auth-x-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-x-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.auth-x-field input {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14.5px;
  background: var(--surface);
}

.auth-x-field input:focus {
  outline: none;
  border-color: var(--primary);
}

/* =====================================================
   AUTH BUTTONS
===================================================== */

.auth-x-submit {
  margin-top: 6px;
  background: var(--primary);
  color: #ffffff;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.auth-x-submit:hover {
  background: var(--primary-dark);
  color: #629d23;
  border: 2px solid #629d23;
}

/* =====================================================
   AUTH META
===================================================== */

.auth-x-meta {
  margin-top: 18px;
  text-align: right;
}

.auth-x-meta a {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

/* DIVIDER */

.auth-x-divider {
  margin: 32px 0;
  text-align: center;
  position: relative;
}

.auth-x-divider span {
  background: var(--surface);
  padding: 0 12px;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.auth-x-divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: var(--border);
}

/* REGISTER CTA */

.auth-x-secondary {
  text-align: center;
}

.auth-x-secondary p {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.auth-x-outline-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.auth-x-outline-btn:hover {
  background: var(--primary-soft);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .auth-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .auth-x-hero-panel {
    border-left: none;
    padding-left: 0;
  }

  .auth-x-hero-left h1 {
    font-size: 34px;
  }

  .auth-x-body {
    padding: var(--space-lg) 0 var(--space-xl);
  }
}

/* =====================================================
   SIGNUP HERO — EDITORIAL INVITATION
===================================================== */

.signup-x-hero {
  background: var(--bg);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.signup-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* EYEBROW */

.signup-x-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

/* LEFT CONTENT */

.signup-x-hero-left h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text);
}

.signup-x-hero-left h1 span {
  color: var(--primary);
}

.signup-x-hero-left p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
}

/* RIGHT PANEL — VALUE CONTEXT */

.signup-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border);
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.signup-x-panel-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.signup-x-panel-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.signup-x-panel-item span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* =====================================================
   SIGNUP BODY
===================================================== */

.signup-x-body {
  padding: var(--space-xl) 0 var(--space-2xl);
  display: flex;
  justify-content: center;
}

/* CARD */

.signup-x-card {
  background: var(--surface);
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  padding: 42px;
  border: 1px solid var(--border);
}

/* HEADINGS */

.signup-x-card h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.signup-x-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 30px;
  text-align: center;
}

/* =====================================================
   SIGNUP FORM
===================================================== */

.signup-x-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.signup-x-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.signup-x-field input {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14.5px;
  background: var(--surface);
}

.signup-x-field input:focus {
  outline: none;
  border-color: var(--primary);
}

/* =====================================================
   SIGNUP BUTTON
===================================================== */

.signup-x-submit {
  margin-top: 6px;
  background: var(--primary);
  color: #ffffff;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.signup-x-submit:hover {
  background: var(--primary-dark);
  color: #629d23;
  border: 2px solid #629d23;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .signup-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .signup-x-hero-panel {
    border-left: none;
    padding-left: 0;
  }

  .signup-x-hero-left h1 {
    font-size: 34px;
  }

  .signup-x-body {
    padding: var(--space-lg) 0 var(--space-xl);
  }
}

/* =====================================================
   DASHBOARD HERO — EDITORIAL CONTEXT
===================================================== */

.dash-x-hero {
  background: var(--bg);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.dash-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.dash-x-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.dash-x-hero-left h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text);
}

.dash-x-hero-left h1 span {
  color: var(--primary);
}

.dash-x-hero-left p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
}

/* HERO PANEL — SUMMARY */

.dash-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border);
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.dash-x-panel-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.dash-x-panel-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.dash-x-panel-item span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* =====================================================
   DASHBOARD BODY
===================================================== */

.dash-x-body {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.dash-x-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
}

/* =====================================================
   SIDEBAR — NAVIGATION
===================================================== */

.dash-x-sidebar {
  background: transparent;
  padding: 0;
}

/* USER */

.dash-x-user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.dash-x-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.dash-x-user-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.dash-x-user-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* NAV */

.dash-x-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-x-nav a {
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.dash-x-nav a:hover {
  color: var(--primary);
}

.dash-x-nav a.active {
  color: var(--text);
}

.dash-x-nav a.danger {
  color: #dc2626;
}

/* =====================================================
   DASHBOARD MAIN
===================================================== */

.dash-x-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* CARD — CONTENT BLOCK */

.dash-x-card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.dash-x-card h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
}

/* =====================================================
   ACCOUNT INFO
===================================================== */

.dash-x-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.dash-x-info-grid span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.dash-x-info-grid strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* =====================================================
   QUICK ACTIONS
===================================================== */

.dash-x-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.dash-x-action {
  border-top: 1px solid var(--border);
  padding: 18px 0 0;
  transition: transform 0.25s ease;
}

.dash-x-action strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.dash-x-action span {
  font-size: 13.5px;
  color: var(--text-muted);
}

.dash-x-action:hover {
  transform: translateY(-3px);
}

/* =====================================================
   NOTICE — EDITORIAL CALLOUT
===================================================== */

.dash-x-notice {
  background: var(--surface);
  border-left: 3px solid var(--primary);
  padding: 22px 24px;
  border-radius: var(--radius-md);
}

.dash-x-notice strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.dash-x-notice p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .dash-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .dash-x-hero-panel {
    border-left: none;
    padding-left: 0;
  }

  .dash-x-layout {
    grid-template-columns: 1fr;
  }

  .dash-x-sidebar {
    order: 2;
  }

  .dash-x-main {
    order: 1;
  }

  .dash-x-info-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TRACK ORDER — EDITORIAL BASE
===================================================== */

.trk-x {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

.trk-x-body {
  max-width: 920px;
  margin: 0 auto;
}

.trk-x-layout {
  display: grid;
  gap: 40px;
}

/* =====================================================
   TRACK ORDER — SECTION
===================================================== */

.trk-x-card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.trk-x-card h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.trk-x-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

/* =====================================================
   TRACK ORDER — FORM
===================================================== */

.trk-x-form label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

.trk-x-input-row {
  display: flex;
  gap: 14px;
}

.trk-x-input-row input {
  flex: 1;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14.5px;
  background: var(--surface);
}

.trk-x-input-row input:focus {
  outline: none;
  border-color: var(--primary);
}

.trk-x-input-row button {
  padding: 16px 26px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease;
}

.trk-x-input-row button:hover {
  background: var(--primary-dark);
  color: #629d23;
  border: 2px solid #629d23;
}

/* =====================================================
   TRACK ORDER — ERROR
===================================================== */

.trk-x-error {
  margin-top: 26px;
  background: var(--surface);
  border-left: 3px solid #f97316;
  padding: 20px 22px;
  border-radius: var(--radius-md);
}

.trk-x-error strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.trk-x-error p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =====================================================
   TRACK ORDER — STATUS
===================================================== */

.trk-x-status {
  padding: 22px 24px;
  border-left: 3px solid var(--border);
  margin-bottom: 28px;
}

.trk-x-status strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.trk-x-status p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* VARIANTS */

.trk-x-status.processing {
  border-left-color: var(--primary);
}

.trk-x-status.dispatched {
  border-left-color: #16a34a;
}

/* =====================================================
   TRACK ORDER — SUMMARY
===================================================== */

.trk-x-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.trk-x-summary span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.trk-x-summary strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .trk-x-input-row {
    flex-direction: column;
  }

  .trk-x-summary {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   RETURN ORDER — EDITORIAL BASE
===================================================== */

.rtn-x {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

.rtn-x-body {
  max-width: 760px;
  margin: 0 auto;
}

/* =====================================================
   RETURN ORDER — SECTION
===================================================== */

.rtn-x-card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.rtn-x-card h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.rtn-x-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 100%;
}

/* =====================================================
   RETURN ORDER — FORM
===================================================== */

.rtn-x-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.rtn-x-field label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: var(--text);
}

.rtn-x-field input,
.rtn-x-field select,
.rtn-x-field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14.5px;
  background: var(--surface);
}

.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;
  border-color: var(--primary);
}

/* =====================================================
   RETURN ORDER — ERROR
===================================================== */

.rtn-x-error {
  background: var(--surface);
  border-left: 3px solid #f97316;
  padding: 20px 22px;
  border-radius: var(--radius-md);
}

.rtn-x-error strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.rtn-x-error p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =====================================================
   RETURN ORDER — ACTION
===================================================== */

.rtn-x-primary-btn {
  display: inline-block;
  margin-top: 6px;
  background: var(--primary);
  color: #ffffff;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.rtn-x-primary-btn:hover {
  background: var(--primary-dark);
  color: #629d23;
  border: 2px solid #629d23;
}

.rtn-x-note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 100%;
}

/* =====================================================
   RETURN ORDER — SUCCESS
===================================================== */

.rtn-x-success {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  text-align: center;
}

.rtn-x-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.rtn-x-success h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.rtn-x-success p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

/* =====================================================
   RETURN ORDER — SUMMARY
===================================================== */

.rtn-x-summary {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  margin-bottom: 28px;
}

.rtn-x-summary span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.rtn-x-summary strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .rtn-x {
    padding: var(--space-xl) 0;
  }
}

/* =====================================================
   CART — EDITORIAL BASE
===================================================== */

.crt-x {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

.crt-x-body {
  max-width: 1200px;
  margin: 0 auto;
}

/* =====================================================
   CART — EMPTY STATE
===================================================== */

.crt-x-empty {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 48px;
  text-align: center;
}

.crt-x-empty h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}

.crt-x-empty p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 28px;
}

/* =====================================================
   CART — LAYOUT
===================================================== */

.crt-x-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
}

.crt-x-items h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 28px;
}

/* =====================================================
   CART — ITEM (EDITORIAL ROW)
===================================================== */

.crt-x-item {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 22px;
  align-items: center;
}

/* IMAGE */

.crt-x-item-image img {
  width: 90px;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  background: var(--surface);
}

/* INFO */

.crt-x-item-info strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.crt-x-item-info span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* =====================================================
   CART — QUANTITY
===================================================== */

.crt-x-item-qty form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.crt-x-item-qty input {
  width: 64px;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  text-align: center;
  background: var(--surface);
}

.crt-x-item-qty button {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.crt-x-item-qty button:hover {
  background: var(--primary-soft);
}

/* =====================================================
   CART — TOTAL & REMOVE
===================================================== */

.crt-x-item-total {
  text-align: right;
}

.crt-x-item-total strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.crt-x-remove {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.crt-x-remove:hover {
  text-decoration: underline;
}

/* =====================================================
   CART — SUMMARY (EDITORIAL SIDEBAR)
===================================================== */

.crt-x-summary {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.crt-x-summary h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
}

/* ROWS */

.crt-x-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.crt-x-summary-row strong {
  color: var(--text);
}

.crt-x-summary-row.total {
  font-weight: 600;
  font-size: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text);
}

/* =====================================================
   CART — PRIMARY ACTION
===================================================== */

.crt-x-primary-btn {
  display: block;
  margin-top: 26px;
  background: var(--primary);
  color: #ffffff;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-align: center;
  transition: background 0.25s ease;
}

.crt-x-primary-btn.checkout:hover {
  background: var(--primary-dark);
  border: 2px solid #629d23;
}

/* TRUST TEXT */

.crt-x-trust {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .crt-x-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .crt-x-summary {
    position: static;
  }

  .crt-x-item {
    grid-template-columns: 70px 1fr;
    grid-template-areas:
      "img info"
      "img qty"
      "img total";
  }
}

@media (max-width: 600px) {
  .crt-x {
    padding: var(--space-xl) 0;
  }

  .crt-x-item {
    padding: 20px 0;
  }
}

/* =====================================================
   CHECKOUT — EDITORIAL BASE
===================================================== */

.chk-x {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

.chk-x-body {
  max-width: 1620px;
  margin: 0 auto;
}

/* =====================================================
   CHECKOUT — ERROR
===================================================== */

.chk-x-error {
  background: var(--surface);
  border-left: 3px solid #f97316;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 36px;
}

.chk-x-error strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.chk-x-error p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =====================================================
   CHECKOUT — LAYOUT
===================================================== */

.chk-x-layout {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 56px;
}

/* =====================================================
   CHECKOUT — SECTIONS (NOT CARDS)
===================================================== */

.chk-x-card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-bottom: 40px;
}

.chk-x-card h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
}

/* =====================================================
   CHECKOUT — FORM
===================================================== */

.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-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.chk-x-card input,
.chk-x-card textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14.5px;
  background: var(--surface);
}

.chk-x-card textarea {
  min-height: 120px;
  resize: vertical;
}

.chk-x-card input:focus,
.chk-x-card textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* =====================================================
   CHECKOUT — PAYMENTS (EDITORIAL OPTIONS)
===================================================== */

.chk-x-payments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.chk-x-payment {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.25s ease;
}

.chk-x-payment i {
  font-size: 22px;
  color: var(--text-faint);
  margin-top: 15px;
}

.chk-x-payment strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.chk-x-payment span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ACTIVE */

.chk-x-payment.active {
  color: var(--primary);
}

.chk-x-payment.active i {
  color: var(--primary);
}

/* =====================================================
   CHECKOUT — SUMMARY (EDITORIAL SIDEBAR)
===================================================== */

.chk-x-summary {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.chk-x-summary h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
}

/* SUMMARY ITEMS */

.chk-x-summary-items {
  margin-bottom: 22px;
}

.chk-x-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin-bottom: 12px;
  color: var(--text-muted);
  border: 2px solid #e3e0d9;
  padding: 10px;
  border-radius: 12px;
}

.chk-x-summary-item strong {
  color: var(--text);
  border-left: 2px solid #e3e0d9;
  padding-left: 15px;
}

/* TOTAL */

.chk-x-summary-total {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 24px;
}

.chk-x-summary-total div {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin-bottom: 10px;
}

.chk-x-summary-total .total {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

/* =====================================================
   CHECKOUT — CTA
===================================================== */

.chk-x-primary-btn {
  width: 100%;
  background: var(--primary);
  color: #ffffff;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.chk-x-primary-btn:hover {
  background: var(--primary-dark);
  color: #629d23;
  border: 2px solid #629d23;
}

.chk-x-trust {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .chk-x-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .chk-x-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  .chk-x {
    padding: var(--space-xl) 0;
  }
}

/* =====================================================
   ORDER SUCCESS — EDITORIAL BASE
===================================================== */

.ordx-success {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

.ordx-body {
  max-width: 1200px;
  margin: 0 auto;
}

.ordx-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
}

/* =====================================================
   MAIN AREA
===================================================== */

.ordx-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* =====================================================
   SECTION (NOT CARD)
===================================================== */

.ordx-card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.ordx-card h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.ordx-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 680px;
}

/* CONFIRMATION ACCENT */

.ordx-confirm {
  border-top-color: #16a34a;
}

/* =====================================================
   ORDER STATS
===================================================== */

.ordx-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.ordx-stats span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.ordx-stats strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* =====================================================
   WHAT HAPPENS NEXT
===================================================== */

.ordx-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ordx-steps li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.ordx-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 700;
}

/* =====================================================
   ACTIONS
===================================================== */

.ordx-actions {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}

.ordx-btn {
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background 0.25s ease;
}

/* PRIMARY */

.ordx-btn.primary {
  background: var(--primary);
  color: #ffffff;
}

.ordx-btn.primary:hover {
  background: var(--primary-dark);
  color: #629d23;
  border: 2px solid #629d23;
}

/* GHOST */

.ordx-btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.ordx-btn.ghost:hover {
  background: var(--primary-soft);
}

/* =====================================================
   RIGHT SIDEBAR
===================================================== */

.ordx-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* =====================================================
   STATUS RAIL — EDITORIAL PROGRESS
===================================================== */

.ordx-rail {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.rail-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  opacity: 0.5;
}

.rail-step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.rail-step strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ACTIVE */

.rail-step.active {
  opacity: 1;
}

.rail-step.active span {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.rail-step.active strong {
  color: var(--text);
}

/* =====================================================
   HELP BOX — CALM ASSISTANCE
===================================================== */

.ordx-help {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.ordx-help strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ordx-help p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
}

.ordx-help a {
  color: var(--primary);
  font-weight: 600;
}

/* =====================================================
   UTILITIES
===================================================== */

.text-black {
  color: var(--text);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .ordx-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ordx-stats {
    grid-template-columns: 1fr;
  }

  .ordx-actions {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .ordx-success {
    padding: var(--space-xl) 0;
  }
}

/* Policy Pages */
.policy-page {
  padding: 50px;
}

/* =====================================================
   SHOP PAGE — EDITORIAL BASE
===================================================== */

.shop-hard {
  background: var(--bg);
}

.shop-hard-body {
  padding: var(--space-xl) 0 var(--space-2xl);
}

/* =====================================================
   EMPTY STATE
===================================================== */

.shop-hard-empty {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 36px;
  text-align: center;
  margin-bottom: 56px;
}

.shop-hard-empty strong {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.shop-hard-empty p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

/* =====================================================
   SHOP GRID — CATALOG
===================================================== */

.shop-hard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px;
}

/* =====================================================
   SHOP PRODUCT — EDITORIAL TILE
===================================================== */

.shop-product-card {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  transition: none;
}

.shop-product-card:hover {
  transform: none;
  box-shadow: none;
}

/* =====================================================
   IMAGE
===================================================== */

.shop-product-image {
  position: relative;
  background: var(--surface);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.shop-product-image img {
  max-width: 100%;
  height: 170px;
  object-fit: contain;
  transition: none;
}

/* =====================================================
   STOCK BADGE — QUIET
===================================================== */

.shop-stock {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 999px;
}

.shop-stock.in {
  background: #ecfdf5;
  color: #15803d;
}

.shop-stock.out {
  background: #fef2f2;
  color: #b91c1c;
}

/* =====================================================
   INFO
===================================================== */

.shop-product-info {
  padding: 18px 0 0;
  flex: 1;
}

.shop-product-info h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text);
}

.shop-product-info p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* =====================================================
   FOOTER
===================================================== */

.shop-product-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* =====================================================
   ADD TO CART — EDITORIAL ACTION
===================================================== */

.shop-add-btn {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.shop-add-btn:hover {
  background: var(--primary-soft);
}

/* DISABLED */

.shop-disabled-btn {
  background: transparent;
  color: #94a3b8;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: not-allowed;
}

/* OUT OF STOCK */

.shop-product-card.out {
  opacity: 0.6;
}

/* LINK */

.shop-product-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .shop-hard-body {
    padding: var(--space-lg) 0 var(--space-xl);
  }

  .shop-product-image img {
    height: 150px;
  }
}

/* =====================================================
   PRODUCT DETAIL — PROFESSIONAL PDP
===================================================== */

.prd-pro {
  background: #fafafa;
  padding: 90px 0;
}

.prd-pro-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

/* IMAGE */

.prd-pro-media {
  background: white;
  border-radius: 18px;
  padding: 40px;
  border: 1px solid #e6e6e6;
}

.prd-pro-media img {
  width: 100%;
  height: 420px;
  object-fit: contain;
}

/* INFO */

.prd-pro-meta {
  font-size: 13px;
  color: #629d23;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.prd-pro-info h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 40px;
}

.prd-pro-rating {
  font-size: 14px;
  color: #f4b400;
  margin-bottom: 18px;
}

.prd-pro-rating span {
  color: #666;
  margin-left: 6px;
}

.prd-pro-price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.prd-pro-price small {
  display: block;
  font-size: 13px;
  color: #777;
}

.prd-pro-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 26px;
}

/* ACTIONS */

.prd-pro-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

/* TRUST */

.prd-pro-trust {
  display: flex;
  gap: 18px;
  font-size: 13.5px;
  color: #444;
}

/* =====================================================
   TABS
===================================================== */

.prd-pro-tabs {
  margin-top: 80px;
}

.prd-pro-tabs input {
  display: none;
}

.prd-pro-tab-head {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 30px;
}

.prd-pro-tab-head label {
  padding-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #666;
}

#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: #629d23;
  border-bottom: 2px solid #629d23;
}

.prd-pro-tab-body .prd-tab {
  display: none;
}

#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 */

.prd-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.prd-spec-table th,
.prd-spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 14.5px;
}

.prd-spec-table th {
  width: 260px;
  text-align: left;
  font-weight: 600;
  color: #333;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .prd-pro-top {
    grid-template-columns: 1fr;
  }

  .prd-pro-media img {
    height: 320px;
  }
}

/* =====================================================
   CATEGORY LANDING HERO
===================================================== */

.cat-landing {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* LINK */

.cat-landing-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* IMAGE */

.cat-landing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */

.cat-landing-content {
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
  color: #ffffff;
}

.cat-landing-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 16px;
}

.cat-landing-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}

.cat-landing-title span {
  color: var(--primary);
}

.cat-landing-text {
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 520px;
  opacity: 0.95;
  margin-bottom: 26px;
}

.cat-landing-cta {
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .cat-landing {
    height: 460px;
  }

  .cat-landing-content {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .cat-landing {
    height: 380px;
  }

  .cat-landing-title {
    font-size: 30px;
  }

  .cat-landing-text {
    font-size: 15px;
  }
} /* =====================================================
   CATEGORY LANDING HERO
===================================================== */

.cat-landing {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* LINK */

.cat-landing-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* IMAGE */

.cat-landing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY */

.cat-landing-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

/* CONTENT */

.cat-landing-content {
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
  color: #ffffff;
}

.cat-landing-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 16px;
}

.cat-landing-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: white;
}

.cat-landing-title span {
  color: var(--primary);
}

.cat-landing-text {
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 520px;
  opacity: 0.95;
  margin-bottom: 26px;
  color: white;
}

.cat-landing-cta {
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .cat-landing {
    height: 460px;
  }

  .cat-landing-content {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .cat-landing {
    height: 380px;
  }

  .cat-landing-title {
    font-size: 30px;
  }

  .cat-landing-text {
    font-size: 15px;
  }
}

/* =====================================================
   CATEGORY PAGE — BASE
===================================================== */

.category-page {
  background: #ffffff;
}

/* =====================================================
   CATEGORY HERO
===================================================== */

.category-hero {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--border);
}

.category-hero h1 {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
}

.category-hero p {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* =====================================================
   CATEGORY CONTENT
===================================================== */

.category-content {
  padding: 80px 0 120px;
}

/* INFO / SEO BLOCK */

.category-info {
  max-width: 820px;
  margin-bottom: 50px;
}

.category-info p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-muted);
}

/* EMPTY STATE */

.category-empty {
  background: #f4f8fd;
  border-radius: 18px;
  padding: 36px;
  font-size: 15px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  text-align: center;
  max-width: 1200px;
}

/* =====================================================
   PRODUCT GRID
===================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.08);
}

/* LINK WRAPPER */

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* IMAGE */

.product-image {
  background: white;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid black;
}

.product-image img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

/* INFO */

.product-info {
  padding: 22px;
}

.product-info h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
  color: var(--text);
}

.product-info p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* META */

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-meta .price {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.product-meta .stock {
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
}

/* STOCK STATES */

.in-stock {
  background: #ecfdf5;
  color: #15803d;
}

.out-stock {
  background: #fef2f2;
  color: #b91c1c;
}

/* =====================================================
   ADD TO CART
===================================================== */

.add-cart-form {
  padding: 0 22px 22px;
  background-color: #629d23;
  text-align: center;
}

.btn-disabled {
  margin: 0 22px 22px;
  padding: 14px;
  border-radius: 14px;
  background: #f1f5f9;
  color: #94a3b8;
  font-weight: 700;
  border: 1px solid var(--border);
  cursor: not-allowed;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .category-content {
    padding: 60px 0 90px;
  }

  .product-image img {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .category-hero {
    padding: 70px 0 50px;
  }

  .category-hero h1 {
    font-size: 30px;
  }

  .product-image img {
    height: 140px;
  }
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Pagination */
.pagination {
  margin-top: 50px;
  text-align: center;
}

.pagination a {
  background: #629d23;
  color: WHITE;
  font-size: 18px;
  padding: 15px;
  margin: 12px;
  border-radius: 12px;
  text-align: center;
}

/* ===============================
   BRANDS — SOFT UI MARQUEE
================================ */

.brands-soft {
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}

.brands-soft-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.brands-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.brands-soft-head h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.brands-soft-head p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* Marquee Container */
.brands-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

/* Track */
.brands-track {
  display: flex;
  width: max-content;
  animation: brandScroll 28s linear infinite;
}

/* Pause on hover (desktop friendly) */
.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

/* Brand Card */
.brand-item {
  flex: 0 0 auto;
  width: 180px;
  height: 90px;
  margin: 0 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.brand-item img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* Hover effect */
.brand-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animation */
@keyframes brandScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .brands-soft {
    padding: 70px 0;
  }

  .brands-soft-head h2 {
    font-size: 26px;
  }

  .brand-item {
    width: 140px;
    height: 75px;
    margin: 0 14px;
  }

  .brand-item img {
    max-width: 95px;
    max-height: 48px;
  }
}

@media (max-width: 480px) {
  .brands-track {
    animation-duration: 20s;
  }
}

/* =====================================================
   FEATURE STRIP — PRINTER ECOMMERCE
===================================================== */

.features-strip {
  background: #629d23;
  padding: 60px 0;
}

/* Container */
.features-strip .container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

/* Card */
.feature-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

/* Hover */
.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* Icon */
.feature-icon {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #6aa933;
  flex-shrink: 0;
}

/* Text */
.feature-text h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111;
}

.feature-text p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.4;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 22px 18px;
  }
}

/* New Category Page */
/* =====================================================
   CATEGORY HERO
===================================================== */

.category-hero {
  background: linear-gradient(180deg, #f6f8f5, #ffffff);
  padding: 70px 0;
}

.category-hero-inner {
  max-width: 980px;
}

.category-breadcrumb {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.category-breadcrumb a {
  color: #629d23;
  text-decoration: none;
}

.category-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.category-hero p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 720px;
}

/* =====================================================
   CATEGORY GRID
===================================================== */

.category-modern {
  padding: 80px 0;
  background: #ffffff;
}

.category-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* =====================================================
   PRODUCT CARD
===================================================== */

.category-product-card {
  background: #fafafa;
  border-radius: 18px;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.w-100 {
  width: 100%;
}

.category-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.category-product-link {
  text-decoration: none;
  color: inherit;
}

/* IMAGE */

.category-product-image {
  position: relative;
  background: white;
  padding: 22px;
}

.category-product-image img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

/* STOCK */

.category-stock {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
}

.category-stock.in {
  background: #eaf4e1;
  color: #629d23;
}

.category-stock.out {
  background: #fce8e8;
  color: #c0392b;
}

/* INFO */

.category-product-info {
  padding: 20px 22px 10px;
  background-color: #fafafa;
}

.category-product-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
}

.category-product-info p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}

.category-price {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

/* ACTION */

.category-cart-form,
.btn-disabled {
  margin: 16px 22px 22px;
}

.btn-disabled {
  width: calc(100% - 44px);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f3f3f3;
  color: #999;
  cursor: not-allowed;
}

/* =====================================================
   EMPTY STATE
===================================================== */

.category-empty-modern {
  text-align: center;
  padding: 100px 20px;
}

.category-empty-modern h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.category-empty-modern p {
  font-size: 15px;
  color: #666;
  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-grid-modern {
    grid-template-columns: 1fr;
  }

  .category-hero {
    padding: 50px 0;
  }
}

/* Contact Page */
.contact-form-wrap {
  background: white;
  padding: 25px;
}

.vertical-cta {
  position: fixed;
  right: -62px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.5px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  z-index: 9999;
}

.vertical-cta:hover {
  background: #1e40af;
  color: white;
}

/* Hide on small screens */
@media (max-width: 900px) {
  .vertical-cta {
    display: none;
  }
  .vertical-cta-hp{
      display:none;
  }
}
 


.vertical-cta-hp {
    position: fixed;
    left: -95px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.vertical-cta-hp:hover{
    background: #1e40af;
  color: white;
}
