/* =====================================================
   GLOBAL DESIGN SYSTEM — LIGHT EDITORIAL / PREMIUM
===================================================== */

/* ================= ROOT VARIABLES ================= */

:root {
  /* ---------- COLORS ---------- */
  --bg: #f6f5f2; /* warm editorial background */
  --surface: #ffffff;
  --card: #ffffff;

  --primary: #2252d1; /* muted gold */
  --accent: #2c6f8e; /* deep muted blue */

  --text: #121417;
  --text-muted: #5f6b7a;
  --text-faint: #9aa3ad;

  --border: #e3e0d9;

  /* ---------- RADII ---------- */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  /* ---------- SPACING ---------- */
  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 36px;
  --space-xl: 72px;
  --space-2xl: 110px;

  /* ---------- TYPOGRAPHY ---------- */
  --font-body:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;

  /* ---------- MOTION ---------- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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);
  max-width: 68ch;
}

strong {
  color: var(--text);
  font-weight: 600;
}

/* =====================================================
   LINKS
===================================================== */

a {
  color: var(--accent);
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

a:hover {
  color: var(--primary);
}

/* =====================================================
   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 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

/* PRIMARY */
.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
  background-color: white;
  border: 2px solid #2252d1;
}

/* GHOST */
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--surface);
}

/* =====================================================
   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%;
  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: #2252d1; /* 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: #cbd5f5;
  max-width: 1220px;
}

/* =====================================================
   TOP BAR — LIGHT EDITOAL
===================================================== */

.topbar-soft {
  background: #2252d1;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.topbar-soft span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 500;
}

.topbar-soft i {
  font-size: 12px;
  color: white;
}

/* =====================================================
   HEADER — LIGHT EDITORIAL
===================================================== */

.header-soft {
  background: var(--surface);
  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: 75px;
  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 — MARKETPLACE STYLE
===================================================== */

.hero-grid {
  padding: 40px 0 70px;
  background: url("../../assets/images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-grid-inner {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 20px;
}

/* =====================================================
   BANNERS (BASE)
===================================================== */

.hero-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  color: #fff;
  background: #000;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.6));
}

.hero-banner:hover img {
  transform: scale(1.05);
}

.container.hero-grid-inner {
  max-width: 1620px;
}

/* =====================================================
   CONTENT
===================================================== */

.hero-banner-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  z-index: 2;
}

.hero-banner-content h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: white;
}

.hero-banner-content h2 span {
  color: var(--primary);
}

.hero-banner-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: white;
}

.hero-banner-content p {
  font-size: 14.5px;
  opacity: 0.9;
  margin-bottom: 12px;
  color: white;
}

.hero-cta {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

/* =====================================================
   LAYOUT VARIANTS
===================================================== */

.hero-banner-lg {
  min-height: 420px;
  border: 2px solid white;
}

.hero-banner-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.hero-banner-sm {
  min-height: 200px;
  border: 2px solid white;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .hero-grid-inner {
    grid-template-columns: 1fr;
  }

  .hero-banner-lg {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .hero-grid {
    padding: 30px 0 50px;
  }

  .hero-banner-lg {
    min-height: 300px;
  }

  .hero-banner-sm {
    min-height: 180px;
  }

  .hero-banner-content {
    padding: 22px;
  }
}

/* =====================================================
   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;
}

/* 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 — EDITORIAL RETAIL
===================================================== */

.products-soft {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

/* ================= HEADER ================= */

.products-soft-head {
  max-width: 900px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.products-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}

.products-soft-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  margin-bottom: 16px;
}

.products-soft-head p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ================= TABS — EDITORIAL ================= */

.products-tabs {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  background: none;
  border: none;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-faint);
  cursor: pointer;
  position: relative;
}

.tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active::after,
.tab-btn:hover::after {
  width: 100%;
}

/* ================= GRID ================= */

.products-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 26px;
}

