/* ============================================================
   StockItalia B2B - Professional CSS Stylesheet
   Brand: Primary Orange #E67E22 | Dark #1A1A2E | Dark Blue #16213E
   Fonts: Inter (body) | Poppins (headings)
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ============================================================
   2. CSS CUSTOM PROPERTIES (Variables)
   ============================================================ */
:root {
  /* Brand Colors */
  --color-primary: #E67E22;
  --color-primary-dark: #D35400;
  --color-primary-light: #F39C12;
  --color-primary-rgb: 230, 126, 34;
  --color-dark: #1A1A2E;
  --color-dark-blue: #16213E;
  --color-white: #FFFFFF;
  --color-light-gray: #F8F9FA;
  --color-success: #27AE60;
  --color-success-dark: #1E8C4C;
  --color-error: #E74C3C;
  --color-warning: #F39C12;
  --color-info: #2980B9;
  --color-text: #555555;
  --color-text-dark: #333333;
  --color-text-light: #777777;
  --color-text-muted: #999999;
  --color-border: #E0E0E0;
  --color-border-light: #F0F0F0;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 80px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-orange: 0 4px 15px rgba(230, 126, 34, 0.4);
  --shadow-card: 0 2px 15px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-full: 50%;
  --radius-pill: 50px;

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
}

/* ============================================================
   3. RESET & BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.6;
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-dark);
  margin-bottom: 0.5em;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 1em;
  color: var(--color-text);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-orange { color: var(--color-primary); }
.text-dark { color: var(--color-dark); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-text-muted); }
.text-success { color: var(--color-success); }
.text-error { color: var(--color-error); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* Display Utilities */
.hidden { display: none !important; }
.show { display: block !important; }
.invisible { visibility: hidden; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

/* Spacing Utilities */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }

/* Section Base */
section {
  padding: 80px 0;
}

section.bg-light {
  background: var(--color-light-gray);
}

section.bg-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section-label {
  display: inline-block;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 36px;
  color: var(--color-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  border: 2px solid transparent;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-heading);
  line-height: 1.4;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--color-dark-blue);
  color: var(--color-white);
  border-color: var(--color-dark-blue);
}

.btn-secondary:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(22, 33, 62, 0.4);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn-outline-orange {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline-orange:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-success {
  background: var(--color-success);
  color: var(--color-white);
  border-color: var(--color-success);
}

.btn-success:hover {
  background: var(--color-success-dark);
  border-color: var(--color-success-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  padding: 12px 20px;
}

.btn-ghost:hover {
  background: rgba(230, 126, 34, 0.08);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn i,
.btn svg {
  font-size: 1.1em;
}

/* ============================================================
   6. BADGES
   ============================================================ */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new {
  background: var(--color-success);
  color: var(--color-white);
}

.badge-a {
  background: var(--color-info);
  color: var(--color-white);
}

.badge-b {
  background: var(--color-primary);
  color: var(--color-white);
}

.badge-c {
  background: var(--color-warning);
  color: var(--color-white);
}

.badge-salvage {
  background: var(--color-error);
  color: var(--color-white);
}

.badge-mixed {
  background: #8E44AD;
  color: var(--color-white);
}

/* ============================================================
   7. ALERT MESSAGES
   ============================================================ */
.alert {
  padding: 15px 20px;
  border-radius: var(--radius-lg);
  margin: 15px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  border-left: 4px solid;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: var(--color-success);
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border-color: var(--color-error);
}

.alert-warning {
  background: #fff3cd;
  color: #856404;
  border-color: var(--color-warning);
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border-color: var(--color-info);
}

.alert .alert-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.6;
  color: inherit;
  padding: 0;
}

.alert .alert-close:hover {
  opacity: 1;
}

/* ============================================================
   8. TOP BAR
   ============================================================ */
.top-bar {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container,
.top-bar .top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: var(--transition-base);
}

.top-bar a:hover {
  color: var(--color-primary);
}

.top-bar-contact,
.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-icon {
  color: var(--color-primary);
  font-size: 14px;
}

.top-bar-actions,
.top-bar-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Language Switcher */
.language-switcher,
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.lang-btn,
.lang-switch button {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition-base);
  line-height: 1;
}

.lang-btn:hover,
.lang-switch button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.lang-btn.active,
.lang-switch button.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  padding: 0 2px;
  line-height: 1;
  display: none;
}

