@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ════════════════════════════════════════════════════════════
   LATRIVANTE — Design System v3.0 (Premium Light)
   ════════════════════════════════════════════════════════════ */

:root {
  /* Brand Colors */
  --brand-teal: #67C7C1;
  --brand-teal-dark: #56a5a0;
  --brand-teal-light: #8beee8;
  --brand-black: #000000;
  --brand-white: #ffffff;

  /* Semantic Colors */
  --color-bg: var(--brand-white);
  --color-surface: var(--brand-white);
  --color-surface2: #f8f9fa;
  --color-surface3: #e9ecef;
  --color-border: #e5e7eb;
  --color-border-focus: var(--brand-teal);
  --color-primary: var(--brand-teal);
  --color-primary-dark: var(--brand-teal-dark);
  --color-accent: var(--brand-black);
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-text: var(--brand-black);
  --color-text-muted: #374151;
  --color-text-faint: #9ca3af;

  /* Aliases for legacy compat */
  --color-primary-glow: rgba(103, 199, 193, 0.15);
  --color-accent-glow: rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lift: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 24px rgba(103, 199, 193, 0.35);

  /* Animation */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.28s;

  /* Layout */
  --max-width: 1420px;
  --navbar-h: 68px;
}

/* ─── Reset ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

svg {
  flex-shrink: 0;
}

/* ─── Container ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(103, 199, 193, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 6px 24px rgba(103, 199, 193, 0.4);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.btn-accent:hover {
  background: #333333;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover {
  background: var(--color-surface2);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--color-surface2);
  color: var(--color-text);
}

/* ─── Badges ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-new {
  background: #dbeafe;
  color: #1d4ed8;
}

.badge-sale {
  background: #fee2e2;
  color: #b91c1c;
}

.badge-popular {
  background: #fef3c7;
  color: #92400e;
}

.badge-eco {
  background: #dcfce7;
  color: #15803d;
}

.badge-featured {
  background: #ede9fe;
  color: #333333;
}

/* ─── Text Utilities ─────────────────────────────────── */
.text-gradient {
  background: linear-gradient(130deg, var(--brand-teal) 0%, var(--brand-black) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════ */
.topbar {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 0;
  letter-spacing: 0.01em;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.topbar-item svg {
  opacity: 0.7;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.topbar-right a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--duration);
}

.topbar-right a:hover {
  color: #fff;
}

/* ═══════════════════════════════════════
   FLOATING ISLAND NAVBAR
   ═══════════════════════════════════════ */
.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 10px var(--space-lg);
  background: rgba(246, 247, 251, 0.7);
  backdrop-filter: blur(4px);
}

.navbar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  height: var(--navbar-h);
  max-width: var(--max-width);
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(13, 17, 23, 0.08), 0 1px 2px rgba(13, 17, 23, 0.04);
  transition: box-shadow var(--duration) var(--ease);
}

.navbar:hover {
  box-shadow: 0 8px 32px rgba(13, 17, 23, 0.1);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: 0 var(--space-xl);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--color-primary);
}

.nav-search {
  flex: 1;
  max-width: 440px;
  position: relative;
}

.nav-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-faint);
  pointer-events: none;
}