/* ================= PRODUCT TILE ================= */

.product-soft-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease);
}

.product-soft-card:hover {
  transform: translateY(-4px);
}

/* ================= IMAGE ================= */

.product-soft-image {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 18px;
  position: relative;
}

.product-soft-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

/* BADGE */

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.product-badge.out {
  background: #fef2f2;
  color: #b91c1c;
}

/* ================= INFO ================= */

.product-soft-info {
  padding: 0;
}

.product-soft-rating {
  font-size: 13px;
  color: #f59e0b;
  margin-bottom: 8px;
}

.product-soft-info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.product-soft-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ================= FOOTER ================= */

.product-soft-footer {
  margin-top: auto;
  padding: 12px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-soft-footer strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.product-soft-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

.product-soft-cta::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.product-soft-card:hover .product-soft-cta::after {
  transform: translateX(4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .products-soft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-soft {
    padding: var(--space-xl) 0;
  }

  .products-tabs {
    gap: 18px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .products-soft-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT US — CENTERED FULL CONTAINER
===================================================== */

.about-wide {
  background: #ffffff;
  padding: var(--space-2xl) 0;
}

/* ================= CONTENT ================= */

.about-wide-content {
  text-align: center;
  margin-bottom: 72px;
}

.about-wide-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-wide-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.8vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 22px;
}

.about-wide-lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 22px;
}

.about-wide-content p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 1080px;
  margin-inline: auto;
}

/* ================= ACTIONS ================= */

.about-wide-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}

/* ================= FEATURES ================= */

.about-wide-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.wide-feature {
  padding: 30px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  transition: all 0.25s ease;
}

.wide-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.wide-feature h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.wide-feature p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-faint);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .about-wide-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-wide {
    padding: var(--space-xl) 0;
  }

  .about-wide-features {
    grid-template-columns: 1fr;
  }

  .about-wide-actions {
    flex-direction: column;
  }

  .about-wide-actions .btn {
    width: 100%;
  }
}

/* =====================================================
   WHY CHOOSE US — EDITORIAL DISCLOSURE
===================================================== */

.why-soft {
  background: white;
  padding: var(--space-2xl) 0;
}

.why-soft-inner {
  max-width: 980px;
  margin: auto;
}

/* ================= HEADER ================= */

.why-soft-head {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.why-soft-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}

.why-soft-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  margin-bottom: 16px;
}

.why-soft-head p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ================= ACCORDION ================= */

.why-soft-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

/* ================= ITEM ================= */

.why-acc-item {
  background: transparent;
  border-bottom: 1px solid var(--border);
}

/* ================= HEADER ================= */

.why-acc-header {
  width: 100%;
  padding: 26px 0;
  background: none;
  border: none;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);

  transition: color 0.25s ease;
}

.why-acc-header:hover {
  color: var(--primary);
}

.why-acc-header i {
  font-size: 18px;
  color: var(--text-faint);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

/* ================= BODY ================= */

.why-acc-body {
  padding: 0 0 26px;
  display: none;
}

.why-acc-body p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 100%;
}

/* ================= ACTIVE ================= */

.why-acc-item.active .why-acc-body {
  display: block;
}

.why-acc-item.active .why-acc-header i {
  transform: rotate(45deg);
  color: var(--primary);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .why-soft {
    padding: var(--space-xl) 0;
  }

  .why-acc-header {
    font-size: 18px;
    padding: 22px 0;
  }

  .why-acc-body p {
    font-size: 15px;
  }
}

/* =====================================================
   TESTIMONIALS — EDITORIAL / TRUST
===================================================== */

.testimonials-soft {
  background: white;
  padding: var(--space-2xl) 0;
}

/* ================= HEADER ================= */

.testimonials-soft-head {
  max-width: 900px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.testimonials-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}

.testimonials-soft-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  margin-bottom: 16px;
}

.testimonials-soft-head p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ================= GRID ================= */