/* ============================================================
   9. HEADER & NAVIGATION
   ============================================================ */
.header {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-base);
}

.header.scrolled,
.header.header--scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header.header--hidden {
  transform: translateY(-100%);
}

.header .container,
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: var(--header-height);
}

/* Logo */
.logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--color-dark);
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: 1.5px;
  line-height: 1.1;
}

.logo-text {
  color: var(--color-dark);
  letter-spacing: 1.5px;
  line-height: 1.1;
  font-weight: 900;
  display: inline-block;
}

.logo-text .logo-accent,
.logo-text span {
  color: var(--color-primary);
}

/* Header logo hover animation */
.header .logo {
  position: relative;
  transition: transform 0.3s ease;
}

.header .logo:hover {
  transform: scale(1.03);
}

.header .logo-text {
  position: relative;
  overflow: hidden;
}

.header .logo-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-dark));
  transition: width 0.4s ease;
  border-radius: 1px;
}

.header .logo:hover .logo-text::after {
  width: 100%;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.8px;
  font-family: var(--font-body);
  line-height: 1;
  text-transform: uppercase;
}

.logo img {
  height: 42px;
  width: auto;
}

/* Desktop Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav a {
  padding: 8px 12px;
  color: var(--color-text-dark);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  white-space: nowrap;
  display: block;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active,
.nav-link.is-active,
.nav a:hover,
.nav a.active,
.nav a.is-active {
  color: var(--color-primary);
  background: rgba(230, 126, 34, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-base);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-text);
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: var(--color-light-gray);
  color: var(--color-primary);
  padding-left: 24px;
}

/* Header CTA Button */
.header-actions,
.header-cta {
  margin-left: 15px;
  flex-shrink: 0;
}

.btn-cta-header {
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span,
.hamburger .hamburger-line {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1),
.hamburger.is-active span:nth-child(1),
.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2),
.hamburger.is-active span:nth-child(2),
.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3),
.hamburger.is-active span:nth-child(3),
.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-dark);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-list li:last-child {
  border-bottom: none;
  padding-top: 10px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition-base);
  text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-primary);
}

.btn-mobile-cta {
  display: block;
  text-align: center;
  margin-top: 5px;
}

.mobile-menu-contact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition-base);
}

.mobile-menu-contact a:hover {
  color: var(--color-primary);
}

/* Nav overlay for mobile */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.nav-overlay.is-visible {
  display: block;
}

/* Body scroll lock when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

/* ============================================================
   10. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.92), rgba(22, 33, 62, 0.85));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 700px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--color-white);
}

.hero h1 span {
  color: var(--color-primary);
}

.hero p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.6;
  color: var(--color-white);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  display: block;
  line-height: 1.2;
}

.hero-stat .label {
  font-size: 13px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Video Hero */
.hero--video {
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.80), rgba(22, 33, 62, 0.70));
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(10px);
  z-index: 3;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  gap: 0;
}

.hero-stat {
  text-align: center;
  flex: 1;
  color: var(--color-white);
}

.hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  display: block;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-white);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   11. PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 100px 0 60px;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.93), rgba(22, 33, 62, 0.88));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--color-white);
}

.page-hero p {
  font-size: 18px;
  opacity: 0.85;
  color: var(--color-white);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.7;
}

