:root {
  /* ---------- COLORS (NEW PREMIUM NEUTRAL + INDIGO) ---------- */

  --bg: #f8fafc; /* soft neutral background */
  --surface: #ffffff;
  --card: #ffffff;

  --primary: #4f46e5; /* indigo (modern SaaS feel) */
  --primary-dark: #4338ca;

  --accent: #0f172a; /* slate-900 */

  --text: #0f172a;
  --text-muted: #475569;
  --text-faint: #94a3b8;

  --border: #e2e8f0;

  /* subtle UI accents */
  --primary-soft: rgba(79, 70, 229, 0.08);
  --focus-ring: rgba(79, 70, 229, 0.25);

  /* ---------- RADII ---------- */

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* ---------- SPACING ---------- */

  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 36px;
  --space-xl: 70px;
  --space-2xl: 110px;

  /* ---------- TYPOGRAPHY ---------- */

  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-heading: "Inter", system-ui, -apple-system, sans-serif;

  /* ---------- MOTION ---------- */

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* =====================================================
   LAYOUT
===================================================== */

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.container-wide {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 32px;
}

.section {
  padding: var(--space-2xl) 0;
}

/* =====================================================
   TYPOGRAPHY — EDITORIAL
===================================================== */

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.12;
}

h3 {
  font-size: 24px;
}

p {
  font-size: 15.5px;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
}

strong {
  color: var(--text);
  font-weight: 600;
}

.mt-5 {
  margin-top: 25px;
}

/* =====================================================
   LINKS
===================================================== */

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  opacity: 0.9;
}

.text-white {
  color: white !important;
}

/* =====================================================
   DIVIDERS
===================================================== */

.hr {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: var(--space-xl) 0;
  opacity: 0.8;
}

/* =====================================================
   BUTTONS — REFINED
===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;

  border-radius: var(--radius-md);
  border: 1px solid transparent;

  cursor: pointer;

  transition: all 0.25s var(--ease);
}

/* PRIMARY */
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.35);
}

/* GHOST */
.btn-ghost {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
}

/* OUTLINE */
.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* =====================================================
   SURFACES
===================================================== */

.surface {
  background: var(--surface);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

/* =====================================================
   FORMS — CLEAN & NEUTRAL
===================================================== */

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;

  background: var(--surface);
  color: var(--text);

  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 14px;

  border-radius: var(--radius-sm);
  font-family: inherit;

  transition: all 0.2s ease;
}

/* placeholder */
input::placeholder,
textarea::placeholder {
  color: var(--text-faint);
}

/* focus state (IMPORTANT upgrade) */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

/* hover (subtle UX improvement) */
input:hover,
textarea:hover,
select:hover {
  border-color: #cbd5f5;
}

/* =====================================================
   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 — PREMIUM DARK HERO
===================================================== */

.page-header-dark {
  background: linear-gradient(135deg, #1e3a8a, #4f46e5);
  padding: 110px 0 90px;
  text-align: center;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.page-header-dark::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(120px);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

/* INNER */
.page-header-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ================= BREADCRUMB ================= */

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 500;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);

  padding: 8px 14px;
  border-radius: 999px;

  margin-bottom: 18px;
}

.breadcrumb a {
  color: #ffffff;
  opacity: 0.85;
  text-decoration: none;
  transition: 0.2s ease;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  color: #ffffff;
  font-weight: 600;
}

/* ================= TITLE ================= */

.page-header-dark h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

/* ================= SUBTEXT ================= */

.page-header-dark p {
  font-size: 16px;
  line-height: 1.75;
  color: #e0e7ff;
  max-width: 720px;
  margin: 0 auto;
}

/* =====================================================
   TOPBAR — REFINED
===================================================== */

.topbar-x {
  background: #020617;
  color: #cbd5f5;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* INNER */
.topbar-x-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

/* LEFT */
.topbar-x-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* RIGHT */
.topbar-x-right {
  display: flex;
  align-items: center;
}

/* TEXT */
.topbar-x span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5f5;
  font-weight: 500;
}

/* ICONS */
.topbar-x i {
  font-size: 13px;
  color: var(--primary);
  opacity: 0.9;
}

/* subtle hover */
.topbar-x span:hover {
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .topbar-x-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .topbar-x-left {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-header-dark {
    padding: 80px 0 60px;
  }
}

@media (max-width: 600px) {
  .topbar-x {
    display: none;
  }

  .page-header-dark h1 {
    font-size: 28px;
  }
}

/* ================= HEADER ================= */
.header-x {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-x-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 18px 0;
}

/* LOGO */
.logo-x img {
  height: 85px;
  display: block;
}

/* ================= NAV ================= */
.nav-x {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-x a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 6px;
}

/* underline animation */
.nav-x a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.25s ease;
}

.nav-x a:hover {
  color: var(--text);
}

.nav-x a:hover::after {
  width: 100%;
}

