/* =====================================================
   GLOBAL DESIGN SYSTEM — SOFT / ELEGANT ECOMMERCE UI
===================================================== */

:root {
  /* ================= BRAND ================= */
  --primary: #4f9cff; /* Soft Trust Blue */
  --primary-soft: #eaf2ff;
  --primary-dark: #377fe6;

  --accent: #6cc9b8; /* Calm Mint Accent */
  --danger: #ef4444;
  --success: #22c55e;

  /* ================= BASE ================= */
  --bg: #f6f9fc; /* Page Background */
  --surface: #ffffff;
  --card: #ffffff;
  --border: #e5eaf1;

  /* ================= TEXT ================= */
  --text: #0f172a; /* Deep Blue-Black */
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* ================= RADII ================= */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;

  /* ================= SHADOWS ================= */
  --shadow-xs: 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 50px rgba(15, 23, 42, 0.12);

  /* ================= MOTION ================= */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* =====================================================
   LAYOUT
===================================================== */

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

.container-wide {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 15.5px;
}

strong {
  color: var(--text);
}

/* =====================================================
   LINKS
===================================================== */

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =====================================================
   BUTTONS — SOFT ECOMMERCE
===================================================== */

.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-sm);
  border: none;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

/* PRIMARY */
.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* SOFT */
.btn-soft {
  background: var(--primary-soft);
  color: var(--primary);
}

.btn-soft:hover {
  background: #dbe8ff;
}

/* OUTLINE */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary-soft);
}

/* =====================================================
   CARDS — CLEAN & FLOATING
===================================================== */

.card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* =====================================================
   FORMS — SOFT INPUTS
===================================================== */

input,
textarea,
select {
  width: 100%;
  background: #ffffff;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 14px 16px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-light);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 156, 255, 0.12);
}

/* =====================================================
   BADGES / LABELS
===================================================== */

.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}

/* =====================================================
   UTILITIES
===================================================== */

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.w-100 {
  width: 100%;
}

.text-muted {
  color: var(--text-muted);
}

a {
  text-decoration: none !important;
}

/* =====================================================
   PAGE HEADER — DARK BREADCRUMB
===================================================== */

.page-header-dark {
  background: #0f172a; /* deep blue-charcoal */
  padding: 90px 0 80px;
  text-align: center;
  color: #e5e7eb;
}

.page-header-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* BREADCRUMB */

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb span {
  color: #64748b;
}

/* TITLE */

.page-header-dark h1 {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #ffffff;
}

/* SUBTEXT */

.page-header-dark p {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5f5;
}

/* ================= TOP BAR ================= */

.topbar-soft {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.topbar-soft span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  margin-right: 18px;
}

.topbar-soft i {
  color: var(--primary);
  font-size: 12px;
}

/* ================= HEADER ================= */

.header-soft {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.header-soft-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 15px;
}

/* ================= LOGO ================= */

.logo-soft img {
  height: 54px;
  display: block;
}

/* ================= NAV ================= */

.nav-soft {
  display: flex;
  gap: 28px;
}

.nav-soft a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.nav-soft a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-soft a:hover::after {
  width: 100%;
}

/* ================= ACTIONS ================= */

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

/* ICON BUTTON */

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  position: relative;
  transition: all 0.25s ease;
}

.icon-btn:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

/* CART BADGE */

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
}

/* SEARCH */

.search-soft {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.search-soft input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 160px;
}

/* MENU TOGGLE */

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.icon-btn i,
.menu-toggle i {
  font-size: 16px;
  line-height: 1;
  display: block;
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 2000;
  padding: 26px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}

.mobile-menu-header img {
  width: 50%;
}

.mobile-menu-header button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .nav-soft,
  .search-soft {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-soft-inner {
    grid-template-columns: auto 1fr auto;
  }
}

/* =====================================================
   HERO SECTION — SOFT ECOMMERCE BANNER
===================================================== */

.hero-soft-bg {
  position: relative;
  background-image: url("../../assets/images/hero-bg.jpg"); /* FULL WIDTH BG */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0 120px;
}

.hero-soft-bg::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-soft-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* ================= CONTENT ================= */

.hero-soft-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.hero-soft-title {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--text);
}

.hero-soft-title span {
  color: var(--primary);
}

.hero-soft-text {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
}