.breadcrumb a {
  color: var(--color-primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
}

/* ============================================================
   12. BRAND LOGOS / SOURCE DIRECT
   ============================================================ */
.brands-section {
  background: var(--color-light-gray);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.brands-label {
  color: var(--color-primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  font-weight: 600;
}

.brands-title {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.brand-logo-item {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 15px;
  border: 1px solid var(--color-border-light);
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.15);
}

.brand-logo-item img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.brand-logo-item:hover img {
  transform: scale(1.03);
}

/* ============================================================
   13. PRODUCT CARDS GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
  border: 1px solid var(--color-border-light);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.product-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--color-light-gray);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-image .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.product-card-image .discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-error);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.product-card-body {
  padding: 18px;
}

.product-card-brand {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}

.product-card-meta span {
  margin-right: 12px;
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}

.product-card-price .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.product-card-price .retail {
  font-size: 14px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-card-price .discount-pct {
  font-size: 13px;
  color: var(--color-success);
  font-weight: 600;
}

.product-card .btn {
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.product-brand-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(26, 26, 46, 0.85);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.product-card-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-pieces,
.product-pallets {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.product-pieces i,
.product-pallets i {
  color: var(--color-primary);
  font-size: 12px;
}

/* Product badges */
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-hot {
  background: #e74c3c;
  color: white;
}

.badge-new {
  background: var(--color-success);
  color: white;
}

.badge-popular {
  background: var(--color-primary);
  color: white;
}

.badge-grade-a {
  background: #3498db;
  color: white;
}

.badge-grade-ab {
  background: #9b59b6;
  color: white;
}

/* Product Card Pricing (new style) */
.product-card-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}

.product-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.product-retail {
  font-size: 13px;
  color: var(--color-text-muted);
}

.product-retail s {
  color: var(--color-text-muted);
}

/* Show More / Load More Products */
.best-sellers-section .products-grid .product-card:nth-child(n+9) {
  display: none;
}

.best-sellers-section.show-all .products-grid .product-card:nth-child(n+9) {
  display: block;
}

.section-cta {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* btn-block */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Products Grid Header */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.products-count {
  font-size: 14px;
  color: var(--color-text-muted);
}

.products-sort select {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-white);
  cursor: pointer;
}

/* ============================================================
   14. HOW IT WORKS - TIMELINE
   ============================================================ */
.how-it-works {
  background: var(--color-light-gray);
}

.steps-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 80px;
  right: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-primary-light));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 15px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin: 0 auto 20px;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.step-item:hover .step-number {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
  box-shadow: var(--shadow-orange);
}

.step-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.step-item p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ============================================================
   15. PROMISES / VALUES SECTION
   ============================================================ */
.promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.promise-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
  border: 1px solid var(--color-border-light);
}

.promise-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.promise-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: white;
  transition: transform 0.3s ease;
}

.promise-card:hover .promise-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(10deg) scale(1.1);
}

.promise-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.promise-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================================
   16. CATEGORIES SECTION
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.category-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
  border: 1px solid var(--color-border-light);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.category-card:hover::after {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  font-size: 36px;
  color: var(--color-dark);
  margin-bottom: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.category-icon i {
  display: inline-block;
}

.category-card:hover .category-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.category-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.category-card p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.category-card .count {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
}

/* ============================================================
   17. TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials-section {
  background: var(--color-light-gray);
}

.testimonials-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials-slider {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-inner {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
}

.testimonial-inner::before {
  content: '\201C';
  font-size: 80px;
  color: var(--color-primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 30px;
  line-height: 1;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.testimonial-info h5 {
  font-size: 16px;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.testimonial-stars {
  color: var(--color-warning);
  font-size: 16px;
  margin-bottom: 20px;
}

/* Carousel Navigation Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-primary);
  width: 30px;
  border-radius: var(--radius-pill);
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
  font-size: 18px;
  color: var(--color-text);
  z-index: 3;
}

.carousel-arrow:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }

/* ============================================================
   18. COMPARISON TABLE
   ============================================================ */
.comparison-section {
  overflow: hidden;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table thead {
  background: var(--color-dark);
  color: var(--color-white);
}

.comparison-table thead th {
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  white-space: nowrap;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--color-border-light);
  transition: var(--transition-fast);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(230, 126, 34, 0.04);
}

.comparison-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--color-text);
  vertical-align: middle;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--color-dark);
}

.comparison-table .check {
  color: var(--color-success);
  font-size: 20px;
  font-weight: 700;
}

.comparison-table .cross {
  color: var(--color-error);
  font-size: 20px;
  font-weight: 700;
}

.comparison-table .highlight-col {
  background: rgba(230, 126, 34, 0.06);
}