/* ================= ACTIONS ================= */
.header-x-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* SEARCH */
.search-x {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--surface);
}

.search-x input {
  border: none;
  outline: none;
  background: transparent;
  width: 150px;
}

/* ================= ICON BUTTON ================= */
.icon-x {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--text-muted);
  position: relative; /* IMPORTANT FIX */

  transition: 0.25s ease;
}

.icon-x:hover {
  border-color: var(--primary);
  color: var(--text);
}

/* ================= CART FIX ================= */
.cart-x {
  position: relative; /* ensures badge stays inside */
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;

  background: var(--primary);
  color: #fff;

  font-size: 11px;
  font-weight: 700;

  padding: 3px 7px;
  border-radius: 999px;

  line-height: 1;
}

/* ================= MOBILE BUTTON ================= */
.menu-x-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .nav-x,
  .search-x {
    display: none;
  }

  .menu-x-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-x-inner {
    grid-template-columns: auto 1fr auto;
  }
}

/* ================= MOBILE WRAPPER ================= */
.mobile-x {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 2000;

  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.mobile-x.active {
  transform: translateX(0);
}

/* ================= HEADER ================= */
.mobile-x-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-x-header img {
  height: 50px;
}

.mobile-x-header button {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
}

/* ================= BODY ================= */
.mobile-x-body {
  padding: 22px;
}

/* ================= SEARCH ================= */
.mobile-search-x {
  display: flex;
  align-items: center;
  gap: 10px;

  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;

  margin-bottom: 30px;
}

.mobile-search-x input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
}

/* ================= NAV ================= */
.mobile-nav-x {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-x a {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);

  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* ================= ACTIONS ================= */
.mobile-x-actions {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-x-actions a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);

  display: flex;
  align-items: center;
  gap: 10px;
}

/* ================= RESPONSIVE ================= */
@media (min-width: 1001px) {
  .mobile-x {
    display: none;
  }
}

/* ================= HERO GRID ================= */

.hero-grid-new {
  padding: 40px 0;
  background: url("../images/hero-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

/* LAYOUT */
.hero-grid-wrap {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 20px;
}

/* RIGHT SIDE GRID */
.hero-right {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;

  display: flex;
  align-items: flex-end;

  padding: 20px;
  min-height: 160px;

  text-decoration: none;
  color: #fff;

  background-size: cover;
  background-position: center;

  transition: 0.3s ease;
}

/* BIG CARD */
.hero-card-lg {
  min-height: 520px;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
}

/* TEXT */
.hero-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.hero-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: white;
}

.hero-card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #e5e7eb;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  background: var(--primary);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

/* LINK */
.hero-link {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}

/* HOVER */
.hero-card:hover {
  transform: translateY(-5px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .hero-grid-wrap {
    grid-template-columns: 1fr;
  }

  .hero-right {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-right {
    grid-template-columns: 1fr;
  }

  .hero-card-lg {
    min-height: 300px;
  }
}

/* ================= CATEGORY SECTION ================= */
.category-x {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* HEADER */
.category-x-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.category-x-head h2 {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 10px;
}

.category-x-head p {
  font-size: 15.5px;
  color: var(--text-muted);
}

/* GRID */
.category-x-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.category-x-card {
  position: relative;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;

  display: block;
  text-decoration: none;
  color: white;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* IMAGE */
.category-x-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.category-x-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 22px;

  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
}

/* TEXT */
.category-x-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.category-x-overlay span {
  font-size: 14px;
  color: #e5e7eb;
}

/* HOVER */
.category-x-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.category-x-card:hover img {
  transform: scale(1.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .category-x-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .category-x {
    padding: 60px 0;
  }

  .category-x-grid {
    grid-template-columns: 1fr;
  }

  .category-x-card {
    height: 220px;
  }
}

/* =====================================================
   PRODUCTS SECTION — COMPLETE REDESIGN
===================================================== */

.products-modern {
  background: linear-gradient(180deg, #4f46e5, #ffffff);
  padding: 90px 0;
}

/* ================= HEADER ================= */

.products-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.products-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 12px;
}

.products-modern-head h2 {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  color: white;
  line-height: 1.2;
}

.products-modern-head p {
  font-size: 15.5px;
  line-height: 1.7;
  color: white;
  max-width: 560px;
  margin: 0 auto;
}

/* ================= TABS ================= */

.products-modern-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.products-modern-tabs .tab-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;

  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);

  cursor: pointer;
  transition: all 0.25s ease;
}

.products-modern-tabs .tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ACTIVE TAB */
.products-modern-tabs .tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.25);
}

/* ================= GRID ================= */

.products-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ================= CARD ================= */

.product-modern-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);

  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;

  transition: all 0.3s ease;
}

.product-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.08);
}

/* ================= IMAGE ================= */