/* ACTIONS */

.hero-soft-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ================= IMAGE ================= */

.hero-soft-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-soft-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .hero-soft-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-soft-text {
    margin-inline: auto;
  }

  .hero-soft-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-soft-bg {
    padding: 110px 0 90px;
  }

  .hero-soft-title {
    font-size: 34px;
  }

  .hero-soft-actions .btn {
    width: 100%;
  }
}

/* =====================================================
   CATEGORIES — MARKETPLACE STYLE
===================================================== */

.categories-soft {
  background: #ffffff;
  padding: 120px 0;
}

.categories-soft-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.categories-soft-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 14px;
}

.categories-soft-head h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
}

.categories-soft-head p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================= GRID ================= */

.categories-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* ================= CARD ================= */

.category-soft-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 22px 30px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.category-soft-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* IMAGE */

.category-soft-card img {
  width: 100%;
  max-width: 180px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 18px;
}

/* TEXT */

.category-soft-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.category-soft-card span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .categories-soft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .categories-soft {
    padding: 90px 0;
  }

  .categories-soft-grid {
    grid-template-columns: 1fr;
  }

  .category-soft-card img {
    max-width: 160px;
    height: 120px;
  }
}

/* =====================================================
   PRODUCTS — SOFT MARKETPLACE
===================================================== */

.products-soft {
  background: #f4f8fd;
  padding: 120px 0;
}

.products-soft-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.products-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}

.products-soft-head h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
}

.products-soft-head p {
  font-size: 16px;
  color: var(--text-muted);
}

/* ================= TABS ================= */

.products-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  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;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: transparent;
}

/* ================= GRID ================= */

.products-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* ================= CARD ================= */

.product-soft-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.product-soft-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* IMAGE */

.product-soft-image {
  position: relative;
  padding: 26px;
  background: #f8fafc;
}

.product-soft-image img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

/* BADGE */

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}

.product-badge.out {
  background: #fee2e2;
  color: #991b1b;
}

/* INFO */

.product-soft-info {
  padding: 20px 22px;
  flex-grow: 1;
}

.product-soft-info h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.product-soft-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* RATING */

.product-soft-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #f59e0b;
  margin-bottom: 10px;
}

/* FOOTER */

.product-soft-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-soft-footer strong {
  font-size: 16px;
  font-weight: 800;
}

.product-soft-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .products-soft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-soft {
    padding: 90px 0;
  }

  .products-soft-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT US — SOFT ECOMMERCE
===================================================== */

.about-soft {
  background: #ffffff;
  padding: 130px 0;
}

.about-soft-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ================= CONTENT ================= */

.about-soft-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  display: inline-block;
}

.about-soft-content h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--text);
}

.about-soft-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-soft-content p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 560px;
}

/* ================= STATS ================= */

.about-soft-stats {
  display: flex;
  gap: 36px;
  margin: 36px 0 42px;
  flex-wrap: wrap;
}

.about-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.about-stat span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ================= ACTIONS ================= */

.about-soft-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ================= IMAGE ================= */

.about-soft-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .about-soft-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-soft-content {
    text-align: center;
  }

  .about-soft-content p {
    margin-inline: auto;
  }

  .about-soft-stats {
    justify-content: center;
  }

  .about-soft-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .about-soft {
    padding: 100px 0;
  }

  .about-soft-actions .btn {
    width: 100%;
  }
}

/* =====================================================
   WHY CHOOSE US — SOFT ACCORDION
===================================================== */

.why-soft {
  background: #f4f8fd;
  padding: 130px 0;
}

.why-soft-inner {
  max-width: 900px;
  margin: auto;
}

/* ================= HEADER ================= */

.why-soft-head {
  text-align: center;
  margin-bottom: 60px;
}

.why-soft-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 14px;
}

.why-soft-head h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
}

.why-soft-head p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================= ACCORDION ================= */

.why-soft-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ITEM */

.why-acc-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* HEADER */

.why-acc-header {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
}

.why-acc-header i {
  color: var(--primary);
  transition: transform 0.25s ease;
}

/* BODY */

.why-acc-body {
  padding: 0 26px 22px;
  display: none;
}

.why-acc-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ACTIVE */

.why-acc-item.active .why-acc-body {
  display: block;
}