.testimonials-soft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* ================= QUOTE CARD ================= */

.testimonial-soft-card {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 32px 0 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s var(--ease);
}

.testimonial-soft-card:hover {
  transform: translateY(-4px);
}

/* ================= RATING ================= */

.testimonial-soft-rating {
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

/* ================= TEXT ================= */

.testimonial-soft-text {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 28px;
  flex-grow: 1;
  position: relative;
}

.testimonial-soft-text::before {
  content: "“";
  font-size: 42px;
  position: absolute;
  left: -18px;
  top: -10px;
  color: var(--primary);
}

/* ================= USER ================= */

.testimonial-soft-user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.testimonial-soft-user strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-soft-user span {
  font-size: 13px;
  color: var(--text-faint);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .testimonials-soft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .testimonials-soft {
    padding: var(--space-xl) 0;
  }

  .testimonials-soft-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-soft-text {
    font-size: 18px;
  }
}

/* =====================================================
   RECENTLY VIEWED — EDITORIAL RECALL
===================================================== */

.recent-soft {
  background: var(--bg);
  padding: var(--space-xl) 0;
}

/* ================= HEADER ================= */

.recent-soft-head {
  margin-bottom: var(--space-lg);
}

.recent-soft-head h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.recent-soft-head p {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 420px;
}

/* ================= GRID ================= */

.recent-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ================= TILE ================= */

.recent-card {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 22px 0 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease);
}

.recent-card:hover {
  transform: translateY(-3px);
}

/* ================= IMAGE ================= */

.recent-card-img {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 16px;
}

.recent-card-img img {
  width: 100%;
  height: 140px;
  object-fit: contain;
}

/* ================= NAME ================= */

.recent-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

/* ================= RATING ================= */

.recent-card-rating {
  font-size: 12.5px;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}

/* ================= FOOTER ================= */

.recent-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.recent-card-footer strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.recent-view-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