.product-modern-image {
  background: #ffffff; /* KEEP WHITE */
  padding: 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.product-modern-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

/* BADGE */
.product-modern-badge {
  position: absolute;
  top: 12px;
  left: 12px;

  background: #111;
  color: #fff;

  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
}

/* RATING */
.product-modern-rating {
  position: absolute;
  top: 12px;
  right: 12px;

  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;

  padding: 5px 10px;
  font-size: 12px;

  display: flex;
  gap: 4px;
  align-items: center;
}

.product-modern-rating i {
  color: #f59e0b;
}

/* ================= BODY ================= */

.product-modern-body {
  padding: 18px 20px;
  flex-grow: 1;
}

.product-modern-category {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-faint);
}

.product-modern-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 6px 0 8px;
  line-height: 1.4;
  color: var(--text);
}

.product-modern-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= FOOTER ================= */

.product-modern-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--border);

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* PRICE */
.product-modern-footer strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

/* ================= ADD TO CART ================= */

.product-modern-cta {
  display: block;
  text-align: center;

  background: var(--primary);
  color: #ffffff;

  padding: 12px;
  border-radius: 12px;

  font-size: 14px;
  font-weight: 600;

  transition: all 0.25s ease;
}

.product-modern-cta:hover {
  background: var(--primary-dark);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .products-modern-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-modern {
    padding: 70px 0;
  }

  .products-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .products-modern-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= ABOUT SECTION ================= */
.about-x {
  padding: 110px 0;
  background: white;
}

/* LAYOUT */
.about-x-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.about-x-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: inline-block;
}

.about-x-content h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-x-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-x-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 14px;
  max-width: 600px;
}

/* STATS */
.about-x-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.about-x-stats strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.about-x-stats span {
  font-size: 13px;
  color: var(--text-muted);
}

/* RIGHT CARDS */
.about-x-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-x-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;

  transition: all 0.3s ease;
}

.about-x-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-x-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-x-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .about-x-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .about-x {
    padding: 70px 0;
  }

  .about-x-cards {
    grid-template-columns: 1fr;
  }

  .about-x-stats {
    flex-direction: column;
    gap: 14px;
  }
}

/* ================= WHY SECTION ================= */
.why-x {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* LAYOUT */
.why-x-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.why-x-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: inline-block;
}

.why-x-content h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-x-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}

.why-x-content p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* RIGHT GRID */
.why-x-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* ITEM */
.why-x-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;

  padding: 18px 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);

  transition: all 0.3s ease;
}

.why-x-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.why-x-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);

  font-size: 18px;
}

/* TEXT */
.why-x-item h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-x-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= TRUST STRIP ================= */
.why-x-trust {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;

  padding: 30px;
  border-radius: 20px;

  background: #ffffff;
  border: 1px solid var(--border);
}

.why-x-trust-item {
  text-align: center;
}

.why-x-trust-item strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.why-x-trust-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .why-x-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .why-x {
    padding: 70px 0;
  }

  .why-x-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-x-trust {
    grid-template-columns: 1fr;
  }
}

/* ================= TESTIMONIAL ================= */
.testi-x {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

/* HEADER */
.testi-x-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.testi-x-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}

.testi-x-head h2 {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
}

.testi-x-head p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* GRID */
.testi-x-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.testi-x-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;

  display: flex;
  flex-direction: column;
  gap: 16px;

  transition: all 0.3s ease;
}

.testi-x-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* TOP */
.testi-x-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-x-top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-x-top h4 {
  font-size: 15px;
  font-weight: 700;
}

.testi-x-top span {
  font-size: 13px;
  color: var(--text-muted);
}