.why-acc-item.active .why-acc-header i {
  transform: rotate(45deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .why-soft {
    padding: 100px 0;
  }

  .why-acc-header {
    padding: 20px;
  }

  .why-acc-body {
    padding: 0 20px 20px;
  }
}

/* =====================================================
   TESTIMONIALS — SOFT & ELEGANT
===================================================== */

.testimonials-soft {
  background: #ffffff;
  padding: 130px 0;
}

.testimonials-soft-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.testimonials-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 14px;
}

.testimonials-soft-head h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
}

.testimonials-soft-head p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================= GRID ================= */

.testimonials-soft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */

.testimonial-soft-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.testimonial-soft-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* RATING */

.testimonial-soft-rating {
  font-size: 15px;
  color: #f59e0b;
  margin-bottom: 18px;
}

/* TEXT */

.testimonial-soft-text {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 28px;
  flex-grow: 1;
}

/* USER */

.testimonial-soft-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.testimonial-soft-user strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-soft-user span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .testimonials-soft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-soft {
    padding: 100px 0;
  }

  .testimonials-soft-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   RECENTLY VIEWED — SOFT STYLE
===================================================== */

.recent-soft {
  background: #f4f8fd;
  padding: 110px 0;
}

.recent-soft-head {
  margin-bottom: 36px;
}

.recent-soft-head h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}

.recent-soft-head p {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* ================= GRID ================= */

.recent-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ================= CARD ================= */

.recent-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.recent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* IMAGE */

.recent-card-img {
  background: #f8fafc;
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 14px;
}

.recent-card-img img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

/* NAME */

.recent-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

/* RATING */

.recent-card-rating {
  font-size: 13px;
  color: #f59e0b;
  margin-bottom: 10px;
}

/* FOOTER */

.recent-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.recent-card-footer strong {
  font-size: 15px;
  font-weight: 800;
}

.recent-view-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .recent-soft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recent-soft {
    padding: 90px 0;
  }

  .recent-soft-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   FOOTER — DARK & ELEGANT
===================================================== */

.footer-dark {
  background: #0f172a; /* deep blue-charcoal */
  color: #cbd5e1;
  font-size: 14px;
}

/* ================= TOP ================= */

.footer-dark-top {
  padding: 90px 0 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-dark-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
}

/* BRAND */

.footer-dark-brand img {
  max-width: 260px;
  margin-bottom: 18px;
}

.footer-dark-brand p {
  line-height: 1.75;
  color: #94a3b8;
  max-width: 420px;
}

/* LINKS */

.footer-dark-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 10px;
  color: #94a3b8;
  text-decoration: none;
  line-height: 1.6;
}

.footer-col a:hover {
  color: #e2e8f0;
}

.footer-address {
  font-size: 13.5px;
  margin-top: 10px;
}

/* ================= BOTTOM ================= */

.footer-dark-bottom {
  padding: 26px 0 0;
}

.footer-dark-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 18px;
}

.footer-dark-meta strong {
  display: block;
  color: #ffffff;
  font-weight: 700;
}

.footer-dark-meta span {
  font-size: 13px;
  color: #94a3b8;
}

.footer-dark-copy {
  font-size: 13.5px;
  color: #94a3b8;
}

/* DISCLAIMER */

.footer-dark-disclaimer {
  font-size: 12.5px;
  line-height: 1.7;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  text-align: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-dark-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-dark-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-dark-top {
    padding: 70px 0 50px;
  }

  .footer-dark-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-dark-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================================================
   ABOUT PAGE — INTRO
===================================================== */

.about-intro {
  background: #ffffff;
  padding: 110px 0;
}

.about-intro-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-intro-text h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--text);
}

.about-intro-lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
}

.about-intro-text p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* RESPONSIVE */

@media (max-width: 600px) {
  .about-intro {
    padding: 90px 0;
  }
}

/* =====================================================
   CONTACT PAGE — BODY
===================================================== */

.contact-page {
  background: #ffffff;
  padding: 110px 0;
}

.contact-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: flex-start;
}

/* LEFT INFO */

.contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-lead {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 22px;
}

.contact-points {
  margin-bottom: 30px;
}