.recent-view-btn::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.recent-card:hover .recent-view-btn::after {
  transform: translateX(4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .recent-soft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recent-soft {
    padding: var(--space-lg) 0;
  }

  .recent-soft-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   FOOTER — EDITORIAL / BRAND CLOSURE
===================================================== */

.footer-dark {
  background: black;
  color: white;
  font-size: 14px;
  border-top: 1px solid var(--border);
}

/* ================= TOP ================= */

.footer-dark-top {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-dark-inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 80px;
}

/* ================= BRAND ================= */

.footer-dark-brand img {
  max-width: 240px;
  margin-bottom: 16px;
}

.footer-dark-brand p {
  line-height: 1.9;
  color: white;
  max-width: 420px;
  font-size: 15px;
}

/* ================= LINKS ================= */

.footer-dark-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 10px;
  color: white;
  text-decoration: none;
  line-height: 1.7;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-address {
  font-size: 13.5px;
  margin-top: 12px;
  color: var(--text-faint);
}

/* ================= BOTTOM ================= */

.footer-dark-bottom {
  padding: var(--space-lg) 0 0;
  border-top: 1px solid var(--border);
}

.footer-dark-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 18px;
}

.footer-dark-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.footer-dark-meta span {
  font-size: 13px;
  color: white;
}

.footer-dark-copy {
  font-size: 13.5px;
  color: white;
}

/* ================= DISCLAIMER ================= */

.footer-dark-disclaimer {
  font-size: 12.5px;
  line-height: 1.8;
  color: black;
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  text-align: center;
  background: var(--surface);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-dark-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-dark-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-dark-top {
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .footer-dark-links {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-dark-bottom-inner {
    flex-direction: column;
    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-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: #2252d1;
  border: 2px solid #2252d1;
}

/* =====================================================
   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: #2252d1;
  border: 2px solid #2252d1;
}

/* =====================================================
   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: #2252d1;
  border: 2px solid #2252d1;
}

/* =====================================================
   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: #2252d1;
  border: 2px solid #2252d1;
}

.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 #2252d1;
}

/* 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: 1200px;
  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 360px;
  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);
}

.chk-x-summary-item strong {
  color: var(--text);
}

/* 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: #2252d1;
  border: 2px solid #2252d1;
}

.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: #2252d1;
  border: 2px solid #2252d1;
}

/* 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 PAGE — EDITORIAL SYSTEM
===================================================== */

.prd-z {
  background: var(--bg);
  padding: var(--space-xl) 0 var(--space-2xl);
}

.prd-z-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* =====================================================
   TOP LAYOUT
===================================================== */

.prd-z-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  margin-bottom: 72px;
}

/* =====================================================
   GALLERY — QUIET FOCUS
===================================================== */

.prd-z-gallery {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.prd-z-gallery img {
  max-width: 100%;
  height: 420px;
  object-fit: contain;
}

/* =====================================================
   PRODUCT INFO
===================================================== */

.prd-z-brand {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.prd-z-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text);
}

.prd-z-rating {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.prd-z-rating strong {
  margin-left: 6px;
  color: var(--text);
}

/* =====================================================
   PRICE
===================================================== */

.prd-z-pricebox {
  margin-bottom: 18px;
}

.prd-z-price {
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
}

.prd-z-tax {
  font-size: 13px;
  color: var(--text-muted);
}

/* =====================================================
   DESCRIPTION
===================================================== */

.prd-z-desc {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 24px 0 30px;
  max-width: 520px;
}

/* =====================================================
   ACTIONS — CALM DECISION
===================================================== */

.prd-z-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}

.prd-z-btn {
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}

/* PRIMARY */

.prd-z-btn.primary {
  background: var(--primary);
  color: #ffffff;
}

.prd-z-btn.primary:hover {
  background: var(--primary-dark);
  color: #2252d1;
}

/* GHOST */

.prd-z-btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.prd-z-btn.ghost:hover {
  background: var(--primary-soft);
}

/* DISABLED */

.prd-z-btn.disabled {
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: not-allowed;
}

/* =====================================================
   TRUST SIGNALS
===================================================== */

.prd-z-trust {
  display: flex;
  gap: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* =====================================================
   FEATURES — TAGGED BENEFITS
===================================================== */

.prd-z-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 72px;
}

.prd-z-features span {
  background: var(--surface);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text);
}

/* =====================================================
   DETAILS — EDITORIAL SECTIONS
===================================================== */

.prd-z-details {
  display: grid;
  gap: 48px;
}

/* SECTION */

.prd-z-card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.prd-z-card h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.prd-z-card p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 1220px;
}

/* TABLE */

.prd-z-card table {
  width: 100%;
  border-collapse: collapse;
}

.prd-z-card th,
.prd-z-card td {
  text-align: left;
  padding: 10px 0;
  font-size: 14.5px;
}

.prd-z-card th {
  color: var(--text-muted);
  font-weight: 600;
}

/* LIST */

.prd-z-card ul {
  padding-left: 18px;
}

.prd-z-card ul li {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--text-muted);
}

/* HIGHLIGHT SECTION */

.prd-z-card.highlight {
  border-top-color: var(--primary);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .prd-z-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .prd-z-details {
    grid-template-columns: 1fr;
  }

  .prd-z-actions {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .prd-z-gallery img {
    height: 300px;
  }

  .prd-z-title {
    font-size: 28px;
  }
}

/* =====================================================
   CATEGORY LANDING HERO
===================================================== */

.cat-landing {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* LINK */

.cat-landing-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* IMAGE */

.cat-landing-img {
  width: 100%;
  height: auto; 
  display: block;
}

.cat-landing-overlay {
    display:none;
}

/* 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 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: #2252d1;
  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: #2252d1;
  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: white;
  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: white;
  border: 1px solid #e3e0d9;
  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;
  }
}