/* TEXT */
.testi-x-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* RATING */
.testi-x-rating {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 2px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .testi-x-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testi-x {
    padding: 70px 0;
  }

  .testi-x-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FAQ ================= */
.faq-x {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* LAYOUT */
.faq-x-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT */
.faq-x-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: inline-block;
}

.faq-x-content h2 {
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}

.faq-x-content p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================= ACCORDION ================= */
.faq-x-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ITEM */
.faq-x-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

/* QUESTION */
.faq-x-question {
  width: 100%;
  padding: 16px 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 14.5px;
  font-weight: 600;
  text-align: left;

  background: none;
  border: none;
  cursor: pointer;
}

/* ICON */
.faq-x-question span {
  font-size: 18px;
  transition: 0.25s;
}

/* ANSWER */
.faq-x-answer {
  max-height: 0;
  overflow: hidden;

  padding: 0 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;

  transition: all 0.3s ease;
}

/* ACTIVE */
.faq-x-item.active .faq-x-answer {
  max-height: 200px;
  padding: 10px 18px 16px;
}

.faq-x-item.active .faq-x-question span {
  transform: rotate(45deg);
}

/* HOVER */
.faq-x-item:hover {
  border-color: var(--primary);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .faq-x-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .faq-x {
    padding: 70px 0;
  }
}

/* =====================================================
   RECENTLY VIEWED — SMART RECALL
===================================================== */

.recent-modern {
  background: var(--bg);
  padding: 90px 0;
}

/* ================= HEADER ================= */

.recent-modern-head {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.recent-modern-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.recent-modern-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}

.recent-modern-head p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ================= GRID ================= */

.recent-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ================= CARD ================= */

.recent-item {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}

.recent-item:hover {
  transform: translateY(-3px);
}

/* IMAGE */

.recent-item-image {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 16px;
}

.recent-item-image img {
  width: 100%;
  height: 140px;
  object-fit: contain;
}

/* INFO */

.recent-item h3 {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 6px;
}

.recent-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* FOOTER */

.recent-item-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recent-item-footer strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.recent-item-footer span {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

.recent-item-footer span::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.recent-item:hover .recent-item-footer span::after {
  transform: translateX(4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .recent-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recent-modern {
    padding: 70px 0;
  }

  .recent-modern-grid {
    grid-template-columns: 1fr;
  }

  .recent-item-image img {
    height: 120px;
  }
}

/* =====================================================
   RECENTLY VIEWED — REFINED EDITORIAL RECALL
===================================================== */

.recent-soft {
  background: var(--bg);
  padding: calc(var(--space-xl) + 10px) 0;
}

/* ================= HEADER ================= */

.recent-soft-head {
  margin-bottom: calc(var(--space-lg) + 6px);
}

.recent-soft-head h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.recent-soft-head p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
}

/* ================= GRID ================= */

.recent-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

/* ================= TILE ================= */

.recent-card {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}

.recent-card:hover {
  transform: translateY(-5px);
}

/* ================= IMAGE ================= */

.recent-card-img {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 18px;
  transition:
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.recent-card:hover .recent-card-img {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.recent-card-img img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

/* ================= NAME ================= */

.recent-card h3 {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.35;
  color: var(--text);
}

/* ================= RATING ================= */

.recent-card-rating {
  font-size: 12.5px;
  letter-spacing: 2.5px;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ================= FOOTER ================= */

.recent-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.recent-card-footer strong {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
}

.recent-view-btn {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  transition: color 0.25s ease;
}

.recent-view-btn::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.recent-card:hover .recent-view-btn::after {
  transform: translateX(6px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .recent-soft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .recent-soft {
    padding: var(--space-lg) 0;
  }

  .recent-soft-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .recent-card-img img {
    height: 130px;
  }
}

/* =====================================================
   FOOTER — MODERN BLUE
===================================================== */

.footer-blue {
  background: black;
  color: #ffffff;
  padding-top: 80px;
}

/* =====================================================
   TOP GRID
===================================================== */

.footer-blue-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
}

/* =====================================================
   BRAND
===================================================== */

.footer-brand img {
  width: 180px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* contact */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact strong {
  font-size: 13px;
  display: block;
}

.footer-contact a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

/* =====================================================
   LINKS
===================================================== */

.footer-links h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* =====================================================
   NEWSLETTER
===================================================== */

.footer-newsletter h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-newsletter p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

/* form */

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

.newsletter-form button {
  background: #ffffff;
  color: #1e3a8a;
  border: none;
  padding: 12px 18px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.newsletter-note {
  font-size: 12px;
  opacity: 0.8;
}

/* =====================================================
   DIVIDER
===================================================== */

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 50px 0 20px;
}

/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

.footer-company strong {
  display: block;
  font-size: 14px;
}

.footer-company span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .footer-blue-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-blue-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* =====================================================
   ABOUT PAGE — EDITORIAL INTRO
===================================================== */

.about-intro {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

/* ================= LAYOUT ================= */

.about-intro-inner {
  max-width: 880px;
  margin: 0 auto;
}

/* ================= CONTENT ================= */

.about-intro-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
}

.about-intro-lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 760px;
}

.about-intro-text p {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 740px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .about-intro {
    padding: var(--space-xl) 0;
  }

  .about-intro-text h2 {
    font-size: 30px;
  }

  .about-intro-lead {
    font-size: 16.5px;
  }
}

/* =====================================================
   CONTACT PAGE — EDITORIAL CONVERSATION
===================================================== */

.contact-page {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

/* ================= LAYOUT ================= */

.contact-page-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: start;
}

/* ================= LEFT CONTENT ================= */

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
}

.contact-lead {
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 520px;
}

.contact-points {
  margin-bottom: 36px;
  padding-left: 18px;
}

.contact-points li {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ================= DETAILS ================= */

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.contact-details strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-details span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ================= FORM ================= */

.contact-form-card {
  background: transparent;
  padding: 0;
}

.contact-form-card h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 420px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14.5px;
  margin-bottom: 16px;
  background: var(--surface);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ROW */

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ================= SUCCESS ================= */

.contact-success {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 50px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-success h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-success p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .contact-lead {
    margin-inline: auto;
  }

  .contact-details {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .contact-page {
    padding: var(--space-xl) 0;
  }
}

/* =====================================================
   FAQ PAGE — EDITORIAL KNOWLEDGE
===================================================== */

.faq-page {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

.faq-answer {
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-inner {
  max-width: 920px;
  margin: 0 auto;
}

/* ================= GROUP ================= */

.faq-group {
  margin-bottom: var(--space-xl);
}

.faq-group h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--text);
}

/* ================= ITEM ================= */

.faq-item {
  border-top: 1px solid var(--border);
  padding: 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

/* ================= QUESTION ================= */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: var(--text);
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question span {
  font-size: 18px;
  color: var(--text-faint);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

/* ================= ANSWER ================= */

.faq-answer {
  display: none;
  padding: 0 0 26px;
}

.faq-answer p {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--text-muted);
  max-width: 760px;
}

/* ================= ACTIVE ================= */

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  color: var(--primary);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .faq-page {
    padding: var(--space-xl) 0;
  }

  .faq-question {
    font-size: 17px;
    padding: 22px 0;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

/* =====================================================
   AUTH HERO — EDITORIAL ACCESS
===================================================== */

.auth-x-hero {
  background: var(--bg);
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.auth-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* EYEBROW */

.auth-x-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

/* LEFT CONTENT */

.auth-x-hero-left h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text);
}

.auth-x-hero-left h1 span {
  color: var(--primary);
}

.auth-x-hero-left p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
}

/* RIGHT PANEL — CONTEXT */

.auth-x-hero-panel {
  background: transparent;
  border-left: 1px solid var(--border);
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.auth-x-panel-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.auth-x-panel-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.auth-x-panel-item span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* =====================================================
   AUTH BODY
===================================================== */

.auth-x-body {
  padding: var(--space-xl) 0 var(--space-2xl);
  display: flex;
  justify-content: center;
}

/* CARD */

.auth-x-card {
  background: var(--surface);
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  padding: 42px;
  border: 1px solid var(--border);
}

/* HEADINGS */

.auth-x-card h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.auth-x-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 30px;
  text-align: center;
}

/* =====================================================
   AUTH FORM
===================================================== */

.auth-x-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-x-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.auth-x-field input {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14.5px;
  background: var(--surface);
}

.auth-x-field input:focus {
  outline: none;
  border-color: var(--primary);
}

/* =====================================================
   AUTH BUTTONS
===================================================== */

.auth-x-submit {
  margin-top: 6px;
  background: var(--primary);
  color: #ffffff;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.auth-x-submit:hover {
  background: var(--primary-dark);
  color: #2056df;
  border: 2px solid #2056df;
}

/* =====================================================
   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: #2056df;
  border: 2px solid #2056df;
}

/* =====================================================
   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: #2056df;
  border: 2px solid #2056df;
}

/* =====================================================
   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: #2056df;
  border: 2px solid #2056df;
}

.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 #2056df;
}

/* TRUST TEXT */

.crt-x-trust {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .crt-x-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .crt-x-summary {
    position: static;
  }

  .crt-x-item {
    grid-template-columns: 70px 1fr;
    grid-template-areas:
      "img info"
      "img qty"
      "img total";
  }
}

@media (max-width: 600px) {
  .crt-x {
    padding: var(--space-xl) 0;
  }

  .crt-x-item {
    padding: 20px 0;
  }
}

/* =====================================================
   CHECKOUT — EDITORIAL BASE
===================================================== */

.chk-x {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

.chk-x-body {
  max-width: 1620px;
  margin: 0 auto;
}

/* =====================================================
   CHECKOUT — ERROR
===================================================== */

.chk-x-error {
  background: var(--surface);
  border-left: 3px solid #f97316;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 36px;
}

.chk-x-error strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.chk-x-error p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =====================================================
   CHECKOUT — LAYOUT
===================================================== */

.chk-x-layout {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 56px;
}

/* =====================================================
   CHECKOUT — SECTIONS (NOT CARDS)
===================================================== */

.chk-x-card {
  background: transparent;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-bottom: 40px;
}

.chk-x-card h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
}

/* =====================================================
   CHECKOUT — FORM
===================================================== */

.chk-x-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.chk-x-grid.single {
  grid-template-columns: 1fr;
}

.chk-x-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.chk-x-card input,
.chk-x-card textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14.5px;
  background: var(--surface);
}

.chk-x-card textarea {
  min-height: 120px;
  resize: vertical;
}

.chk-x-card input:focus,
.chk-x-card textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* =====================================================
   CHECKOUT — PAYMENTS (EDITORIAL OPTIONS)
===================================================== */

.chk-x-payments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.chk-x-payment {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.25s ease;
}

.chk-x-payment i {
  font-size: 22px;
  color: var(--text-faint);
  margin-top: 15px;
}

.chk-x-payment strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.chk-x-payment span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ACTIVE */

.chk-x-payment.active {
  color: var(--primary);
}

.chk-x-payment.active i {
  color: var(--primary);
}

/* =====================================================
   CHECKOUT — SUMMARY (EDITORIAL SIDEBAR)
===================================================== */

.chk-x-summary {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.chk-x-summary h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
}

/* SUMMARY ITEMS */

.chk-x-summary-items {
  margin-bottom: 22px;
}

.chk-x-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin-bottom: 12px;
  color: var(--text-muted);
  border: 2px solid #e3e0d9;
  padding: 10px;
  border-radius: 12px;
}

.chk-x-summary-item strong {
  color: var(--text);
  border-left: 2px solid #e3e0d9;
  padding-left: 15px;
}

/* TOTAL */

.chk-x-summary-total {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 24px;
}

.chk-x-summary-total div {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin-bottom: 10px;
}

.chk-x-summary-total .total {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

/* =====================================================
   CHECKOUT — CTA
===================================================== */

.chk-x-primary-btn {
  width: 100%;
  background: var(--primary);
  color: #ffffff;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.chk-x-primary-btn:hover {
  background: var(--primary-dark);
  color: #2056df;
  border: 2px solid #2056df;
}

.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: #2056df;
  border: 2px solid #2056df;
}

/* GHOST */

.ordx-btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.ordx-btn.ghost:hover {
  background: var(--primary-soft);
}

/* =====================================================
   RIGHT SIDEBAR
===================================================== */

.ordx-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* =====================================================
   STATUS RAIL — EDITORIAL PROGRESS
===================================================== */

.ordx-rail {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.rail-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  opacity: 0.5;
}

.rail-step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.rail-step strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ACTIVE */

.rail-step.active {
  opacity: 1;
}

.rail-step.active span {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.rail-step.active strong {
  color: var(--text);
}

/* =====================================================
   HELP BOX — CALM ASSISTANCE
===================================================== */

.ordx-help {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.ordx-help strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ordx-help p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
}

.ordx-help a {
  color: var(--primary);
  font-weight: 600;
}

/* =====================================================
   UTILITIES
===================================================== */

.text-black {
  color: var(--text);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .ordx-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ordx-stats {
    grid-template-columns: 1fr;
  }

  .ordx-actions {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .ordx-success {
    padding: var(--space-xl) 0;
  }
}

/* Policy Pages */
.policy-page {
  padding: 50px;
}

/* =====================================================
   SHOP PAGE — EDITORIAL BASE
===================================================== */

.shop-hard {
  background: var(--bg);
}

.shop-hard-body {
  padding: var(--space-xl) 0 var(--space-2xl);
}

/* =====================================================
   EMPTY STATE
===================================================== */

.shop-hard-empty {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 36px;
  text-align: center;
  margin-bottom: 56px;
}

.shop-hard-empty strong {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.shop-hard-empty p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto;
}

/* =====================================================
   SHOP GRID — CATALOG
===================================================== */

.shop-hard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px;
}

/* =====================================================
   SHOP PRODUCT — EDITORIAL TILE
===================================================== */

.shop-product-card {
  background: transparent;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  transition: none;
}

.shop-product-card:hover {
  transform: none;
  box-shadow: none;
}

/* =====================================================
   IMAGE
===================================================== */

.shop-product-image {
  position: relative;
  background: var(--surface);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.shop-product-image img {
  max-width: 100%;
  height: 170px;
  object-fit: contain;
  transition: none;
}

/* =====================================================
   STOCK BADGE — QUIET
===================================================== */

.shop-stock {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 999px;
}

.shop-stock.in {
  background: #ecfdf5;
  color: #15803d;
}

.shop-stock.out {
  background: #fef2f2;
  color: #b91c1c;
}

/* =====================================================
   INFO
===================================================== */

.shop-product-info {
  padding: 18px 0 0;
  flex: 1;
}

.shop-product-info h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text);
}

.shop-product-info p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* =====================================================
   FOOTER
===================================================== */

.shop-product-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* =====================================================
   ADD TO CART — EDITORIAL ACTION
===================================================== */

.shop-add-btn {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.shop-add-btn:hover {
  background: var(--primary-soft);
}

/* DISABLED */

.shop-disabled-btn {
  background: transparent;
  color: #94a3b8;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: not-allowed;
}

/* OUT OF STOCK */

.shop-product-card.out {
  opacity: 0.6;
}

/* LINK */

.shop-product-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .shop-hard-body {
    padding: var(--space-lg) 0 var(--space-xl);
  }

  .shop-product-image img {
    height: 150px;
  }
}

/* =====================================================
   PRODUCT DETAIL — PROFESSIONAL PDP
===================================================== */

.prd-pro {
  background: #fafafa;
  padding: 90px 0;
}

.prd-pro-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

/* IMAGE */

.prd-pro-media {
  background: white;
  border-radius: 18px;
  padding: 40px;
  border: 1px solid #e6e6e6;
}

.prd-pro-media img {
  width: 100%;
  height: 420px;
  object-fit: contain;
}

/* INFO */

.prd-pro-meta {
  font-size: 13px;
  color: #2056df;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.prd-pro-info h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 40px;
}

.prd-pro-rating {
  font-size: 14px;
  color: #f4b400;
  margin-bottom: 18px;
}

.prd-pro-rating span {
  color: #666;
  margin-left: 6px;
}

.prd-pro-price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.prd-pro-price small {
  display: block;
  font-size: 13px;
  color: #777;
}

.prd-pro-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 26px;
}

/* ACTIONS */

.prd-pro-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

/* TRUST */

.prd-pro-trust {
  display: flex;
  gap: 18px;
  font-size: 13.5px;
  color: #444;
}

/* =====================================================
   TABS
===================================================== */

.prd-pro-tabs {
  margin-top: 80px;
}

.prd-pro-tabs input {
  display: none;
}

.prd-pro-tab-head {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 30px;
}

.prd-pro-tab-head label {
  padding-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #666;
}

#tab1:checked ~ .prd-pro-tab-head label[for="tab1"],
#tab2:checked ~ .prd-pro-tab-head label[for="tab2"],
#tab3:checked ~ .prd-pro-tab-head label[for="tab3"],
#tab4:checked ~ .prd-pro-tab-head label[for="tab4"] {
  color: #2056df;
  border-bottom: 2px solid #2056df;
}

.prd-pro-tab-body .prd-tab {
  display: none;
}

#tab1:checked ~ .prd-pro-tab-body .prd-tab:nth-child(1),
#tab2:checked ~ .prd-pro-tab-body .prd-tab:nth-child(2),
#tab3:checked ~ .prd-pro-tab-body .prd-tab:nth-child(3),
#tab4:checked ~ .prd-pro-tab-body .prd-tab:nth-child(4) {
  display: block;
}

/* TABLE */

.prd-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.prd-spec-table th,
.prd-spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 14.5px;
}