.contact-points li {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* DETAILS */

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-details strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

.contact-details span {
  font-size: 14px;
  color: var(--text-muted);
}

/* FORM */

.contact-form-card {
  background: #f4f8fd;
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-form-card h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  margin-bottom: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* SUCCESS */

.contact-success {
  background: #f4f8fd;
  padding: 50px;
  border-radius: var(--radius-lg);
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   FAQ PAGE
===================================================== */

.faq-page {
  background: #ffffff;
  padding: 110px 0;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* GROUP */

.faq-group {
  margin-bottom: 60px;
}

.faq-group h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* ITEM */

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 18px;
  color: var(--primary);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ACTIVE */

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* RESPONSIVE */

@media (max-width: 600px) {
  .faq-page {
    padding: 90px 0;
  }
}

/* =====================================================
   AUTH HERO
===================================================== */

.auth-x-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
  padding: 110px 0 90px;
}

.auth-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.auth-x-eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 14px;
  display: inline-block;
}

.auth-x-hero-left h1 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
}

.auth-x-hero-left h1 span {
  color: #60a5fa;
}

.auth-x-hero-left p {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5f5;
}

/* RIGHT PANEL */

.auth-x-hero-panel {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.auth-x-panel-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
}

.auth-x-panel-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.auth-x-panel-item span {
  font-size: 13px;
  color: #bfdbfe;
}

/* =====================================================
   AUTH BODY
===================================================== */

.auth-x-body {
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.auth-x-card {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.08);
  border: 1px solid var(--border);
}

/* HEADINGS */

.auth-x-card h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}

.auth-x-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: center;
}

/* =====================================================
   AUTH FORM
===================================================== */

.auth-x-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-x-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.auth-x-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 14px;
  transition: all 0.25s ease;
}

.auth-x-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

/* =====================================================
   AUTH BUTTONS
===================================================== */

.auth-x-submit {
  margin-top: 10px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-x-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

/* =====================================================
   AUTH META
===================================================== */

.auth-x-meta {
  margin-top: 16px;
  text-align: right;
}

.auth-x-meta a {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}

/* DIVIDER */

.auth-x-divider {
  margin: 28px 0;
  text-align: center;
  position: relative;
}

.auth-x-divider span {
  background: #ffffff;
  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;
}

.auth-x-outline-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
}

.auth-x-outline-btn:hover {
  background: var(--primary-soft);
}

@media (max-width: 900px) {
  .auth-x-hero-inner {
    grid-template-columns: 1fr;
  }

  .auth-x-hero-panel {
    grid-template-columns: 1fr;
  }

  .auth-x-hero-left h1 {
    font-size: 38px;
  }

  .auth-x-body {
    padding: 70px 0;
  }
}

/* =====================================================
   SIGNUP HERO
===================================================== */

.signup-x-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
  padding: 110px 0 90px;
}

.signup-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.signup-x-eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 14px;
  display: inline-block;
}

.signup-x-hero-left h1 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
}

.signup-x-hero-left h1 span {
  color: #60a5fa;
}

.signup-x-hero-left p {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5f5;
}

/* RIGHT PANEL */

.signup-x-hero-panel {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.signup-x-panel-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
}

.signup-x-panel-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.signup-x-panel-item span {
  font-size: 13px;
  color: #bfdbfe;
}

/* =====================================================
   SIGNUP BODY
===================================================== */

.signup-x-body {
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.signup-x-card {
  background: #ffffff;
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.08);
  border: 1px solid var(--border);
}

.signup-x-card h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}

.signup-x-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: center;
}

/* =====================================================
   SIGNUP FORM
===================================================== */

.signup-x-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.signup-x-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.signup-x-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 14px;
  transition: all 0.25s ease;
}

.signup-x-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

/* =====================================================
   SIGNUP BUTTON
===================================================== */

.signup-x-submit {
  margin-top: 10px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.signup-x-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

/* =====================================================
   SIGNUP BUTTON
===================================================== */

.signup-x-submit {
  margin-top: 10px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.signup-x-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

@media (max-width: 900px) {
  .signup-x-hero-inner {
    grid-template-columns: 1fr;
  }

  .signup-x-hero-panel {
    grid-template-columns: 1fr;
  }

  .signup-x-hero-left h1 {
    font-size: 38px;
  }

  .signup-x-body {
    padding: 70px 0;
  }
}

/* =====================================================
   DASHBOARD HERO
===================================================== */

.dash-x-hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #ffffff;
  padding: 110px 0 90px;
}

.dash-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.dash-x-eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 14px;
  display: inline-block;
}