.nav-search-input {
  width: 100%;
  padding: 9px 18px 9px 42px;
  background: var(--color-surface2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 0.875rem;
  transition: all var(--duration) var(--ease);
  outline: none;
  font-family: var(--font-body);
}

.nav-search-input::placeholder {
  color: var(--color-text-faint);
}

.nav-search-input:focus {
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px rgba(103, 199, 193, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: var(--color-surface2);
  color: var(--color-text);
}

.nav-link-badge {
  min-width: 18px;
  height: 18px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
  margin: 0 4px;
}

.chevron {
  transition: transform var(--duration) var(--ease);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all var(--duration) var(--ease);
  z-index: 300;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all var(--duration) var(--ease);
}

.dropdown-item svg {
  color: var(--color-text-faint);
}

.dropdown-item:hover {
  background: var(--color-surface2);
  color: var(--color-primary);
}

.dropdown-item:hover svg {
  color: var(--color-primary);
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px;
  color: var(--color-text);
}

/* ═══════════════════════════════════════
   CATEGORY BAR
   ═══════════════════════════════════════ */
.catbar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.catbar::-webkit-scrollbar {
  display: none;
}

.catbar .container {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 var(--space-xl);
  height: 46px;
}

.catbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.catbar-item:hover {
  background: var(--color-surface2);
  color: var(--color-text);
}

.catbar-item.active {
  background: var(--color-primary);
  color: #fff;
}

.catbar-item svg {
  opacity: 0.7;
}

.catbar-item.active svg {
  opacity: 1;
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(7, 8, 20, 0.88) 0%,
      rgba(23, 14, 60, 0.78) 50%,
      rgba(15, 23, 42, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 860px;
  margin-bottom: var(--space-md);
}

.hero-title .accent {
  background: linear-gradient(90deg, #67C7C1, #b3e7e4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.hero-actions .btn {
  padding: 13px 28px;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
}

.btn-hero-primary {
  background: #fff;
  color: var(--color-text);
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-hero-primary:hover {
  background: var(--color-surface2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* hero search */
.hero-search {
  width: 100%;
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.hero-search-bar {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 6px;
  gap: 6px;
  transition: all var(--duration) var(--ease);
}

.hero-search-bar:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.hero-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.95rem;
  padding: 8px 16px;
  font-family: var(--font-body);
}

.hero-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-search-btn {
  background: #fff;
  color: var(--color-text);
  border: none;
  border-radius: calc(var(--radius-xl) - 6px);
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--duration) var(--ease);
  flex-shrink: 0;
}

.hero-search-btn:hover {
  background: var(--color-surface2);
}

/* ═══════════════════════════════════════
   TRUST BAR (Floating)
   ═══════════════════════════════════════ */
.trust-bar {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lift);
  max-width: 1150px;
  margin: -48px auto 56px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  border-right: 1px solid var(--color-border);
  transition: background var(--duration) var(--ease);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: var(--color-surface2);
}

.trust-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.trust-text span {
  font-size: 0.76rem;
  color: var(--color-text-faint);
}

/* ═══════════════════════════════════════
   SECTION BASE
   ═══════════════════════════════════════ */
.section {
  padding: var(--space-3xl) 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.025em;
}

.section-title span {
  background: linear-gradient(130deg, var(--brand-teal), var(--brand-black));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin-top: var(--space-md);
  line-height: 1.7;
}

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* ═══════════════════════════════════════
   CATEGORY GRID
   ═══════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.cat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 16px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(103, 199, 193, 0.05), rgba(0, 0, 0, 0.05));
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.cat-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.cat-card:hover::before {
  opacity: 1;
}

.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--color-primary);
  transition: all var(--duration) var(--ease);
}

.cat-card:hover .cat-icon {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 6px 16px rgba(103, 199, 193, 0.3);
}

.cat-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.cat-count {
  font-size: 0.72rem;
  color: var(--color-text-faint);
}

/* ═══════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(103, 199, 193, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.product-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-surface2);
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 25, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.overlay-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all var(--duration) var(--ease);
  transform: translateY(8px);
  box-shadow: var(--shadow-sm);
}

.product-card:hover .overlay-btn {
  transform: translateY(0);
}

.overlay-btn:hover {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.1);
}

.product-badge-wrap {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-faint);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  opacity: 0;
  box-shadow: var(--shadow-sm);
}

.product-card:hover .product-wishlist {
  opacity: 1;
}

.product-wishlist:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fecaca;
}

.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-supplier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.product-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  line-height: 1.4;
  color: var(--color-text);
}

.product-name a {
  color: inherit;
}

.product-name a:hover {
  color: var(--color-primary);
}

.product-sku {
  font-size: 0.73rem;
  color: var(--color-text-faint);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-sm);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.product-price-old {
  font-size: 0.82rem;
  color: var(--color-text-faint);
  text-decoration: line-through;
  margin-left: 4px;
}

.product-moq {
  font-size: 0.72rem;
  color: var(--color-text-faint);
  background: var(--color-surface2);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
}

.product-card-footer {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 8px;
  background: var(--color-surface);
}

.product-card-footer .btn {
  flex: 1;
  justify-content: center;
  padding: 8px 12px;
  font-size: 0.8rem;
  border-radius: var(--radius-md);
}

/* ═══════════════════════════════════════
   SUPPLIERS SECTION
   ═══════════════════════════════════════ */
.suppliers-section {
  background: var(--color-surface2);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.supplier-logos {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.supplier-logos-track {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  animation: scroll-x 28s linear infinite;
  flex-shrink: 0;
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.supplier-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 44px;
  padding: 0 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-muted);
  transition: all var(--duration) var(--ease);
  min-width: 130px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.supplier-logo:hover {
  color: var(--color-primary);
  border-color: rgba(103, 199, 193, 0.3);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-black));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.feature-card:hover {
  border-color: rgba(103, 199, 193, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(103, 199, 193, 0.1), rgba(0, 0, 0, 0.1));
  border: 1px solid rgba(103, 199, 193, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  transition: all var(--duration) var(--ease);
}

.feature-card:hover .feature-icon {
  background: var(--color-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(103, 199, 193, 0.35);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.feature-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   QUOTE CTA
   ═══════════════════════════════════════ */
.quote-cta {
  background: linear-gradient(135deg, var(--brand-teal-dark) 0%, var(--brand-black) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-2xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(103, 199, 193, 0.35);
}

.quote-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.quote-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 40%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.quote-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: #fff;
  letter-spacing: -0.02em;
}

.quote-cta-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
}

.quote-cta-actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.quote-cta-actions .btn-primary {
  background: #fff;
  color: var(--brand-teal-dark);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.quote-cta-actions .btn-primary:hover {
  background: var(--color-surface2);
  transform: translateY(-2px);
}

.quote-cta-actions .btn-outline {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.quote-cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(103, 199, 193, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-black));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--color-text-faint);
  margin-top: 1px;
}

/* ═══════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-black) 100%);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.newsletter-subtitle {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-xl);
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: all var(--duration) var(--ease);
  font-family: var(--font-body);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  padding: 12px 24px;
  background: #fff;
  color: var(--brand-teal-dark);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  font-family: var(--font-body);
}

.newsletter-btn:hover {
  background: var(--color-surface2);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: #0d1117;
  color: rgba(255, 255, 255, 0.65);
  padding: var(--space-3xl) 0 var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.footer-brand span {
  color: var(--brand-teal-light);
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--space-lg);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--duration) var(--ease);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--duration);
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* ═══════════════════════════════════════
   FLOAT CARDS (Hero decorative)
   ═══════════════════════════════════════ */
.float-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lift);
  animation: float-y 4s ease-in-out infinite;
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(103, 199, 193, 0.12), rgba(0, 0, 0, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.float-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text);
}

.float-text span {
  font-size: 0.75rem;
  color: var(--color-text-faint);
}

/* ═══════════════════════════════════════
   ALERTS / TOASTS
   ═══════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-lift);
  font-size: 0.875rem;
  font-weight: 500;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slide-in 0.3s var(--ease);
}

@keyframes slide-in {
  from {
    transform: translateX(20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast-success {
  border-left: 3px solid var(--color-success);
}

.toast-warning {
  border-left: 3px solid var(--color-warning);
}

.toast-danger {
  border-left: 3px solid var(--color-danger);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 900px) {
  .trust-bar .container {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .quote-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
  }

  .quote-cta-actions {
    justify-content: center;
  }

  .hero-stats {
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 60px;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .navbar .container {
    padding: 0 var(--space-md);
  }

  .topbar-left {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar .container {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catbar .container {
    padding: 0 var(--space-md);
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════
   MISC / UTILITIES
   ═══════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-text-muted);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.justify-center {
  justify-content: center;
}

/* ───────────────── NAV LOGO ICON ─────────────────── */
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-black));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