.prd-spec-table th {
  width: 260px;
  text-align: left;
  font-weight: 600;
  color: #333;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .prd-pro-top {
    grid-template-columns: 1fr;
  }

  .prd-pro-media img {
    height: 320px;
  }
}

/* =====================================================
   CATEGORY LANDING HERO
===================================================== */

.cat-landing {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* LINK */

.cat-landing-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* IMAGE */

.cat-landing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */

.cat-landing-content {
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
  color: #ffffff;
}

.cat-landing-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 16px;
}

.cat-landing-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}

.cat-landing-title span {
  color: var(--primary);
}

.cat-landing-text {
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 520px;
  opacity: 0.95;
  margin-bottom: 26px;
}

.cat-landing-cta {
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .cat-landing {
    height: 460px;
  }

  .cat-landing-content {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .cat-landing {
    height: 380px;
  }

  .cat-landing-title {
    font-size: 30px;
  }

  .cat-landing-text {
    font-size: 15px;
  }
} /* =====================================================
   CATEGORY LANDING HERO
===================================================== */

.cat-landing {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* LINK */

.cat-landing-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* IMAGE */

.cat-landing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY */

.cat-landing-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

/* CONTENT */

.cat-landing-content {
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
  color: #ffffff;
}

.cat-landing-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 16px;
}

.cat-landing-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: white;
}