.dash-x-hero-left h1 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
}

.dash-x-hero-left h1 span {
  color: #60a5fa;
}

.dash-x-hero-left p {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5f5;
}

/* HERO PANEL */

.dash-x-hero-panel {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dash-x-panel-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
}

.dash-x-panel-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.dash-x-panel-item span {
  font-size: 13px;
  color: #bfdbfe;
}

/* =====================================================
   DASHBOARD BODY
===================================================== */

.dash-x-body {
  padding: 90px 0;
}

.dash-x-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* =====================================================
   DASHBOARD SIDEBAR
===================================================== */

.dash-x-sidebar {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  height: fit-content;
}

/* USER */

.dash-x-user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}

.dash-x-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}

.dash-x-user-info strong {
  display: block;
  font-size: 14px;
}

.dash-x-user-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* NAV */

.dash-x-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-x-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s ease;
}

.dash-x-nav a:hover {
  background: var(--primary-soft);
}

.dash-x-nav a.active {
  background: var(--primary-soft);
  color: var(--primary);
}

.dash-x-nav a.danger {
  color: #dc2626;
}

.dash-x-nav a.danger:hover {
  background: #fee2e2;
}

/* =====================================================
   DASHBOARD MAIN
===================================================== */

.dash-x-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dash-x-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
}

.dash-x-card h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* =====================================================
   ACCOUNT INFO
===================================================== */

.dash-x-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.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;
}

/* =====================================================
   QUICK ACTIONS
===================================================== */

.dash-x-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.dash-x-action {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.dash-x-action strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.dash-x-action span {
  font-size: 13px;
  color: var(--text-muted);
}

.dash-x-action:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
}

/* =====================================================
   DASHBOARD NOTICE
===================================================== */

.dash-x-notice {
  background: #f4f8fd; /* your section bg */
  border-left: 4px solid var(--primary);
  padding: 22px;
  border-radius: 16px;
}

.dash-x-notice strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.dash-x-notice p {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .dash-x-hero-inner {
    grid-template-columns: 1fr;
  }

  .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 — BASE
===================================================== */

.trk-x {
  background: #f4f8fd;
  padding: 100px 0;
}

.trk-x-body {
  max-width: 900px;
  margin: 0 auto;
}

.trk-x-layout {
  display: grid;
  gap: 32px;
}

/* =====================================================
   TRACK ORDER — CARD
===================================================== */

.trk-x-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.06);
}

.trk-x-card h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.trk-x-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* =====================================================
   TRACK ORDER — FORM
===================================================== */

.trk-x-form label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.trk-x-input-row {
  display: flex;
  gap: 12px;
}

.trk-x-input-row input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 14px;
}

.trk-x-input-row input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.trk-x-input-row button {
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.trk-x-input-row button:hover {
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.35);
}

/* =====================================================
   TRACK ORDER — ERROR
===================================================== */

.trk-x-error {
  margin-top: 20px;
  background: #fff7ed;
  border-left: 4px solid #f97316;
  padding: 18px;
  border-radius: 14px;
}

.trk-x-error strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.trk-x-error p {
  font-size: 13.5px;
  color: #7c2d12;
}

/* =====================================================
   TRACK ORDER — STATUS
===================================================== */

.trk-x-status {
  padding: 24px;
  border-radius: 18px;
  margin-bottom: 26px;
}

.trk-x-status strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.trk-x-status p {
  font-size: 14px;
  color: var(--text-muted);
}

/* VARIANTS */

.trk-x-status.processing {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
}

.trk-x-status.dispatched {
  background: #ecfdf5;
  border-left: 4px solid #16a34a;
}

/* =====================================================
   TRACK ORDER — SUMMARY
===================================================== */

.trk-x-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trk-x-summary span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.trk-x-summary strong {
  font-size: 15px;
}

@media (max-width: 600px) {
  .trk-x-input-row {
    flex-direction: column;
  }

  .trk-x-summary {
    grid-template-columns: 1fr;
  }

  .trk-x-card {
    padding: 28px;
  }
}

/* =====================================================
   RETURN ORDER — BASE
===================================================== */

.rtn-x {
  background: #f4f8fd;
  padding: 100px 0;
}

