/* =====================================================
   GLOBAL DESIGN SYSTEM — SOFT UI
===================================================== */

:root {
  /* BRAND COLORS */
  --primary: #3b82f6;
  --primary-soft: #eff6ff;

  --secondary: #8b5cf6;
  --secondary-soft: #f5f3ff;

  /* NEUTRALS */
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e5e7eb;

  --text: #0f172a;
  --text-muted: #64748b;

  /* STATES */
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* RADIUS */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* SHADOWS */
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 70px rgba(15, 23, 42, 0.12);

  /* TRANSITIONS */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================= RESET ================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ================= LAYOUT ================= */

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}

.container-lg {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ================= TYPOGRAPHY ================= */

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin: 0 0 14px;
  color: var(--text-muted);
}

/* ================= LINKS ================= */

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ================= BUTTONS ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

/* PRIMARY */
.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #2563eb;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* SECONDARY */
.btn-secondary {
  background: var(--secondary-soft);
  color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: #ffffff;
}

/* OUTLINE */
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: white;
}

.btn-outline:hover {
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

/* ================= CARDS ================= */

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ================= FORMS ================= */

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
  background: var(--card);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* ================= UTILITIES ================= */

.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.w-100 {
  width: 100%;
}

a {
  text-decoration: none !important;
}

/* ================= TOPBAR ================= */

/* ================= TOPBAR ================= */

.topbar-soft {
  background: var(--primary-soft);
  font-size: 13px;
}

.topbar-soft-inner {
  display: flex;
  justify-content: space-between; /* DESKTOP LEFT / RIGHT */
  align-items: center;
  padding: 10px 0;
}

/* LEFT GROUP */
.topbar-row {
  display: flex;
  gap: 18px;
}

.topbar-row a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* RIGHT (ADDRESS) */
.topbar-address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {
  .topbar-soft-inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .topbar-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar-address {
    justify-content: center;
    font-size: 12px;
  }
}

/* ================= SEARCH ================= */

.search-soft {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  padding: 8px 20px;
  border-radius: 999px;
}

.search-soft input {
  border: none;
  background: transparent;
  font-size: 14px;
  width: 190px;
}

.search-soft input:focus {
  outline: none;
}

/* MOBILE SEARCH ICON */
.search-toggle {
  display: none;
}

/* ================= MOBILE SEARCH OVERLAY ================= */

.mobile-search {
  position: fixed;
  inset: 0;
  background: rgba(248, 250, 252, 0.98);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-search form {
  width: 90%;
  max-width: 420px;
  display: flex;
  gap: 10px;
}

.mobile-search input {
  flex: 1;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.mobile-search button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: #fff;
  font-size: 18px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .search-soft {
    display: none;
  }

  .search-toggle {
    display: flex;
  }
}

/* ================= HEADER ================= */

.header-soft {
  background: var(--card);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-soft-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* NAV */

.nav-soft {
  display: flex;
  gap: 24px;
}

.nav-soft a {
  font-size: 14px;
  color: var(--text);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.nav-soft a:hover {
  background: var(--primary-soft);
}

/* ACTIONS */

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  background: var(--primary-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 999px;
}

/* TOGGLE */

.menu-toggle {
  width: 38px;
  height: 38px;
  background: var(--primary-soft);
  border-radius: 50%;
  border: none;
  color: var(--primary);
  cursor: pointer;
  display: none;
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--card);
  z-index: 2000;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-menu-header img {
  height: 44px;
}

.mobile-menu-header button {
  background: var(--primary-soft);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: none;
  font-size: 18px;
  color: var(--primary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .nav-soft {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* =====================================================
   HERO — SOFT MODERN DESIGN
===================================================== */

.hero-soft {
  /* background: linear-gradient(180deg, var(--primary-soft), #fffcfc94); */
  background: url(../../assets/images/herobans.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0 50px;
}

.hero-soft-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ================= CONTENT ================= */

.hero-badge {
  display: inline-block;
  background: var(--secondary-soft);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-heading {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
  color: white;
}

.hero-heading span {
  color: var(--primary);
}

.hero-text {
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 32px;
  color: white;
}

/* ACTIONS */

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 34px;
}

/* HIGHLIGHTS */

.hero-highlights {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: white;
}

.hero-highlight i {
  color: var(--success);
}

/* ================= VISUAL ================= */

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.hero-visual-card img {
  max-width: 100%;
  height: auto;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .hero-soft-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 600px) {
  .hero-soft {
    padding: 90px 0 70px;
  }

  .hero-heading {
    font-size: 34px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* =====================================================
   FEATURED PRODUCTS — SOFT DESIGN
===================================================== */

.featured-soft {
  padding: 110px 0;
  background: #ffffff;
}

.featured-head {
  text-align: center;
  margin-bottom: 60px;
}

.featured-head h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.featured-head p {
  color: var(--text-muted);
  font-size: 16px;
}

/* GRID */

.product-grid-soft {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */

.product-card-soft {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card-soft:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* BADGES */

.product-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.badge-primary {
  background: var(--secondary-soft);
  color: var(--secondary);
}

.badge-success {
  background: #dcfce7;
  color: #166534;
}

.badge-muted {
  background: #f1f5f9;
  color: #64748b;
}

/* IMAGE */

.product-image-soft {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.product-image-soft img {
  max-height: 160px;
  object-fit: contain;
}

/* CONTENT */

.product-content-soft {
  flex-grow: 1; /* KEY: equal height cards */
}

.product-content-soft h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* RATING */

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin-bottom: 10px;
}

.stars {
  color: #f59e0b;
}

.product-rating span {
  color: var(--text-muted);
}

/* DESCRIPTION */

.product-content-soft p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FOOTER */

.product-footer-soft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

.product-footer-soft strong {
  font-size: 16px;
  font-weight: 600;
}

.cta-soft {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .product-grid-soft {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid-soft {
    grid-template-columns: 1fr;
  }

  .featured-head h2 {
    font-size: 30px;
  }
}

/* =====================================================
   ABOUT US — SOFT PANEL (NON-WHITE)
===================================================== */

.about-soft {
  background: linear-gradient(180deg, var(--secondary-soft), #eef2ff);
  padding: 130px 0;
}

.about-soft-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

/* CONTENT */

.about-soft-badge {
  display: inline-block;
  background: #ffffff;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.about-soft-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--text);
}

.about-soft-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 560px;
}

/* ACTIONS */

.about-soft-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

/* VISUAL */

.about-soft-visual {
  display: flex;
  justify-content: center;
}

.about-soft-image {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.about-soft-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .about-soft-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-soft-visual {
    order: -1;
  }
}

@media (max-width: 600px) {
  .about-soft {
    padding: 100px 0;
  }

  .about-soft-content h2 {
    font-size: 32px;
  }

  .about-soft-actions {
    flex-direction: column;
  }

  .about-soft-actions .btn {
    width: 100%;
  }
}

/* =====================================================
   CATEGORIES — SOFT & MODERN (WHITE BG)
===================================================== */

.categories-soft {
  background: #ffffff;
  padding: 120px 0;
}

/* HEADER */

.categories-soft-head {
  text-align: center;
  margin-bottom: 70px;
}

.categories-soft-head h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
}

.categories-soft-head p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* GRID */

.categories-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */

.category-card-soft {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.category-card-soft:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ICON */

.category-icon {
  width: 54px;
  height: 54px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

/* TEXT */

.category-card-soft h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-card-soft p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: auto;
}

/* LINK */

.category-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-top: 22px;
}

/* 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;
  }

  .categories-soft-head h2 {
    font-size: 30px;
  }
}

/* =====================================================
   WHY CHOOSE US — SOFT TRUST SECTION
===================================================== */

.why-soft {
  background: linear-gradient(180deg, var(--secondary-soft), #eef2ff);
  padding: 130px 0;
}

/* HEADER */

.why-soft-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.why-soft-badge {
  display: inline-block;
  background: var(--secondary-soft);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}

.why-soft-head h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
}

.why-soft-head p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* GRID */

.why-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* CARD */

.why-soft-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 38px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.why-soft-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ICON */

.why-soft-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* TEXT */

.why-soft-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-soft-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .why-soft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-soft {
    padding: 100px 0;
  }

  .why-soft-grid {
    grid-template-columns: 1fr;
  }

  .why-soft-head h2 {
    font-size: 30px;
  }
}

/* ================= PURCHASE ASSURANCE STRIP ================= */

.assurance-strip {
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  padding: 80px 20px;
}

.assurance-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}

/* ITEM */
.assurance-item {
  padding: 28px 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.assurance-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.14);
}

/* ICON */
.assurance-item i {
  font-size: 28px;
  color: #22c55e;
  margin-bottom: 14px;
}

/* TEXT */
.assurance-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.assurance-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .assurance-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .assurance-inner {
    grid-template-columns: 1fr;
  }
}

/* ================= ABOUT BRAND — INDUSTRIAL BRONZE PANEL ================= */

.about-brand {
  background: white;
  padding: 140px 20px;
  color: black;
  border-top: 4px solid #120c0c;
}

.about-brand-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.about-brand-image img {
  width: 100%;
  border: 3px solid #000000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  object-fit: cover;
}

/* CONTENT */
.about-brand-content {
  max-width: 560px;
}

/* EYEBROW */
.about-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fbbf24 !important;
  margin-bottom: 18px;
}

/* TITLE */
.about-brand-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.25;
}

/* TEXT */
.about-brand-content p {
  font-size: 16px;
  color: black;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* ACTIONS */
.about-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

/* PRIMARY BUTTON */
.btn-about-primary {
  background: #fbbf24;
  color: #1a1212;
  padding: 14px 30px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-about-primary:hover {
  background: #f59e0b;
  border-color: #f59e0b;
}

/* SECONDARY BUTTON */
.btn-about-secondary {
  background: transparent;
  color: #ffffff;
  padding: 14px 30px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-about-secondary:hover {
  background: #ffffff;
  color: #1a1212;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .about-brand-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-brand-content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-brand {
    padding: 100px 16px;
  }

  .about-brand-content h2 {
    font-size: 32px;
  }

  .about-actions {
    flex-direction: column;
  }

  .btn-about-primary,
  .btn-about-secondary {
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
   TESTIMONIALS — SOFT & MODERN
===================================================== */

.testimonials-soft {
  background: #ffffff;
  padding: 120px 0;
}

/* HEADER */

.testimonials-soft-head {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials-soft-badge {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
}

.testimonials-soft-head h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 14px;
}

.testimonials-soft-head p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* GRID */

.testimonials-soft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */

.testimonial-card-soft {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.testimonial-card-soft:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* RATING */

.testimonial-rating-soft {
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 18px;
}

/* MESSAGE */

.testimonial-message {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
  flex-grow: 1;
}

/* USER */

.testimonial-user-soft {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary-soft);
  color: var(--secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.testimonial-user-soft strong {
  display: block;
  font-size: 14px;
}

.testimonial-user-soft 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: 90px 0;
  }

  .testimonials-soft-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-soft-head h2 {
    font-size: 30px;
  }
}

/* =====================================================
   FOOTER — HARD BUSINESS / LEGACY STYLE
===================================================== */

.footer-new {
  background: #000000;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

/* ================= TOP ================= */

.footer-top {
  padding: 70px 20px;
  border-bottom: 1px solid #1f2937;
}

.footer-top-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
}

/* BRAND */

.footer-brand img {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.7;
  max-width: 420px;
}

/* ================= LINKS ================= */

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #ffffff;
}

/* BOXED LINKS */

.footer-links a {
  display: block;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 12px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

/* HOVER EFFECT — YELLOW + WHITE */

/* ADDRESS TEXT (NON-LINK) */
.footer-links a:not([href]) {
  cursor: default;
}

/* ================= BOTTOM ================= */

.footer-bottom-new {
  padding: 40px 20px 30px;
}

.footer-bottom-inner-new {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* META */

.footer-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.footer-meta span {
  font-size: 13px;
  color: #d1d5db;
}

/* COPYRIGHT */

.footer-copy {
  font-size: 13px;
  color: #9ca3af;
  text-align: right;
}

/* DISCLAIMER */

.footer-note {
  max-width: 1100px;
  margin: 26px auto 0;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
  text-align: center;
  border-top: 1px solid #1f2937;
  padding-top: 18px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-top-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner-new {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}

/* ================= PRODUCT PAGE ================= */

.product-page {
  background: #f8fafc;
  padding: 80px 0;
  font-family: Inter, system-ui, sans-serif;
  color: #0f172a;
}

.product-wrap {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
}

/* TOP SECTION */

.product-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-bottom: 70px;
}

.product-media {
  background: #f1f5f9;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.product-info h1 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-brand {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

.product-rating {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 20px;
}

.product-price {
  margin-bottom: 22px;
}

.product-price strong {
  font-size: 32px;
  display: block;
}

.product-price span {
  font-size: 13px;
  color: #64748b;
}

.product-cta {
  margin-top: 5px;
  display: inline-flex;
  gap: 12px;
}

.product-cta button {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

button.buy-now {
  background: #f1f5f9;
  color: #000000;
  border: 2px solid black;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.product-cta button:hover {
  background: #1d4ed8;
}

.product-cta .disabled {
  background: #e5e7eb;
  color: #6b7280;
  cursor: not-allowed;
}

.product-trust {
  margin-top: 24px;
  font-size: 13px;
  color: #64748b;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* CONTENT SECTIONS */

.product-section {
  margin-bottom: 60px;
}

.product-section h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.product-section p {
  color: #475569;
  line-height: 1.7;
}

/* TABLES */

.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  border: 1px solid #e5e7eb;
}

.product-table th,
.product-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  text-align: left;
}

.product-table th {
  width: 35%;
  color: #475569;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

.product-price-note {
  margin-top: 18px;
}

.product-tags {
  margin-top: 35px;
}

.tag {
  background: #f1f5f9;
  padding: 12px;
  border-radius: 12px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .product-top {
    grid-template-columns: 1fr;
  }

  .product-wrap {
    padding: 30px;
  }
}

/* ================= CART PAGE ================= */

.cart-page {
  background: #f8fafc;
  color: #0f172a;
  font-family: "Inter", sans-serif;
}

/* ================= HERO ================= */

.cart-hero {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding: 110px 20px 90px;
  text-align: center;
}

.cart-hero-inner {
  max-width: 780px;
  margin: auto;
}

.cart-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #020617;
}

.cart-hero p {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
}

/* ================= BODY ================= */

.cart-body {
  max-width: 1100px;
  margin: auto;
  padding: 90px 20px 110px;
}

/* ================= EMPTY STATE ================= */

.cart-empty {
  max-width: 520px;
  margin: auto;
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.cart-empty h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.cart-empty p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 26px;
}

/* ================= BUTTONS ================= */

.cart-primary-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.cart-primary-btn:hover {
  background: #4f46e5;
}

/* ================= LAYOUT ================= */

.cart-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 60px;
}

/* ================= ITEMS ================= */

.cart-items h2 {
  font-size: 26px;
  margin-bottom: 26px;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1.5fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  background: #ffffff;
  padding: 26px;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  margin-bottom: 18px;
}

.cart-item-image img {
  width: 90px;
  height: auto;
  object-fit: contain;
}

.cart-item-details strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.cart-item-unit-price {
  font-size: 13px;
  color: #64748b;
}

/* ================= QUANTITY ================= */

.cart-item-quantity input {
  width: 70px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  text-align: center;
  font-size: 14px;
}

.cart-item-quantity button {
  margin-left: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: #e0e7ff;
  color: #3730a3;
  font-size: 13px;
  cursor: pointer;
}

.cart-item-quantity button:hover {
  background: #c7d2fe;
}

/* ================= ITEM TOTAL ================= */

.cart-item-total strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.cart-remove-btn {
  background: none;
  border: none;
  font-size: 13px;
  color: #b91c1c;
  cursor: pointer;
}

.cart-remove-btn:hover {
  text-decoration: underline;
}

/* ================= SUMMARY ================= */

.cart-summary {
  background: #ffffff;
  padding: 36px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  height: fit-content;
}

.cart-summary h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 14px;
  color: #334155;
}

.cart-summary-row.total {
  font-size: 18px;
  font-weight: 700;
  border-top: 1px solid #e5e7eb;
  padding-top: 18px;
  margin-top: 18px;
  color: #020617;
}

.checkout-btn {
  width: 100%;
  text-align: center;
  margin-top: 26px;
}

/* ================= TRUST ================= */

.cart-trust-note {
  font-size: 13px;
  color: #64748b;
  margin-top: 18px;
  text-align: center;
}

.inline {
  display: inline-flex !important;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-item-quantity button {
    margin-left: 0;
    margin-top: 8px;
  }
}

@media (max-width: 600px) {
  .cart-hero h1 {
    font-size: 32px;
  }

  .cart-summary {
    padding: 28px;
  }

  .cart-item {
    padding: 22px;
    border-radius: 22px;
  }
}

/* ================= CHECKOUT PAGE ================= */

.checkout-page {
  background: #f8fafc;
  color: #0f172a;
  font-family: "Inter", sans-serif;
}

/* HERO */

.checkout-hero {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding: 110px 20px 90px;
  text-align: center;
}

.checkout-hero-inner {
  max-width: 760px;
  margin: auto;
}

.checkout-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.checkout-hero p {
  font-size: 17px;
  color: #475569;
}

/* BODY */

.checkout-body {
  max-width: 1100px;
  margin: auto;
  padding: 90px 20px 110px;
}

/* ERROR */

.checkout-error {
  background: #fee2e2;
  color: #7f1d1d;
  padding: 18px 22px;
  border-radius: 14px;
  margin-bottom: 30px;
}

/* LAYOUT */

.checkout-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
}

/* CARDS */

.checkout-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  margin-bottom: 30px;
}

.checkout-card h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* FORM */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-grid.single {
  grid-template-columns: 1fr;
}

.checkout-card label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #475569;
}

.checkout-card input,
.checkout-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.checkout-card textarea {
  min-height: 120px;
  resize: vertical;
}

.checkout-card input:focus,
.checkout-card textarea:focus {
  outline: none;
  border-color: #6366f1;
  background: #f8fafc;
}

/* PAYMENT */

.payment-option {
  display: block;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
  cursor: pointer;
}

.payment-option input {
  display: none;
}

.payment-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-content i {
  font-size: 26px;
  color: #6366f1;
}

.payment-content strong {
  display: block;
  font-size: 15px;
}

.payment-content span {
  font-size: 13px;
  color: #64748b;
}

.payment-option input:checked + .payment-content {
  background: #eef2ff;
  border-radius: 14px;
  padding: 14px;
}

/* SUMMARY */

.checkout-summary {
  background: #ffffff;
  padding: 36px;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  height: fit-content;
}

.checkout-summary h3 {
  font-size: 22px;
  margin-bottom: 22px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
}

.summary-totals {
  border-top: 1px solid #e5e7eb;
  margin-top: 20px;
  padding-top: 20px;
}

.summary-totals div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-totals .total {
  font-size: 18px;
  font-weight: 700;
}

/* BUTTON */

.checkout-primary-btn {
  width: 100%;
  margin-top: 26px;
  padding: 16px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.checkout-primary-btn:hover {
  background: #4f46e5;
}

/* TRUST */

.checkout-trust {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  margin-top: 18px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .checkout-hero h1 {
    font-size: 32px;
  }

  .checkout-card,
  .checkout-summary {
    padding: 28px;
  }
}

/* ================= ORDER SUCCESS PAGE ================= */

.order-success-page {
  background: #f8fafc;
  color: #0f172a;
  font-family: "Inter", sans-serif;
}

/* ================= HERO ================= */

.order-success-hero {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding: 120px 20px 90px;
  text-align: center;
}

.order-success-hero-inner {
  max-width: 760px;
  margin: auto;
}

.order-success-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #020617;
}

.order-success-hero p {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
}

/* ================= BODY ================= */

.order-success-body {
  max-width: 900px;
  margin: auto;
  padding: 90px 20px 110px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ================= CARDS ================= */

.order-card {
  background: #ffffff;
  padding: 42px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.confirmation-card .order-message {
  font-size: 16px;
  color: #334155;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* ================= STATUS ================= */

.order-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.status-item {
  background: #f8fafc;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}

.status-item span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

.status-item strong {
  font-size: 15px;
  color: #020617;
}

/* ================= NEXT STEPS ================= */

.next-steps-card h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.next-steps-list {
  padding-left: 20px;
}

.next-steps-list li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #334155;
}

/* ================= ACTIONS ================= */

.order-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.order-btn {
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.order-btn.primary {
  background: #6366f1;
  color: #ffffff;
}

.order-btn.primary:hover {
  background: #4f46e5;
}

.order-btn.secondary {
  background: #e0e7ff;
  color: #3730a3;
}

.order-btn.secondary:hover {
  background: #c7d2fe;
}

/* ================= SUPPORT ================= */

.order-support {
  text-align: center;
  font-size: 14px;
  color: #475569;
}

.order-support strong {
  display: block;
  margin-bottom: 6px;
}

.order-support a {
  color: #6366f1;
  text-decoration: none;
}

.order-support a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .order-status-grid {
    grid-template-columns: 1fr;
  }

  .order-success-hero h1 {
    font-size: 34px;
  }

  .order-card {
    padding: 30px 24px;
  }
}

/* ================= TRACK ORDER PAGE ================= */

.track-page {
  background: #f8fafc;
  color: #0f172a;
  font-family: "Inter", sans-serif;
}

/* ================= HERO ================= */

.track-hero {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding: 110px 20px 90px;
  text-align: center;
}

.track-hero-inner {
  max-width: 760px;
  margin: auto;
}

.track-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #020617;
}

.track-hero p {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
}

/* ================= BODY ================= */

.track-body {
  max-width: 700px;
  margin: auto;
  padding: 90px 20px 110px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ================= CARD ================= */

.track-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.track-card h2 {
  font-size: 26px;
  margin-bottom: 18px;
}

/* ================= FORM ================= */

.track-form label {
  display: block;
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
}

.track-input-row {
  display: flex;
  gap: 12px;
}

.track-input-row input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.track-input-row input:focus {
  outline: none;
  border-color: #6366f1;
  background: #f8fafc;
}

.track-input-row button {
  padding: 14px 26px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.track-input-row button:hover {
  background: #4f46e5;
}

/* ================= ERROR ================= */

.track-error {
  margin-top: 20px;
  padding: 16px 18px;
  background: #fee2e2;
  border-radius: 14px;
  color: #7f1d1d;
}

.track-error strong {
  display: block;
  margin-bottom: 6px;
}

/* ================= STATUS ================= */

.track-status {
  padding: 26px;
  border-radius: 18px;
  margin-bottom: 26px;
}

.track-status strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.track-status p {
  font-size: 15px;
  line-height: 1.7;
}

.track-status.processing {
  background: #fff7ed;
  color: #9a3412;
}

.track-status.dispatched {
  background: #ecfeff;
  color: #155e75;
}

/* ================= SUMMARY ================= */

.track-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.track-summary div {
  background: #f8fafc;
  padding: 18px;
  border-radius: 16px;
  text-align: center;
}

.track-summary span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

.track-summary strong {
  font-size: 15px;
  color: #020617;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .track-hero h1 {
    font-size: 32px;
  }

  .track-card {
    padding: 30px 24px;
  }

  .track-input-row {
    flex-direction: column;
  }

  .track-input-row button {
    width: 100%;
  }

  .track-summary {
    grid-template-columns: 1fr;
  }
}

/* ================= RETURN PAGE ================= */

.return-page {
  background: #f8fafc;
  font-family: "Inter", sans-serif;
  color: #0f172a;
}

/* ================= HERO ================= */

.return-hero {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding: 110px 20px 80px;
  text-align: center;
}

.return-hero-inner {
  max-width: 760px;
  margin: auto;
}

.return-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.return-hero p {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
}

/* ================= BODY ================= */

.return-body {
  padding: 90px 20px 120px;
  display: flex;
  justify-content: center;
}

/* ================= FORM CARD ================= */

.return-card {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  padding: 42px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.return-card h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.return-desc {
  font-size: 15px;
  color: #475569;
  margin-bottom: 26px;
  line-height: 1.6;
}

/* ================= FORM ================= */

.return-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.return-field label {
  font-size: 13px;
  color: #475569;
  margin-bottom: 6px;
  display: block;
}

.return-field input,
.return-field select,
.return-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
  font-family: inherit;
}

.return-field textarea {
  min-height: 120px;
  resize: vertical;
}

.return-field input:focus,
.return-field select:focus,
.return-field textarea:focus {
  outline: none;
  border-color: #6366f1;
  background: #f8fafc;
}

/* ================= ERROR ================= */

.return-error {
  background: #fef2f2;
  border-left: 5px solid #dc2626;
  padding: 14px 18px;
  border-radius: 12px;
}

.return-error strong {
  display: block;
  margin-bottom: 4px;
}

/* ================= BUTTON ================= */

.return-primary-btn {
  margin-top: 8px;
  padding: 15px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.return-primary-btn:hover {
  background: #4f46e5;
}

/* ================= NOTE ================= */

.return-note {
  margin-top: 12px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* ================= SUCCESS ================= */

.return-success {
  max-width: 520px;
  background: #ffffff;
  padding: 48px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.return-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.return-success h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.return-success p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.return-summary {
  background: #f8fafc;
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 24px;
}

.return-summary span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 4px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .return-hero h1 {
    font-size: 32px;
  }

  .return-card,
  .return-success {
    padding: 34px 26px;
  }
}

/* ================= AUTH PAGE ================= */

.auth-page {
  background: #f8fafc;
  color: #0f172a;
  font-family: "Inter", sans-serif;
}

/* ================= HERO ================= */

.auth-hero {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding: 120px 20px 90px;
  text-align: center;
}

.auth-hero-inner {
  max-width: 720px;
  margin: auto;
}

.auth-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #020617;
}

.auth-hero p {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
}

/* ================= BODY ================= */

.auth-body {
  display: flex;
  justify-content: center;
  padding: 90px 20px 120px;
}

/* ================= CARD ================= */

.auth-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  padding: 46px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.auth-card h2 {
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
}

.auth-desc {
  font-size: 15px;
  color: #475569;
  text-align: center;
  margin-bottom: 28px;
}

/* ================= FORM ================= */

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-field label {
  font-size: 13px;
  color: #475569;
  margin-bottom: 6px;
  display: block;
}

.auth-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.auth-field input:focus {
  outline: none;
  border-color: #6366f1;
  background: #f8fafc;
}

/* ================= BUTTON ================= */

.auth-primary-btn {
  margin-top: 10px;
  padding: 15px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.auth-primary-btn:hover {
  background: #4f46e5;
}

/* ================= DIVIDER ================= */

.auth-divider {
  position: relative;
  margin: 32px 0 22px;
  text-align: center;
}

.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}

.auth-divider span {
  position: relative;
  background: #ffffff;
  padding: 0 14px;
  font-size: 13px;
  color: #64748b;
}

/* ================= SECONDARY ================= */

.auth-secondary {
  text-align: center;
  font-size: 14px;
  color: #475569;
}

.auth-secondary a {
  color: #6366f1;
  font-weight: 600;
  margin-left: 4px;
  text-decoration: none;
}

.auth-secondary a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .auth-hero h1 {
    font-size: 32px;
  }

  .auth-card {
    padding: 34px 26px;
  }
}

/* ================= REGISTER PAGE ================= */

.register-page {
  background: #f8fafc;
  color: #0f172a;
  font-family: "Inter", sans-serif;
}

/* ================= HERO ================= */

.register-hero {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding: 120px 20px 90px;
  text-align: center;
}

.register-hero-inner {
  max-width: 720px;
  margin: auto;
}

.register-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #020617;
}

.register-hero p {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
}

/* ================= BODY ================= */

.register-body {
  display: flex;
  justify-content: center;
  padding: 90px 20px 120px;
}

/* ================= CARD ================= */

.register-card {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  padding: 46px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.register-card h2 {
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
}

.register-desc {
  font-size: 15px;
  color: #475569;
  text-align: center;
  margin-bottom: 28px;
}

/* ================= FORM ================= */

.register-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.register-field label {
  font-size: 13px;
  color: #475569;
  margin-bottom: 6px;
  display: block;
}

.register-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.register-field input:focus {
  outline: none;
  border-color: #6366f1;
  background: #f8fafc;
}

/* ================= BUTTON ================= */

.register-primary-btn {
  margin-top: 10px;
  padding: 15px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.register-primary-btn:hover {
  background: #4f46e5;
}

/* ================= DIVIDER ================= */

.register-divider {
  position: relative;
  margin: 32px 0 22px;
  text-align: center;
}

.register-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}

.register-divider span {
  position: relative;
  background: #ffffff;
  padding: 0 14px;
  font-size: 13px;
  color: #64748b;
}

/* ================= SECONDARY ================= */

.register-secondary {
  text-align: center;
  font-size: 14px;
  color: #475569;
}

.register-secondary a {
  color: #6366f1;
  font-weight: 600;
  margin-left: 4px;
  text-decoration: none;
}

.register-secondary a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .register-hero h1 {
    font-size: 32px;
  }

  .register-card {
    padding: 34px 26px;
  }
}

/* ================= ACCOUNT PAGE ================= */

.account-page {
  background: #f8fafc;
  font-family: "Inter", sans-serif;
  color: #0f172a;
}

/* ================= HERO ================= */

.account-hero {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding: 110px 20px 80px;
  text-align: center;
}

.account-hero-inner {
  max-width: 800px;
  margin: auto;
}

.account-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.account-hero p {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
}

/* ================= BODY ================= */

.account-body {
  padding: 90px 20px 120px;
}

.account-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* ================= SIDEBAR ================= */

.account-sidebar {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  height: fit-content;
}

.account-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.account-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6366f1;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.account-user-info strong {
  display: block;
  font-size: 14px;
}

.account-user-info span {
  font-size: 13px;
  color: #64748b;
}

/* NAV */

.account-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 6px;
  transition: background 0.2s ease;
}

.account-nav a:hover {
  background: #f1f5f9;
}

.account-nav a.active {
  background: #6366f1;
  color: #ffffff;
}

.account-nav a.logout {
  margin-top: 14px;
  color: #b91c1c;
}

/* ================= CONTENT ================= */

.account-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* CARD */

.account-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.account-card h2 {
  font-size: 22px;
  margin-bottom: 22px;
}

/* INFO GRID */

.account-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.account-info-grid span {
  font-size: 13px;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}

/* ACTIONS */

.account-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.account-action {
  background: #f8fafc;
  padding: 22px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.account-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

.account-action strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.account-action span {
  font-size: 14px;
  color: #475569;
}

/* NOTICE */

.account-note {
  background: #eef2ff;
  border-left: 6px solid #6366f1;
  padding: 22px 26px;
  border-radius: 18px;
}

.account-note strong {
  display: block;
  margin-bottom: 6px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .account-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .account-hero h1 {
    font-size: 32px;
  }

  .account-info-grid,
  .account-action-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= ABOUT PAGE ================= */

.about-page {
  background: #f8fafc;
  color: #0f172a;
  font-family: "Inter", sans-serif;
}

/* ================= HERO ================= */

.about-hero {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding: 120px 20px 90px;
  text-align: center;
}

.about-hero-inner {
  max-width: 880px;
  margin: auto;
}

.about-hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #020617;
}

.about-hero p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
}

/* ================= BODY ================= */

.about-body {
  max-width: 1000px;
  margin: auto;
  padding: 90px 20px 110px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ================= BLOCK ================= */

.about-block {
  background: #ffffff;
  padding: 48px 52px;
  border-radius: 26px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.about-block h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #020617;
}

.about-block p {
  font-size: 16px;
  color: #334155;
  line-height: 1.9;
  margin-bottom: 14px;
}

.about-block p:last-child {
  margin-bottom: 0;
}

/* ================= HIGHLIGHT BLOCK ================= */

.about-block.highlight {
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 26px;
}

.about-points .point {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.about-points strong {
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
  color: #020617;
}

.about-points p {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

/* ================= LISTS ================= */

.about-list {
  padding-left: 22px;
  margin-top: 16px;
}

.about-list li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #334155;
}

/* Muted list */
.about-list.muted li {
  color: #64748b;
}

/* ================= SOFT BLOCK ================= */

.about-block.soft {
  background: #f1f5f9;
  box-shadow: none;
}

/* ================= DISCLOSURE ================= */

.about-block.disclosure {
  background: #ffffff;
  border-left: 6px solid #cbd5f5;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .about-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 90px 16px 70px;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-body {
    padding: 70px 16px 90px;
    gap: 60px;
  }

  .about-block {
    padding: 36px 26px;
    border-radius: 22px;
  }

  .about-block h2 {
    font-size: 24px;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-page {
  background: #f8fafc;
  color: #0f172a;
  font-family: "Inter", sans-serif;
}

/* ================= HERO ================= */

.contact-hero {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding: 110px 20px 90px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 760px;
  margin: auto;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #020617;
}

.contact-hero p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
}

/* ================= BODY ================= */

.contact-body {
  max-width: 1100px;
  margin: auto;
  padding: 90px 20px 110px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

/* ================= CARDS ================= */

.contact-card {
  background: #ffffff;
  padding: 42px;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.contact-card.soft {
  background: #f1f5f9;
  box-shadow: none;
  margin-top: 20px;
}

.contact-card h2,
.contact-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.contact-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* ================= DETAILS ================= */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details .detail span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
}

.contact-details .detail strong {
  font-size: 15px;
  color: #020617;
  word-break: break-word;
}

.muted {
  font-size: 14px;
  color: #64748b;
}

/* ================= FORM ================= */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
  font-family: inherit;
  background: #ffffff;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6366f1;
  background: #f8fafc;
}

.contact-form button {
  margin-top: 8px;
  padding: 14px;
  border-radius: 999px;
  background: #6366f1;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background: #4f46e5;
}

/* ================= SUCCESS ================= */

.contact-success {
  background: #ffffff;
  padding: 60px 42px;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.contact-success h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-success p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .contact-body {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-card {
    padding: 30px 24px;
    border-radius: 22px;
  }
}

/* ================= FAQ PAGE ================= */

.faq-page {
  background: #f8fafc;
  color: #0f172a;
  font-family: "Inter", sans-serif;
}

/* ================= HERO ================= */

.faq-hero {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding: 110px 20px 90px;
  text-align: center;
}

.faq-hero-inner {
  max-width: 760px;
  margin: auto;
}

.faq-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #020617;
}

.faq-hero p {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
}

/* ================= BODY ================= */

.faq-body {
  max-width: 900px;
  margin: auto;
  padding: 90px 20px 110px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* ================= GROUP ================= */

.faq-group h2 {
  font-size: 26px;
  margin-bottom: 22px;
  color: #020617;
}

/* ================= ITEM ================= */

.faq-item {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #020617;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .toggle {
  font-size: 22px;
  font-weight: 600;
  color: #6366f1;
  transition: transform 0.2s ease;
}

/* ================= ANSWER ================= */

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* ================= ACTIVE ================= */

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question .toggle {
  transform: rotate(45deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .faq-hero h1 {
    font-size: 32px;
  }

  .faq-body {
    padding: 70px 16px 90px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}

/* =====================================================
   SHOP PAGE — HARD ENTERPRISE (NEW CLASSES)
===================================================== */

.spx-shop {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #111827;
}

/* HEADER */

.spx-shop-header {
  background: #0a0a0a;
  padding: 90px 20px 70px;
}

.spx-shop-header-inner {
  max-width: 1300px;
  margin: auto;
}

.spx-shop-header-inner h1 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 10px;
}

.spx-shop-header-inner p {
  font-size: 15px;
  color: #d1d5db;
  max-width: 700px;
}

.spx-shop-result {
  margin-top: 12px;
  font-size: 14px;
  color: #e5e7eb;
}

/* BODY */

.spx-shop-body {
  max-width: 1300px;
  margin: auto;
  padding: 80px 20px;
}

/* LAYOUT */

.spx-shop-layout {
  display: grid;
  gap: 40px;
}

/* FILTER */

.spx-filter-panel {
  border: 2px solid #000;
  padding: 22px;
  height: fit-content;
}

.spx-filter-panel h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.spx-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spx-filter-list li a {
  display: block;
  padding: 10px 12px;
  border: 2px solid transparent;
  color: #000;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
}

.spx-filter-list li a:hover,
.spx-filter-list li a.active {
  border-color: #000;
  background: #facc15;
}

/* PRODUCTS */

.spx-product-area {
  min-height: 200px;
}

/* EMPTY */

.spx-empty-state {
  border: 2px solid #000;
  padding: 40px;
  max-width: 520px;
}

.spx-empty-state strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

/* GRID */

.spx-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */

.spx-product-card {
  border: 2px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  padding: 18px;
}

.spx-product-link {
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
}

/* IMAGE */

.spx-product-image {
  border-bottom: 2px solid #f1f5f9;
  padding: 24px;
  position: relative;
  background: #ffffff;
  perspective: 900px;
}

.spx-product-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  opacity: 0.08;
}

.spx-product-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  position: relative;
  z-index: 1;

  transform: translateZ(40px);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.spx-product-card:hover .spx-product-image img {
  transform: translateZ(70px) scale(1.03);
}

.spx-stock-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  background: #2563eb;
  padding: 10px;
  border-radius: 18px;
  color: white;
}

.spx-stock-label.out {
  background: #fef2f2;
}

/* INFO */

.spx-product-info {
  padding: 16px;
}

.spx-product-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.spx-product-info p {
  font-size: 14px;
  color: #374151;
}

/* FOOTER */

.spx-product-footer {
  border-top: 2px solid #f1f5f9;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spx-price {
  font-size: 18px;
  font-weight: 700;
}

/* BUTTONS */

.spx-add-btn {
  padding: 8px 14px;
  border: 2px solid white;
  background: #2563eb;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 12px;
}

.spx-add-btn:hover {
  background: #2563eb;
  color: white;
}

.spx-disabled-btn {
  padding: 8px 14px;
  border: 2px solid #000;
  background: #e5e7eb;
  font-size: 13px;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .spx-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .spx-shop-layout {
    grid-template-columns: 1fr;
  }

  .spx-product-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   CATEGORY PAGE
===================================================== */

.category-page {
  background: #ffffff;
}

/* HERO */
.category-hero {
  background: linear-gradient(180deg, #f5f5f7, #ffffff);
  padding: 90px 0 70px;
  text-align: center;
}

.category-hero h1 {
  font-size: 40px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.category-hero p {
  font-size: 16px;
  color: #374151;
  max-width: 640px;
  margin: 0 auto;
}

/* CONTENT */
.category-content {
  padding: 70px 0 100px;
}

/* INFO */
.category-info {
  max-width: 760px;
  margin: 0 auto 50px;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* EMPTY */
.category-empty {
  text-align: center;
  font-size: 15px;
  color: #6e6e73;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .category-hero h1 {
    font-size: 32px;
  }
}

/* =====================================================
   POLICY PAGES (PRIVACY, TERMS, REFUND, ETC.)
===================================================== */

.policy-page {
  padding: 90px 0;
  background: #ffffff;
}

.policy-title {
  font-size: 38px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 6px;
}

.policy-updated {
  font-size: 13px;
  color: #6e6e73;
  margin-bottom: 40px;
}

.policy-content {
  max-width: 900px;
  line-height: 1.7;
}

.policy-content h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.policy-content p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 12px;
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-content li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 6px;
}

.policy-contact {
  margin-top: 16px;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .policy-title {
    font-size: 32px;
  }
}

.shop-search-note {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 30px;
}

/* HP Link */
.hp-partner {
  max-width: 150px;
  cursor: pointer;
  margin-bottom: 8px;
}

/* Popup styles */
.hp-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.hp-popup {
  background: #fff;
  padding: 25px;
  max-width: 420px;
  width: 90%;
  border-radius: 6px;
  text-align: center;
}

.hp-popup-actions {
  margin-top: 20px;
}

.hp-popup-actions button {
  padding: 8px 18px;
  margin: 0 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#hpProceed {
  background: #0076ce;
  color: #fff;
}

#hpCancel {
  background: #ccc;
}