.comparison-table thead .highlight-col {
  background: var(--color-primary);
}

.comparison-check {
  color: var(--color-success);
  font-size: 18px;
  margin-right: 8px;
}

.comparison-cross {
  color: var(--color-error);
  font-size: 18px;
  margin-right: 8px;
}

/* ============================================================
   19. NEWSLETTER SECTION
   ============================================================ */
.newsletter {
  background: var(--color-dark);
  padding: 80px 0;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h3 {
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 15px;
  transition: var(--transition-base);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark-blue);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 15px;
}

.footer-brand-name span {
  color: var(--color-primary);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-heading,
.footer h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links li,
.footer ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-links a:hover,
.footer ul a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--color-primary);
}

.footer-contact-item i {
  color: var(--color-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Footer logo */
.footer .logo,
.footer-brand .logo,
.footer .logo-text,
.footer-brand .logo-text,
.footer-logo .logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 15px;
  letter-spacing: 1.5px;
}

.footer .logo span,
.footer-brand .logo span,
.footer .logo-text span,
.footer .logo-text .logo-accent,
.footer-brand .logo-text span,
.footer-logo .logo-text span,
.footer-logo .logo-text .logo-accent {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
  color: var(--color-primary);
}

.footer-piva {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   21. ABOUT PAGE COMPONENTS
   ============================================================ */

/* Mission Section */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-mission-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mission-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-mission-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Story Section */
.about-story {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-story h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-story p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 50px;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -42px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  border: 4px solid var(--color-light-gray);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 5px;
}

.timeline-text {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.value-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

.value-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.value-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(230, 126, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.value-card h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.value-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Stats Counters */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  text-align: center;
  padding: 35px 20px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border-bottom: 3px solid var(--color-primary);
}

.stat-card .number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.stat-card .label {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   22. CONDITIONS PAGE - Large Condition Cards
   ============================================================ */
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.condition-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 35px 35px 35px 40px;
  box-shadow: var(--shadow-card);
  border-left: 5px solid var(--color-border);
  transition: var(--transition-base);
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.condition-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-card-hover);
}

.condition-card.condition-new {
  border-left-color: var(--color-success);
}

.condition-card.condition-a {
  border-left-color: var(--color-info);
}

.condition-card.condition-b {
  border-left-color: var(--color-primary);
}

.condition-card.condition-c {
  border-left-color: var(--color-warning);
}

.condition-card.condition-salvage {
  border-left-color: var(--color-error);
}

.condition-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.condition-new .condition-card-icon {
  background: rgba(39, 174, 96, 0.1);
  color: var(--color-success);
}

.condition-a .condition-card-icon {
  background: rgba(41, 128, 185, 0.1);
  color: var(--color-info);
}

.condition-b .condition-card-icon {
  background: rgba(230, 126, 34, 0.1);
  color: var(--color-primary);
}

.condition-c .condition-card-icon {
  background: rgba(243, 156, 18, 0.1);
  color: var(--color-warning);
}

.condition-salvage .condition-card-icon {
  background: rgba(231, 76, 60, 0.1);
  color: var(--color-error);
}

.condition-card-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.condition-card-content p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.condition-card-content .condition-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.condition-card-content .condition-details span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   23. FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 2px 10px rgba(230, 126, 34, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
  gap: 15px;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-light-gray);
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
}

.faq-item.active .faq-question h3 {
  color: var(--color-primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-base);
  font-size: 18px;
  color: var(--color-text-light);
  font-weight: 300;
}

.faq-item.active .faq-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 25px 20px;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
}

/* ============================================================
   24. REGISTRATION FORM
   ============================================================ */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--color-error);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--color-text-dark);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-control:hover:not(:focus) {
  border-color: #CCC;
}

/* Validation States */
.form-group.is-valid .form-control {
  border-color: var(--color-success);
}