.rtn-x-body {
  max-width: 720px;
  margin: 0 auto;
}

/* =====================================================
   RETURN ORDER — FORM CARD
===================================================== */

.rtn-x-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.06);
}

.rtn-x-card h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.rtn-x-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* =====================================================
   RETURN ORDER — FORM
===================================================== */

.rtn-x-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rtn-x-field label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.rtn-x-field input,
.rtn-x-field select,
.rtn-x-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 14px;
}

.rtn-x-field textarea {
  min-height: 120px;
  resize: vertical;
}

.rtn-x-field input:focus,
.rtn-x-field select:focus,
.rtn-x-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

/* =====================================================
   RETURN ORDER — ERROR
===================================================== */

.rtn-x-error {
  background: #fff7ed;
  border-left: 4px solid #f97316;
  padding: 18px;
  border-radius: 14px;
}

.rtn-x-error strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.rtn-x-error p {
  font-size: 13.5px;
  color: #7c2d12;
}

/* =====================================================
   RETURN ORDER — BUTTON
===================================================== */

.rtn-x-primary-btn {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-align: center;
}

.rtn-x-primary-btn:hover {
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.35);
}

.rtn-x-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* =====================================================
   RETURN ORDER — SUCCESS
===================================================== */

.rtn-x-success {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.08);
}

.rtn-x-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.rtn-x-success h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.rtn-x-success p {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 26px;
}

/* =====================================================
   RETURN ORDER — SUMMARY
===================================================== */

.rtn-x-summary {
  background: #f4f8fd;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
}

.rtn-x-summary span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

.rtn-x-summary strong {
  font-size: 15px;
}

@media (max-width: 600px) {
  .rtn-x-card,
  .rtn-x-success {
    padding: 32px;
  }

  .rtn-x {
    padding: 80px 0;
  }
}

/* =====================================================
   CART — BASE
===================================================== */

.crt-x {
  background: #f4f8fd;
  padding: 100px 0;
}

.crt-x-body {
  max-width: 1200px;
  margin: 0 auto;
}

/* =====================================================
   CART — EMPTY STATE
===================================================== */

.crt-x-empty {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.08);
}

.crt-x-empty h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.crt-x-empty p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* =====================================================
   CART — LAYOUT
===================================================== */

.crt-x-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
}

.crt-x-items h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
}

/* =====================================================
   CART — ITEM
===================================================== */

.crt-x-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--border);
  margin-bottom: 18px;
}

/* IMAGE */

.crt-x-item-image img {
  width: 90px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

/* INFO */

.crt-x-item-info strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.crt-x-item-info span {
  font-size: 13px;
  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: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  text-align: center;
}

.crt-x-item-qty button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  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;
  margin-bottom: 8px;
}

.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
===================================================== */

.crt-x-summary {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  border: 1px solid var(--border);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.crt-x-summary h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 22px;
}

/* ROWS */

.crt-x-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 14px;
}

.crt-x-summary-row.total {
  font-weight: 800;
  font-size: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* =====================================================
   CART — BUTTON
===================================================== */

.crt-x-primary-btn {
  display: block;
  margin-top: 22px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  text-align: center;
}

.crt-x-primary-btn.checkout:hover {
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35);
}

/* TRUST TEXT */

.crt-x-trust {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .crt-x-layout {
    grid-template-columns: 1fr;
  }

  .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: 80px 0;
  }

  .crt-x-item {
    padding: 20px;
  }
}

/* =====================================================
   CHECKOUT — BASE
===================================================== */

.chk-x {
  background: #f4f8fd;
  padding: 100px 0;
}

.chk-x-body {
  max-width: 1200px;
  margin: 0 auto;
}

/* =====================================================
   CHECKOUT — ERROR
===================================================== */

.chk-x-error {
  background: #fff7ed;
  border-left: 4px solid #f97316;
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 30px;
}

.chk-x-error strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.chk-x-error p {
  font-size: 13.5px;
  color: #7c2d12;
}

/* =====================================================
   CHECKOUT — LAYOUT
===================================================== */

.chk-x-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

/* =====================================================
   CHECKOUT — CARDS
===================================================== */

.chk-x-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px;
  border: 1px solid var(--border);
  margin-bottom: 26px;
}

.chk-x-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 22px;
}

/* =====================================================
   CHECKOUT — FORM
===================================================== */