/* ───────────────── SOCIAL BUTTONS ─────────────────── */
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: var(--space-md);
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--duration) var(--ease);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ───────────────── FLASH MESSAGES ─────────────────── */
.flash-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flash {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-lift);
  font-size: 0.875rem;
  font-weight: 500;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flash-success {
  border-left: 3px solid var(--color-success);
}

.flash-error {
  border-left: 3px solid var(--color-danger);
}

.flash-info {
  border-left: 3px solid var(--color-primary);
}

.flash-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--color-text-faint);
  cursor: pointer;
}

/* ───────────────── MOBILE OPEN ─────────────────── */
@media (max-width: 768px) {
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--color-surface);
    padding: 80px var(--space-xl) var(--space-xl);
    z-index: 500;
    overflow-y: auto;
    gap: var(--space-sm);
  }

  .nav-links.mobile-open .nav-link {
    font-size: 1.1rem;
    padding: 12px 16px;
  }
}

/* --------------------------------------------------------
   PRODUCTS PAGE & FILTERS
   -------------------------------------------------------- */
.page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.page-sidebar {
  position: sticky;
  top: calc(var(--navbar-h) + var(--space-xl));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.filter-group {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.filter-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.filter-checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-surface);
  cursor: pointer;
  position: relative;
  transition: all var(--duration) var(--ease);
  flex-shrink: 0;
}