.cat-landing-title span {
  color: var(--primary);
}

.cat-landing-text {
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 520px;
  opacity: 0.95;
  margin-bottom: 26px;
  color: white;
}

.cat-landing-cta {
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .cat-landing {
    height: 460px;
  }

  .cat-landing-content {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .cat-landing {
    height: 380px;
  }

  .cat-landing-title {
    font-size: 30px;
  }

  .cat-landing-text {
    font-size: 15px;
  }
}

/* =====================================================
   CATEGORY PAGE — BASE
===================================================== */

.category-page {
  background: #ffffff;
}

/* =====================================================
   CATEGORY HERO
===================================================== */

.category-hero {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--border);
}

.category-hero h1 {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
}

.category-hero p {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* =====================================================
   CATEGORY CONTENT
===================================================== */

.category-content {
  padding: 80px 0 120px;
}

/* INFO / SEO BLOCK */

.category-info {
  max-width: 820px;
  margin-bottom: 50px;
}

.category-info p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-muted);
}

/* EMPTY STATE */

.category-empty {
  background: #f4f8fd;
  border-radius: 18px;
  padding: 36px;
  font-size: 15px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  text-align: center;
  max-width: 1200px;
}

/* =====================================================
   PRODUCT GRID
===================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.08);
}

/* LINK WRAPPER */

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* IMAGE */