.chk-x-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.chk-x-grid.single {
  grid-template-columns: 1fr;
}

.chk-x-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.chk-x-card input,
.chk-x-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 14px;
}

.chk-x-card textarea {
  min-height: 110px;
  resize: vertical;
}

.chk-x-card input:focus,
.chk-x-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

/* =====================================================
   CHECKOUT — PAYMENTS
===================================================== */

.chk-x-payments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.chk-x-payment {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
  background: #ffffff;
}

.chk-x-payment i {
  font-size: 26px;
  color: var(--text-muted);
}

.chk-x-payment strong {
  display: block;
  font-size: 15px;
}

.chk-x-payment span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ACTIVE */

.chk-x-payment.active {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.chk-x-payment.active i {
  color: var(--primary);
}

/* =====================================================
   CHECKOUT — SUMMARY
===================================================== */

.chk-x-summary {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  border: 1px solid var(--border);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.chk-x-summary h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* =====================================================
   CHECKOUT — SUMMARY DETAILS
===================================================== */

.chk-x-summary-items {
  margin-bottom: 18px;
}

.chk-x-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.chk-x-summary-total {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-bottom: 22px;
}

.chk-x-summary-total div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.chk-x-summary-total .total {
  font-weight: 800;
  font-size: 16px;
}

/* =====================================================
   CHECKOUT — CTA
===================================================== */

.chk-x-primary-btn {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
}

.chk-x-primary-btn:hover {
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35);
}

.chk-x-trust {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .chk-x-layout {
    grid-template-columns: 1fr;
  }

  .chk-x-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  .chk-x {
    padding: 80px 0;
  }

  .chk-x-card {
    padding: 28px;
  }
}

/* =====================================================
   ORDER SUCCESS — BASE
===================================================== */

.ordx-success {
  background: #f4f8fd;
  padding: 100px 0;
}

.ordx-body {
  max-width: 1200px;
  margin: 0 auto;
}

.ordx-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

/* =====================================================
   MAIN AREA
===================================================== */

.ordx-main {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* CARD */

.ordx-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.06);
}

.ordx-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}

.ordx-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* CONFIRM CARD */

.ordx-confirm {
  border-left: 4px solid #16a34a;
}

/* =====================================================
   ORDER STATS
===================================================== */

.ordx-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ordx-stats span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.ordx-stats strong {
  font-size: 15px;
}

/* =====================================================
   WHAT HAPPENS NEXT
===================================================== */

.ordx-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ordx-steps li {
  padding-left: 22px;
  position: relative;
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.ordx-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 700;
}

/* =====================================================
   ACTION BUTTONS
===================================================== */

.ordx-actions {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}

.ordx-btn {
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: all 0.25s ease;
}

/* PRIMARY */

.ordx-btn.primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
}

.ordx-btn.primary:hover {
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35);
}

/* GHOST */

.ordx-btn.ghost {
  background: #ffffff;
  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: 24px;
}

/* =====================================================
   STATUS RAIL
===================================================== */

.ordx-rail {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
  border: 1px solid var(--border);
}

.rail-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  opacity: 0.5;
}

.rail-step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.rail-step strong {
  font-size: 14px;
}

/* ACTIVE */

.rail-step.active {
  opacity: 1;
}

.rail-step.active span {
  background: #16a34a;
  color: #ffffff;
}

/* =====================================================
   HELP BOX
===================================================== */

.ordx-help {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid var(--border);
}

.ordx-help strong {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
}

.ordx-help p {
  font-size: 14px;
  color: var(--text-muted);
}

.ordx-help a {
  color: var(--primary);
  font-weight: 600;
}

/* =====================================================
   UTILITIES
===================================================== */

.text-black {
  color: #020617;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .ordx-layout {
    grid-template-columns: 1fr;
  }

  .ordx-stats {
    grid-template-columns: 1fr;
  }

  .ordx-actions {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .ordx-success {
    padding: 80px 0;
  }

  .ordx-card,
  .ordx-rail,
  .ordx-help {
    padding: 28px;
  }
}

/* Policy Pages */
.policy-page {
  padding: 50px;
}

/* =====================================================
   SHOP PAGE — BASE
===================================================== */

.shop-hard {
  background: #ffffff;
}

.shop-hard-body {
  padding: 80px 0 120px;
}