.filter-checkbox:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.filter-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 3.5px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.filter-checkbox[type="radio"] {
  border-radius: 50%;
}

.filter-checkbox[type="radio"]:checked::after {
  content: '';
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border: none;
  background: #fff;
  border-radius: 50%;
  transform: none;
}

.filter-label {
  flex: 1;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color var(--duration) var(--ease);
}

.filter-option:hover .filter-label {
  color: var(--color-text);
}

.filter-count {
  font-size: 0.75rem;
  color: var(--color-text-faint);
  background: var(--color-surface2);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-input {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface2);
  color: var(--color-text);
  font-size: 0.88rem;
  outline: none;
  transition: all var(--duration) var(--ease);
}

.price-input:focus {
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.page-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.result-count {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.result-count strong {
  color: var(--color-text);
  font-weight: 700;
}

.sort-select {
  padding: 8px 36px 8px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 10px center;
  -webkit-appearance: none;
  appearance: none;
  font-size: 0.88rem;
  color: var(--color-text);
  cursor: pointer;
  outline: none;
  transition: all var(--duration) var(--ease);
}

.sort-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.products-grid.list-view {
  display: flex;
  flex-direction: column;
}

.products-grid.list-view .product-card {
  flex-direction: row;
  align-items: center;
}

.products-grid.list-view .product-img {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.products-grid.list-view .product-info {
  flex: 1;
}

.products-grid.list-view .product-card-footer {
  width: 250px;
  flex-direction: column;
  border-top: none;
  border-left: 1px solid var(--color-border);
  justify-content: center;
}

@media (max-width: 960px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-sidebar {
    position: static;
    margin-bottom: var(--space-xl);
  }

  .page-main-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
}

/* --------------------------------------------------------
   FORMS & INPUTS
   -------------------------------------------------------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-group {
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
  outline: none;
  font-family: var(--font-body);
}

.form-input::placeholder {
  color: var(--color-text-faint);
}

.form-input:focus {
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 4px var(--color-primary-glow);
}

textarea.form-input {
  min-height: 120px;
  line-height: 1.5;
  resize: vertical;
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}


/* ═══════════════════════════════════════
   PAGINATION (Rich Aesthetics)
   ═══════════════════════════════════════ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: var(--space-2xl) auto var(--space-xl);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  background: transparent;
  border: 2px solid transparent;
}

.page-btn:hover:not(.page-btn-dots) {
  background: rgba(103, 199, 193, 0.12);
  transform: translateY(-2px);
  color: var(--color-primary-dark);
}

.page-btn.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: 0 4px 15px rgba(103, 199, 193, 0.4);
  transform: scale(1.05);
}

.page-btn-icon {
  color: var(--color-primary-dark);
  background: rgba(0, 0, 0, 0.03);
}

.page-btn-icon:hover {
  background: rgba(103, 199, 193, 0.15) !important;
}

.page-btn-dots {
  cursor: default;
  opacity: 0.6;
  background: transparent !important;
}

@media(max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 768px) {
  .nav-links.show-mobile {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    background: var(--color-surface);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: var(--space-md);
    z-index: 1000;
    align-items: stretch;
    border-top: 1px solid var(--color-border);
  }
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  display: block;
}