.form-group.is-valid .form-control:focus {
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-group.is-invalid .form-control {
  border-color: var(--color-error);
}

.form-group.is-invalid .form-control:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-feedback {
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.form-group.is-valid .form-feedback.valid-feedback {
  display: block;
  color: var(--color-success);
}

.form-group.is-invalid .form-feedback.invalid-feedback {
  display: block;
  color: var(--color-error);
}

/* Select */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Textarea */
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Checkbox / Radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.form-check label {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 0;
  cursor: pointer;
}

.form-hint {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 5px;
}

/* ============================================================
   25. CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  padding: 40px;
  background: var(--color-dark);
  border-radius: var(--radius-xl);
  color: var(--color-white);
}

.contact-info h3 {
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: 25px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(230, 126, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  color: var(--color-white);
  font-weight: 500;
}

.contact-hours {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours h4 {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-hours p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 5px;
}

/* ============================================================
   26. CATALOG PAGE - Filter Sidebar + Grid
   ============================================================ */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.filter-group {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  padding: 20px;
  margin-bottom: 20px;
}

.filter-group-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-group-clear {
  font-size: 12px;
  color: var(--color-primary);
  cursor: pointer;
  font-weight: 500;
  background: none;
  border: none;
}

.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.filter-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
}

.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
}

.filter-option .count {
  font-size: 12px;
  color: var(--color-text-muted);
  background: var(--color-light-gray);
  padding: 2px 8px;
  border-radius: 10px;
}

/* Sort Dropdown */
.catalog-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.catalog-topbar-count {
  font-size: 14px;
  color: var(--color-text-muted);
}

.catalog-topbar-count strong {
  color: var(--color-dark);
}

.sort-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-dropdown label {
  font-size: 14px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.sort-dropdown select {
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--color-text-dark);
  background: var(--color-white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}

.sort-dropdown select:focus {
  border-color: var(--color-primary);
}

/* Active Filters */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(230, 126, 34, 0.08);
  border-radius: 20px;
  font-size: 12px;
  color: var(--color-primary-dark);
  font-weight: 500;
}

.active-filter-tag .remove {
  cursor: pointer;
  font-size: 14px;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.active-filter-tag .remove:hover {
  opacity: 1;
}

/* Filter Toggle (mobile) */
.filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  background: var(--color-white);
}

/* ============================================================
   27. PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.product-gallery-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-light-gray);
  margin-bottom: 15px;
  aspect-ratio: 4/3;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.product-gallery-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-fast);
  aspect-ratio: 1;
  background: var(--color-light-gray);
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--color-primary);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info Panel */
.product-info {
  padding: 20px 0;
}

.product-info-brand {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-info-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.product-info-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.product-info-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.product-info-meta span i {
  color: var(--color-primary);
}

.product-info-pricing {
  background: var(--color-light-gray);
  border-radius: var(--radius-xl);
  padding: 25px;
  margin-bottom: 25px;
}

.product-info-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.product-info-price-label {
  font-size: 14px;
  color: var(--color-text-muted);
}

.product-info-price-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
}

.product-info-retail-value {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-info-savings {
  background: rgba(39, 174, 96, 0.1);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-success-dark);
  margin-top: 15px;
}

.product-info-description {
  margin-bottom: 25px;
}

.product-info-description h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.product-info-description p,
.product-info-description li {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.7;
}

.product-info-description ul {
  list-style: disc;
  padding-left: 20px;
}

.product-info-description ul li {
  margin-bottom: 5px;
}

/* Callback Form (in product detail) */
.callback-form {
  background: var(--color-dark);
  border-radius: var(--radius-xl);
  padding: 30px;
  color: var(--color-white);
  margin-top: 25px;
}

.callback-form h4 {
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.callback-form p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.callback-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.callback-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.callback-form .form-control:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.12);
}