/* EMPTY STATE */

.shop-hard-empty {
  background: #f4f8fd;
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.shop-hard-empty strong {
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

.shop-hard-empty p {
  font-size: 14px;
  color: var(--text-muted);
}

/* =====================================================
   SHOP GRID
===================================================== */

.shop-hard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}

/* =====================================================
   SHOP PRODUCT CARD
===================================================== */

.shop-product-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.08);
}

/* IMAGE */

.shop-product-image {
  position: relative;
  background: #f8fafc;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-product-image img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.shop-product-card:hover .shop-product-image img {
  transform: scale(1.05);
}

/* STOCK BADGE */

.shop-stock {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}

.shop-stock.in {
  background: #ecfdf5;
  color: #15803d;
}

.shop-stock.out {
  background: #fef2f2;
  color: #b91c1c;
}

/* INFO */

.shop-product-info {
  padding: 22px;
  flex: 1;
}

.shop-product-info h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.shop-product-info p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FOOTER */

.shop-product-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

/* ADD TO CART */

.shop-add-btn {
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.shop-add-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

/* DISABLED */

.shop-disabled-btn {
  background: #f1f5f9;
  color: #94a3b8;
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: not-allowed;
}

/* OUT OF STOCK */

.shop-product-card.out {
  opacity: 0.75;
}

.shop-product-card.out:hover {
  transform: none;
  box-shadow: none;
}

.shop-product-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

@media (max-width: 600px) {
  .shop-hard-body {
    padding: 60px 0 90px;
  }

  .shop-product-image img {
    height: 150px;
  }
}

/* =====================================================
   PRODUCT PAGE — COMPLETE REDESIGN
===================================================== */

.prd-z {
  background: #ffffff;
  padding: 80px 0 120px;
}

.prd-z-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= TOP ================= */

.prd-z-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* GALLERY */

.prd-z-gallery {
  background: #f4f8fd;
  border-radius: 28px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prd-z-gallery img {
  max-width: 100%;
  height: 420px;
  object-fit: contain;
}

/* INFO */

.prd-z-brand {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  display: block;
  margin-bottom: 10px;
}

.prd-z-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.prd-z-rating {
  font-size: 14px;
  margin-bottom: 20px;
}

.prd-z-rating strong {
  margin-left: 6px;
}

.prd-z-pricebox {
  margin-bottom: 18px;
}

.prd-z-price {
  font-size: 32px;
  font-weight: 900;
}

.prd-z-tax {
  font-size: 13px;
  color: #64748b;
}

.prd-z-desc {
  font-size: 15.5px;
  line-height: 1.8;
  color: #475569;
  margin: 20px 0 26px;
}

/* ACTIONS */

.prd-z-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.prd-z-btn {
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.prd-z-btn.primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
}

.prd-z-btn.primary:hover {
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.35);
}

.prd-z-btn.ghost {
  background: #ffffff;
  border: 1px solid #cbd5f5;
}

.prd-z-btn.ghost:hover {
  background: #f4f8fd;
}

.prd-z-btn.disabled {
  background: #e5e7eb;
  color: #94a3b8;
  cursor: not-allowed;
}

/* TRUST */

.prd-z-trust {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #475569;
}

/* ================= FEATURES ================= */

.prd-z-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.prd-z-features span {
  background: #f4f8fd;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* ================= DETAILS ================= */

.prd-z-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.prd-z-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  border: 1px solid #e5e7eb;
}

.prd-z-card h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}

.prd-z-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}

.prd-z-card table {
  width: 100%;
  border-collapse: collapse;
}

.prd-z-card th,
.prd-z-card td {
  text-align: left;
  padding: 10px 0;
  font-size: 14px;
}

.prd-z-card th {
  color: #64748b;
  font-weight: 600;
}

.prd-z-card ul {
  padding-left: 18px;
}

.prd-z-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* HIGHLIGHT */

.prd-z-card.highlight {
  background: #f4f8fd;
  border-left: 4px solid #2563eb;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .prd-z-top {
    grid-template-columns: 1fr;
  }

  .prd-z-details {
    grid-template-columns: 1fr;
  }

  .prd-z-actions {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .prd-z-gallery img {
    height: 300px;
  }

  .prd-z-title {
    font-size: 28px;
  }
}