.product-image {
  background: white;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid black;
}

.product-image img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

/* INFO */

.product-info {
  padding: 22px;
}

.product-info h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
  color: var(--text);
}

.product-info p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* META */

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-meta .price {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.product-meta .stock {
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
}

/* STOCK STATES */

.in-stock {
  background: #ecfdf5;
  color: #15803d;
}

.out-stock {
  background: #fef2f2;
  color: #b91c1c;
}

/* =====================================================
   ADD TO CART
===================================================== */

.add-cart-form {
  padding: 0 22px 22px;
  background-color: #2056df;
  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: #2056df;
  color: WHITE;
  font-size: 18px;
  padding: 15px;
  margin: 12px;
  border-radius: 12px;
  text-align: center;
}

/* ===============================
   BRANDS — SOFT UI MARQUEE
================================ */

.brands-soft {
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}

.brands-soft-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.brands-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.brands-soft-head h2 {
  font-size: 34px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.brands-soft-head p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* Marquee Container */
.brands-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

/* Track */
.brands-track {
  display: flex;
  width: max-content;
  animation: brandScroll 28s linear infinite;
}

/* Pause on hover (desktop friendly) */
.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

/* Brand Card */
.brand-item {
  flex: 0 0 auto;
  width: 180px;
  height: 90px;
  margin: 0 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.brand-item img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* Hover effect */
.brand-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animation */
@keyframes brandScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .brands-soft {
    padding: 70px 0;
  }

  .brands-soft-head h2 {
    font-size: 26px;
  }

  .brand-item {
    width: 140px;
    height: 75px;
    margin: 0 14px;
  }

  .brand-item img {
    max-width: 95px;
    max-height: 48px;
  }
}

@media (max-width: 480px) {
  .brands-track {
    animation-duration: 20s;
  }
}

/* ================= FEATURES ================= */
.features-x {
  background: #4f46e5;
  padding: 20px 0;
}

/* GRID */
.features-x-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* CARD */
.feature-x {
  text-align: center;
  padding: 24px 18px;
  border-radius: 18px;

  transition: all 0.3s ease;
}

/* HOVER */
.feature-x:hover {
  transform: translateY(-6px);
}

/* ICON */
.feature-x-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: var(--primary-soft);
  color: white;
  border: 2px solid white;
  font-size: 22px;
}

/* TITLE */
.feature-x h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

/* TEXT */
.feature-x p {
  font-size: 14px;
  color: white;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .features-x-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .features-x {
    padding: 50px 0;
  }

  .features-x-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .features-x-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   CATEGORY HERO
===================================================== */

.category-hero {
  background: linear-gradient(180deg, #f6f8f5, #ffffff);
  padding: 70px 0;
}

.category-hero-inner {
  max-width: 980px;
}

.category-breadcrumb {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.category-breadcrumb a {
  color: #2056df;
  text-decoration: none;
}

.category-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.category-hero p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 720px;
}

/* =====================================================
   CATEGORY GRID
===================================================== */

.category-modern {
  padding: 80px 0;
  background: #ffffff;
}

.category-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* =====================================================
   PRODUCT CARD
===================================================== */

.category-product-card {
  background: #fafafa;
  border-radius: 18px;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.w-100 {
  width: 100%;
}

.category-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.category-product-link {
  text-decoration: none;
  color: inherit;
}

/* IMAGE */

.category-product-image {
  position: relative;
  background: white;
  padding: 22px;
}

.category-product-image img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

/* STOCK */

.category-stock {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
}

.category-stock.in {
  background: #eaf4e1;
  color: #2056df;
}

.category-stock.out {
  background: #fce8e8;
  color: #c0392b;
}

/* INFO */

.category-product-info {
  padding: 20px 22px 10px;
  background-color: #fafafa;
}

.category-product-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
}

.category-product-info p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}

.category-price {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

/* ACTION */

.category-cart-form,
.btn-disabled {
  margin: 16px 22px 22px;
}

.btn-disabled {
  width: calc(100% - 44px);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f3f3f3;
  color: #999;
  cursor: not-allowed;
}

/* =====================================================
   EMPTY STATE
===================================================== */

.category-empty-modern {
  text-align: center;
  padding: 100px 20px;
}

.category-empty-modern h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.category-empty-modern p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {
  .category-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .category-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .category-grid-modern {
    grid-template-columns: 1fr;
  }

  .category-hero {
    padding: 50px 0;
  }
}

/* Contact Page */
.contact-form-wrap {
  background: white;
  padding: 25px;
}

.vertical-cta {
  position: fixed;
  right: -62px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.5px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  z-index: 9999;
}

.vertical-cta:hover {
  background: #1e40af;
  color: white;
}

/* Hide on small screens */
@media (max-width: 900px) {
  .vertical-cta {
    display: none;
  }
  .vertical-cta-hp{
      display:none;
  }
}
 


.vertical-cta-hp {
    position: fixed;
    left: -95px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

.vertical-cta-hp:hover{
    background: #1e40af;
  color: white;
}