.callback-form label {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   28. BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
  border: 1px solid var(--color-border-light);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
  background: var(--color-light-gray);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 22px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.blog-card-tag {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-date {
  font-size: 12px;
  color: var(--color-text-muted);
}

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title a {
  color: inherit;
}

.blog-card-title a:hover {
  color: var(--color-primary);
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

.blog-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-card-link:hover {
  gap: 10px;
}

/* ============================================================
   29. WHO BUYS CARDS
   ============================================================ */
.who-buys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.who-buys-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 35px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  transition: var(--transition-base);
}

.who-buys-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
}

.who-buys-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.15), rgba(230, 126, 34, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.who-buys-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.who-buys-card-desc {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 15px;
}

.who-buys-card-budget {
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 8px 14px;
  background: var(--color-light-gray);
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 15px;
}

.who-buys-card-budget strong {
  color: var(--color-dark);
}

.who-buys-card-quote {
  padding-top: 15px;
  border-top: 1px solid var(--color-border-light);
  font-size: 14px;
  color: var(--color-text-light);
  font-style: italic;
  line-height: 1.7;
}

/* ============================================================
   30. EXPORT PAGE
   ============================================================ */
.export-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.export-split-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.export-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.export-split-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.export-split-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.export-split-content ul {
  list-style: none;
  margin-bottom: 25px;
}

.export-split-content ul li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.export-split-content ul li::before {
  content: '\2713';
  color: var(--color-success);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* Destination Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.destination-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
  border: 1px solid var(--color-border-light);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
}

.destination-card .flag {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.destination-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.destination-card p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================================
   31. MODAL OVERLAY
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 25px 0;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  background: none;
}

.modal-close:hover {
  background: var(--color-light-gray);
  color: var(--color-dark);
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  padding: 0 25px 25px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ============================================================
   32. WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  transition: bottom 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
}

/* Move WhatsApp button up when cookie banner is visible */
.cookie-banner.show ~ .whatsapp-float,
body:has(.cookie-banner.show) .whatsapp-float {
  bottom: 100px;
}

.whatsapp-float a {
  width: 66px;
  height: 66px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  position: relative;
  text-decoration: none;
}

/* When <a> IS the .whatsapp-float (no wrapper div) */
a.whatsapp-float {
  width: 66px;
  height: 66px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

a.whatsapp-float:hover,
.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: var(--color-white);
}

a.whatsapp-float::before,
.whatsapp-float a::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  color: var(--color-dark);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-white);
}

/* ============================================================
   33. BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-base);
  z-index: 998;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

/* ============================================================
   34. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 20px 0;
  z-index: 2001;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  flex: 1;
  min-width: 0;
}

.cookie-banner p a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ============================================================
   35. SPINNER / LOADER
   ============================================================ */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-border-light);
  border-top-color: var(--color-primary);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
}

.spinner-sm {
  width: 24px;
  height: 24px;
  border-width: 3px;
}

.spinner-lg {
  width: 64px;
  height: 64px;
  border-width: 5px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Inline Spinner (inside buttons) */
.btn .spinner {
  width: 18px;
  height: 18px;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  display: inline-block;
  vertical-align: middle;
}

/* ============================================================
   36. SCROLL ANIMATIONS
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered Delay */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Pulse Animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Shimmer (loading placeholder) */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--color-light-gray) 25%, #E8E8E8 50%, var(--color-light-gray) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

/* ============================================================
   37. SUCCESS MESSAGE
   ============================================================ */
.success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.success-message-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: var(--color-success);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.success-message h3 {
  font-size: 24px;
  color: #155724;
  margin-bottom: 10px;
}

.success-message p {
  font-size: 15px;
  color: #155724;
  line-height: 1.6;
}

/* ============================================================
   38. PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 40px;
}

.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.pagination-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pagination-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-ellipsis {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ============================================================
   39. TERMS & LEGAL PAGE STYLES
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border-light);
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: var(--color-text);
}

.legal-content ul,
.legal-content ol {
  padding-left: 25px;
  margin-bottom: 15px;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--color-text);
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--color-primary-dark);
}

.legal-content .last-updated {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  font-style: italic;
}

/* ============================================================
   40. ACCESSIBILITY & FOCUS
   ============================================================ */
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 9999;
  font-weight: 600;
  font-size: 14px;
  transition: top 0.15s ease;
}

.skip-to-content:focus {
  top: 0;
  color: var(--color-white);
}

/* ============================================================
   41. RESPONSIVE - 1024px and below
   ============================================================ */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 42px;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-timeline::before {
    display: none;
  }

  .steps-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .promises-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

  .filter-toggle {
    display: flex;
  }

  .catalog-sidebar {
    display: none;
  }

  .catalog-sidebar.active {
    display: block;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .export-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .export-split-image {
    order: -1;
  }

  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .who-buys-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  section {
    padding: 60px 0;
  }
}

/* ============================================================
   42. RESPONSIVE - 768px and below (Tablet)
   ============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  /* Hide desktop nav on mobile */
  .nav {
    display: none;
  }

  /* Header CTA hidden on mobile - shown in mobile menu instead */
  .header-actions,
  .header-cta {
    display: none;
  }

  /* Mobile menu visible when toggled */
  .mobile-menu.is-open {
    display: block;
  }

  /* Top bar responsive */
  .top-bar-contact,
  .top-bar-left {
    gap: 10px;
    font-size: 11px;
  }

  .top-bar-actions,
  .top-bar-right {
    gap: 10px;
  }

  .top-bar-link span:not(.top-bar-icon) {
    display: none;
  }

  .top-bar-icon {
    font-size: 16px;
  }

  /* Hero - convert to column layout so stats don't overlap buttons */
  .hero {
    min-height: 500px;
    background-attachment: scroll;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0;
  }

  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    padding: 80px 20px 30px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 17px;
  }

  /* Stats bar: remove absolute, make it flow naturally at bottom */
  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 10px 0;
  }

  .hero-stats-inner {
    flex-wrap: wrap;
    gap: 10px 0;
  }

  .hero-stat {
    flex: 0 0 50%;
  }

  .hero-stat-divider {
    display: none;
  }

  /* Page Hero */
  .page-hero h1 {
    font-size: 32px;
  }

  /* Product Grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Section titles */
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }

  /* Steps */
  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Promises */
  .promises-grid {
    grid-template-columns: 1fr;
  }

  /* Categories */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Testimonials arrows */
  .carousel-arrow {
    display: none;
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  /* About */
  .about-mission {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Forms */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 25px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Who Buys */
  .who-buys-grid {
    grid-template-columns: 1fr;
  }

  /* Destinations */
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Condition cards */
  .condition-card {
    flex-direction: column;
  }

  /* Catalog topbar */
  .catalog-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  /* Modal */
  .modal {
    max-width: 100%;
    margin: 15px;
    border-radius: var(--radius-xl);
  }

  /* Cookie banner */
  .cookie-banner {
    padding: 15px 0;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .cookie-banner p {
    min-width: auto;
    font-size: 12px;
    line-height: 1.5;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner-actions .btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  section {
    padding: 50px 0;
  }
}

/* ============================================================
   43. RESPONSIVE - 480px and below (Mobile)
   ============================================================ */
@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }

  .container {
    padding: 0 15px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-content {
    padding: 70px 15px 25px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .hero-buttons,
  .hero-ctas {
    flex-direction: column;
  }

  .hero-buttons .btn,
  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .hero-stats-inner {
    flex-wrap: wrap;
    gap: 0;
    padding: 12px 0;
  }

  .hero-stat {
    flex: 0 0 50%;
    padding: 8px 0;
  }

  .hero-stat-number {
    font-size: 22px;
  }

  .hero-stat-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }

  .hero-stat-divider {
    display: none;
  }

  /* Products 1 col */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .brands-title {
    font-size: 22px;
  }

  /* Buttons full width */
  .btn-lg {
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-card {
    padding: 25px 15px;
  }

  .stat-card .number {
    font-size: 36px;
  }

  /* Categories */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-card {
    padding: 20px 10px;
  }

  /* Promise cards */
  .promise-card {
    padding: 25px 20px;
  }

  /* Product Gallery Thumbs */
  .product-gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }

  /* Destinations */
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Pagination */
  .pagination {
    gap: 3px;
  }

  .pagination-btn {
    min-width: 36px;
    height: 36px;
    font-size: 12px;
  }

  /* WhatsApp & Back to Top */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }

  a.whatsapp-float,
  .whatsapp-float a {
    width: 58px;
    height: 58px;
    font-size: 26px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .back-to-top {
    bottom: 80px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  /* Comparison table mobile */
  .comparison-table {
    font-size: 12px;
    min-width: 0;
  }

  .comparison-table thead th {
    white-space: normal;
    font-size: 11px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
  }

  .comparison-table td {
    font-size: 11px;
  }

  /* Cookie table mobile */
  .cookie-table {
    font-size: 12px;
    min-width: 0;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 8px 6px;
    font-size: 11px;
  }

  /* Top bar hide some items */
  .top-bar-left span:not(:first-child) {
    display: none;
  }

  /* Legal page */
  .legal-content {
    padding: 25px 0;
  }

  /* Section spacing */
  section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for grid children */
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(7) { transition-delay: 0.6s; }
.animate-on-scroll:nth-child(8) { transition-delay: 0.7s; }
.animate-on-scroll:nth-child(9) { transition-delay: 0.8s; }

/* Section headers animate */
.section-header {
  animation: fadeInUp 0.8s ease-out;
}

/* Hero content animation */
.hero-content {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-stats {
  animation: slideDown 0.8s ease-out 0.8s both;
}

/* Product card hover animations */
.product-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

/* Category card hover */
.category-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(230, 126, 34, 0.15);
  border-color: var(--color-primary);
}

.category-card:hover .category-icon {
  transform: scale(1.1);
  color: var(--color-primary);
}

/* Promise card hover */
.promise-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.promise-card:hover .promise-icon {
  animation: pulse 0.6s ease;
}

/* Step card hover */
.step-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.step-card:hover .step-number {
  transform: scale(1.1);
  background: var(--color-primary);
  color: white;
}

/* Testimonial card hover */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* WhatsApp float animation */
.whatsapp-float {
  animation: float 3s ease-in-out infinite;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-content,
  .hero-stats,
  .section-header {
    animation: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .product-card,
  .category-card,
  .promise-card,
  .step-card,
  .testimonial-card {
    transition: none;
  }
}

/* ============================================================
   44. PRINT STYLES
   ============================================================ */
@media print {
  .header,
  .nav,
  .top-bar,
  .mobile-menu,
  .whatsapp-float,
  .back-to-top,
  .newsletter,
  .footer-social,
  .hamburger,
  .modal-overlay,
  .cookie-banner {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .hero::before {
    background: none;
  }

  .hero h1,
  .hero p {
    color: #000;
  }

  section {
    padding: 20px 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .product-card,
  .blog-card,
  .who-buys-card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}

/* ============================================================
   45. REDUCED MOTION & HIGH CONTRAST
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .fade-in-up,
  .scale-in {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-contrast: high) {
  :root {
    --shadow-sm: 0 0 0 1px #000;
    --shadow-md: 0 0 0 2px #000;
    --shadow-card: 0 0 0 1px #000;
    --color-border: #000;
  }

  .btn {
    border-width: 2px;
  }
}

/* ============================================================
   46. URGENCY BANNER
   ============================================================ */
.urgency-banner {
  background: linear-gradient(90deg, #1A1A2E, #16213E);
  overflow: hidden;
  position: relative;
  z-index: 50;
}

.urgency-track {
  display: flex;
  animation: urgencyScroll 28s linear infinite;
  width: max-content;
}

.urgency-track:hover {
  animation-play-state: paused;
}

.urgency-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.urgency-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 32px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.urgency-item i {
  font-size: 0.85rem;
}

.urgency-item .urgency-icon-fire { color: #E74C3C; }
.urgency-item .urgency-icon-truck { color: #27AE60; }
.urgency-item .urgency-icon-clock { color: #F39C12; }
.urgency-item .urgency-icon-shield { color: #3498DB; }
.urgency-item .urgency-icon-star { color: #E67E22; }

.urgency-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Blinking pulse for live indicators */
.urgency-live {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E74C3C;
  margin-right: 4px;
  animation: urgencyPulse 1.5s ease-in-out infinite;
  vertical-align: middle;
}

.urgency-date {
  color: #E67E22;
  font-weight: 700;
}

.urgency-highlight {
  color: #E67E22;
  font-weight: 700;
}

@keyframes urgencyScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

@media (prefers-reduced-motion: reduce) {
  .urgency-track { animation: none; }
  .urgency-live { animation: none; }
}

/* ============================================================
   End of StockItalia Stylesheet
   ============================================================ */
