/* ===== VARIABLES ===== */
:root {
  --blue: #00C2E0;
  --blue-light: #37E0CE;
  --blue-dark: #00A0C0;
  --orange: #FF6B35;
  --orange-light: #FF8C5A;
  --cyan: #00D4E6;
  --green: #2EE89A;
  --dark: #080C18;
  --dark-2: #0F1525;
  --dark-3: #171E35;
  --dark-4: #1E2745;
  --text: #F1F3F8;
  --text-muted: #8892A4;
  --border: rgba(255, 255, 255, 0.07);
  --border-blue: rgba(0, 194, 224, 0.3);
  --gradient-blue: linear-gradient(135deg, #00C6E8 0%, #2EE89A 100%);
  --gradient-brand: linear-gradient(135deg, #00C6E8 0%, #2EE89A 100%);
  --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FF9D00 100%);
  --gradient-dark: linear-gradient(135deg, #0F1525 0%, #171E35 100%);
  --shadow-blue: 0 0 40px rgba(0, 194, 224, 0.25);
  --shadow-orange: 0 0 40px rgba(255, 107, 53, 0.25);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --notice-height: 44px;
  --header-height: 76px;
  --scroll-offset: calc(var(--notice-height) + var(--header-height));
  --vinted-teal: #09B1BA;
  --vinted-teal-light: #1ECAD4;
  --vinted-teal-dark: #078A92;
  --gradient-vinted: linear-gradient(135deg, #09B1BA 0%, #2EE89A 55%, #00C6E8 100%);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--scroll-offset);
}
[id] { scroll-margin-top: calc(var(--scroll-offset) + 16px); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--text-muted); }

.gradient-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-orange {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { margin-top: 12px; font-size: 1.05rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-block;
  background: rgba(0, 194, 224, 0.15);
  color: var(--blue-light);
  border: 1px solid rgba(0, 194, 224, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-blue);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 194, 224, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 194, 224, 0.55);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-blue);
}
.btn-secondary:hover {
  background: rgba(0, 194, 224, 0.1);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--gradient-orange);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.55);
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-green { background: rgba(0, 214, 143, 0.15); color: #2EE89A; border: 1px solid rgba(0, 214, 143, 0.3); }
.badge-blue { background: rgba(0, 194, 224, 0.15); color: var(--blue-light); border: 1px solid rgba(0, 194, 224, 0.3); }
.badge-orange { background: rgba(255, 107, 53, 0.15); color: var(--orange-light); border: 1px solid rgba(255, 107, 53, 0.3); }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: var(--notice-height);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
header.scrolled {
  background: rgba(8, 12, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.logo-e {
  background: var(--gradient-blue);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(0, 194, 224, 0.4);
}
.logo-deal { color: var(--text); letter-spacing: 0.08em; }
.logo-deal span { color: var(--orange); }

nav { display: flex; align-items: center; gap: 32px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-admin-btn:hover,
.nav-admin-btn:focus-visible {
  color: var(--text);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.05);
}
.nav-admin-btn.is-connected {
  color: var(--blue-light);
  border-color: rgba(0, 194, 224, 0.35);
}
.nav-admin-btn.is-connected:hover {
  background: rgba(0, 194, 224, 0.08);
}
.nav-admin-btn i { font-size: 0.75rem; opacity: 0.85; }
.mobile-menu .nav-admin-btn--mobile { display: none; font-size: 1.1rem; padding: 10px 20px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 12, 24, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1002;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a:focus-visible { color: var(--text); }
.mobile-menu a.active { color: var(--blue-light); }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - var(--scroll-offset));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 48px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(0, 194, 224, 0.18) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
              var(--dark);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: rgba(0, 194, 224, 0.15);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: rgba(255, 107, 53, 0.1);
  bottom: -50px; left: -50px;
  animation-delay: -4s;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 600px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 194, 224, 0.12);
  border: 1px solid rgba(0, 194, 224, 0.25);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title { margin-bottom: 20px; }
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hero-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-phone-stack {
  position: relative;
  width: 320px;
  height: 400px;
}
.hero-card {
  position: absolute;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card-main {
  width: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  background: var(--dark-3);
}
.hero-card-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}
.hero-card-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.hero-card-price { font-size: 1.4rem; font-weight: 800; }
.hero-card-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.hero-card-sm {
  width: 150px;
  padding: 16px;
}
.hero-card-sm-1 {
  top: 20px; left: 0;
  transform: rotate(-8deg);
  z-index: 2;
  background: linear-gradient(135deg, rgba(0,194,224,0.2), rgba(0,194,224,0.05));
  border-color: rgba(0, 194, 224, 0.3);
}
.hero-card-sm-2 {
  bottom: 20px; right: 0;
  transform: rotate(8deg);
  z-index: 2;
  background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,107,53,0.05));
  border-color: rgba(255, 107, 53, 0.3);
}
.hero-card-sm-icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.hero-card-sm-label { font-size: 0.78rem; color: var(--text-muted); }
.hero-card-sm-value { font-size: 0.95rem; font-weight: 700; }

/* ===== SERVICES BAND ===== */
.services-band {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: var(--transition);
}
.service-card:nth-child(1)::before { background: var(--gradient-blue); }
.service-card:nth-child(2)::before { background: var(--gradient-orange); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, #2EE89A, #00A3FF); }
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: var(--shadow-card);
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.service-icon-blue { background: rgba(0, 194, 224, 0.15); }
.service-icon-orange { background: rgba(255, 107, 53, 0.15); }
.service-icon-green { background: rgba(0, 214, 143, 0.15); }
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; }
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.service-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(0, 214, 143, 0.15);
  color: #2EE89A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== FEATURED PRODUCTS ===== */
.products-section { background: var(--dark); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 194, 224, 0.3);
  box-shadow: var(--shadow-blue);
}
.product-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.product-img-blue { background: linear-gradient(135deg, rgba(0,194,224,0.15), rgba(0,198,255,0.08)); }
.product-img-purple { background: linear-gradient(135deg, rgba(120,80,255,0.15), rgba(200,100,255,0.08)); }
.product-img-orange { background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,157,0,0.08)); }
.product-img-green { background: linear-gradient(135deg, rgba(0,214,143,0.15), rgba(0,163,255,0.08)); }
.product-img-red { background: linear-gradient(135deg, rgba(255,60,60,0.15), rgba(255,120,0,0.08)); }
.product-img-teal { background: linear-gradient(135deg, rgba(0,200,200,0.15), rgba(0,194,224,0.08)); }
.product-badge-top {
  position: absolute;
  top: 12px; left: 12px;
}
.product-fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}
.product-fav:hover { background: rgba(255,60,60,0.2); color: #ff6b6b; }
.product-body { padding: 16px; }
.product-category { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.product-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; color: var(--text); line-height: 1.3; }
.product-condition { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.25rem; font-weight: 800; color: var(--text); }
.product-price-old { font-size: 0.78rem; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }
.product-btn {
  width: 36px; height: 36px;
  background: var(--gradient-blue);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 194, 224, 0.3);
}
.product-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0, 194, 224, 0.5); }

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { padding: 20px; }
.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.88rem; color: var(--text-muted); }
.stat-icon { font-size: 1.5rem; margin-bottom: 12px; opacity: 0.7; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: rgba(0, 194, 224, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 224, 0.2);
  box-shadow: var(--shadow-card);
}
.review-stars { color: #FFB800; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.92rem; }
.review-date { font-size: 0.78rem; color: var(--text-muted); }
.review-source { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { margin-bottom: 36px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CATALOGUE PAGE ===== */
.catalogue-hero {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 60px;
  text-align: center;
}
.catalogue-hero h1 { margin-bottom: 12px; }
.catalogue-hero p { font-size: 1.05rem; margin-bottom: 32px; }
.search-bar {
  display: flex;
  align-items: center;
  max-width: 520px;
  margin: 0 auto;
  background: var(--dark-3);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  transition: var(--transition);
}
.search-bar:focus-within {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(0, 194, 224, 0.12);
}
.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  padding: 8px 12px 8px 0;
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar button {
  background: var(--gradient-blue);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-bar button:hover { transform: scale(1.03); }

.catalogue-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 60px 0;
}
.filter-sidebar {
  position: sticky;
  top: calc(var(--scroll-offset) + 12px);
  height: fit-content;
}
.filter-group {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.filter-group h4 {
  margin-bottom: 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  padding: 6px 0;
}
.filter-option:hover { color: var(--text); }
.filter-option input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
  border-radius: 4px;
}
.filter-option input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}
.filter-count {
  margin-left: auto;
  font-size: 0.75rem;
  background: var(--dark-4);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 20px;
}

.catalogue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.catalogue-count { font-size: 0.9rem; color: var(--text-muted); }
.catalogue-count strong { color: var(--text); }
.sort-select {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}
.sort-select:focus { border-color: var(--blue-light); }

.category-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.cat-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cat-tab:hover { border-color: var(--blue-light); color: var(--text); }
.cat-tab.active {
  background: rgba(0, 194, 224, 0.15);
  border-color: var(--blue-light);
  color: var(--blue-light);
}

.products-grid-catalogue {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 48px 0 80px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,224,0.12) 0%, transparent 70%);
}
.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero h1 { margin-bottom: 16px; }
.about-hero p { font-size: 1.05rem; line-height: 1.8; }
.about-badge-wrap { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-info-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.about-info-card:hover { border-color: rgba(0,194,224,0.3); }
.about-info-icon { font-size: 1.8rem; flex-shrink: 0; }
.about-info-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.about-info-value { font-weight: 600; font-size: 0.95rem; }

.timeline-section { padding: 90px 0; }
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--orange), transparent);
}
.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.timeline-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.dot-blue { background: rgba(0, 194, 224, 0.2); border: 2px solid var(--blue); }
.dot-orange { background: rgba(255, 107, 53, 0.2); border: 2px solid var(--orange); }
.dot-green { background: rgba(0, 214, 143, 0.2); border: 2px solid var(--green); }
.timeline-content {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  flex: 1;
  transition: var(--transition);
}
.timeline-content:hover { border-color: rgba(255,255,255,0.12); transform: translateX(4px); }
.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  margin-bottom: 8px;
}
.timeline-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.timeline-text { font-size: 0.9rem; line-height: 1.7; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(0,194,224,0.25); box-shadow: var(--shadow-card); }
.value-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 0.9rem; line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  padding: 48px 0 60px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.contact-hero h1 { margin-bottom: 12px; }
.contact-hero p { font-size: 1.05rem; max-width: 500px; margin: 0 auto; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 70px 0;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-subtitle { font-size: 0.95rem; margin-bottom: 16px; }
.contact-info-item {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.contact-info-item:hover { border-color: rgba(0,194,224,0.25); }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-blue { background: rgba(0, 194, 224, 0.15); }
.ci-orange { background: rgba(255, 107, 53, 0.15); }
.ci-green { background: rgba(0, 214, 143, 0.15); }
.contact-info-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-info-value { font-weight: 600; font-size: 0.95rem; }
.contact-info-value a { color: var(--text); transition: var(--transition); }
.contact-info-value a:hover { color: var(--blue-light); }

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; }
.hours-day { color: var(--text-muted); }
.hours-time { font-weight: 600; color: var(--text); }
.hours-closed { color: var(--orange); }

.contact-form-wrap {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form-wrap h3 { margin-bottom: 8px; font-size: 1.3rem; }
.contact-form-wrap p { font-size: 0.9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.form-label span { color: var(--orange); }
.form-control {
  width: 100%;
  background: var(--dark-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(0, 194, 224, 0.12);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-select {
  width: 100%;
  background: var(--dark-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.form-select:focus { border-color: var(--blue-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: rgba(0, 214, 143, 0.1);
  border: 1px solid rgba(0, 214, 143, 0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}
.form-success.show { display: block; animation: fadeInUp 0.4s ease; }
.form-error-msg {
  font-size: 0.78rem;
  color: #FF5566;
  margin-top: 6px;
  display: none;
}
.form-control.error { border-color: rgba(255,85,102,0.5); }
.form-control.error + .form-error-msg { display: block; }

.map-section { padding: 0 0 80px; }
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(180deg) saturate(0.6) brightness(0.85);
}

.faq-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(0,194,224,0.25); }
.faq-item.open { border-color: rgba(0,194,224,0.35); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
}
.faq-arrow {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--blue-light); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.88rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 300px; }
.footer-logo { margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--text-muted);
}
.social-link:hover { background: rgba(0,194,224,0.15); border-color: var(--blue-light); color: var(--blue-light); }

.footer-col h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--text); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copyright { font-size: 0.82rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: var(--text-muted); transition: var(--transition); }
.footer-legal a:hover { color: var(--text); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ===== DIVIDER ===== */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ===== NOTICE BAND ===== */
.notice-band {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, rgba(0,194,224,0.95), rgba(0,198,255,0.95));
  padding: 10px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  line-height: 1.4;
}
.notice-band a { text-decoration: underline; opacity: 0.95; color: white; }
.notice-band a:hover { opacity: 1; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 2000;
  background: var(--gradient-blue);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: calc(var(--notice-height) + 8px);
  outline: 2px solid white;
  outline-offset: 2px;
}

/* ===== FOCUS & ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}
.btn:focus-visible,
.hamburger:focus-visible,
.cat-tabx:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 48px 0 90px; }
.legal-page h1 { margin-bottom: 12px; }
.legal-page .legal-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 36px; }
.legal-page h2 { font-size: 1.2rem; margin: 32px 0 12px; color: var(--text); }
.legal-page p, .legal-page li { font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-page a { color: var(--blue-light); text-decoration: underline; }

/* ===== NO RESULTS ===== */
.no-results {
  text-align: center;
  padding: 60px 20px;
  display: none;
  grid-column: 1 / -1;
}
.no-results.show { display: block; }
.no-results-icon { font-size: 3rem; margin-bottom: 16px; }
.no-results h3 { margin-bottom: 8px; }

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .about-hero-content { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --notice-height: 52px; --header-height: 68px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .nav-links, .nav-actions .btn, #navAdminBtn { display: none; }
  .mobile-menu .nav-admin-btn--mobile { display: inline-flex; }
  .hamburger { display: flex; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
  .notice-band { font-size: 0.78rem; padding: 8px 12px; }
  .aor-teaser-inner { padding: 24px 20px; }
  .aor-teaser-visual { overflow: hidden; width: 100%; max-width: 100%; }
  .vinted-showcase-inner { padding: 28px 20px; }
  .greviews-widget { padding: 28px 20px; }
  .cta-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== LOGO IMAGE (real logo) ===== */
.logo-img { height: 46px; width: auto; display: block; }
.header-inner .logo-img { height: 44px; }
.footer-logo .logo-img { height: 56px; margin-bottom: 4px; }
@media (max-width: 600px){ .logo-img { height: 38px; } }

/* ===== TAGLINE under hero ===== */
.brand-tagline {
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.82rem; background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== NOUVEAUX ARRIVAGES — VINTED ===== */
.arrivals-section { padding: 90px 0; }
.arrivals-foot { text-align: center; margin-top: 28px; font-size: 0.95rem; }
.arrivals-foot a { color: var(--vinted-teal-light); font-weight: 600; }
.arrivals-foot a:hover { color: var(--green); }

.gradient-text-vinted {
  background: var(--gradient-vinted);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vinted-showcase {
  position: relative;
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.vinted-showcase-glow {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(9, 177, 186, 0.22) 0%, transparent 68%);
  pointer-events: none;
}
.vinted-showcase-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 48px 44px;
}
.vinted-showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-color: rgba(9, 177, 186, 0.35);
  color: var(--vinted-teal-light);
}
.vinted-showcase-content h2 {
  margin: 14px 0 16px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
}
.vinted-showcase-lead {
  max-width: 520px;
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 22px;
}
.vinted-showcase-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.vinted-showcase-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}
.vinted-showcase-perks i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
  background: rgba(9, 177, 186, 0.15);
  color: var(--vinted-teal-light);
  border: 1px solid rgba(9, 177, 186, 0.25);
}
.vinted-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.vinted-showcase-note {
  margin-top: 18px;
  font-size: 0.88rem;
}
.vinted-showcase-note a {
  color: var(--blue-light);
  font-weight: 600;
}
.vinted-showcase-note a:hover { color: var(--green); }

.btn-vinted {
  background: var(--gradient-vinted);
  color: #062b18;
  font-weight: 700;
  border: none;
  box-shadow: 0 8px 28px rgba(9, 177, 186, 0.35);
}
.btn-vinted:hover {
  color: #041a10;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(9, 177, 186, 0.45);
}

.vinted-showcase-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 280px;
  justify-content: center;
}
.vinted-mock-stack {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 240px;
}
.vinted-mock-card {
  position: absolute;
  width: 168px;
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  background: var(--dark-3);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: transform 0.35s ease;
}
.vinted-mock-card--back {
  top: 8px;
  left: 0;
  transform: rotate(-8deg);
  opacity: 0.55;
}
.vinted-mock-card--mid {
  top: 36px;
  right: 8px;
  transform: rotate(6deg);
  opacity: 0.75;
}
.vinted-mock-card--front {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 188px;
  border-color: rgba(9, 177, 186, 0.4);
  background: linear-gradient(145deg, var(--dark-3) 0%, rgba(9, 177, 186, 0.12) 100%);
  z-index: 2;
}
.vinted-showcase:hover .vinted-mock-card--front {
  transform: translateX(-50%) rotate(-2deg) translateY(-4px);
}
.vinted-mock-icon { font-size: 1.8rem; line-height: 1; }
.vinted-mock-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.vinted-mock-hint {
  font-size: 0.78rem;
  color: var(--vinted-teal-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vinted-mock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--gradient-vinted);
  color: #062b18;
}
.vinted-showcase-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(9, 177, 186, 0.12);
  border: 1px solid rgba(9, 177, 186, 0.28);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--vinted-teal-light);
}
.vinted-showcase-brand i { font-size: 1rem; }

.vinted-showcase--compact .vinted-showcase-inner {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 36px 28px;
}
.vinted-showcase--compact .vinted-showcase-lead,
.vinted-showcase--compact .vinted-showcase-perks { margin-left: auto; margin-right: auto; }
.vinted-showcase--compact .vinted-showcase-perks { align-items: center; }
.vinted-showcase--compact .vinted-showcase-actions { justify-content: center; }
.vinted-showcase--compact .vinted-showcase-visual { display: none; }

@media (max-width: 900px) {
  .vinted-showcase-inner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
  }
  .vinted-showcase-visual { order: -1; min-height: 200px; }
  .vinted-mock-stack { max-width: 260px; height: 200px; }
}
@media (max-width: 600px) {
  .vinted-showcase-actions { flex-direction: column; width: 100%; }
  .vinted-showcase-actions .btn { width: 100%; justify-content: center; }
  .vinted-showcase-inner { padding: 28px 20px; }
}

.arrivals-cta-card,
.insta-cta-card,
.vinted-cta-card {
  margin-top:32px; background:var(--gradient-dark); border:1px solid var(--border);
  border-radius:var(--radius-xl); padding:40px 28px; text-align:center;
}

/* ===== GOOGLE REVIEWS WIDGET ===== */
.greviews-widget {
  max-width:920px; margin:0 auto;
  background:var(--gradient-dark); border:1px solid var(--border);
  border-radius:var(--radius-xl); padding:36px 32px;
  display:flex; flex-direction:column; gap:28px;
}
.greviews-summary {
  display:grid; grid-template-columns:1fr auto; gap:20px 28px; align-items:center;
  text-align:left;
}
.greviews-summary-brand { display:flex; align-items:center; gap:14px; grid-column:1 / -1; }
.greviews-summary-icon {
  width:52px; height:52px; border-radius:14px; background:#fff;
  color:#4285F4; display:flex; align-items:center; justify-content:center; font-size:1.5rem;
  box-shadow:0 4px 18px rgba(0,0,0,0.25);
}
.greviews-summary-brand strong { display:block; font-size:1.1rem; }
.greviews-summary-sub { font-size:0.82rem; color:var(--text-muted); font-weight:500; }
.greviews-summary-score { text-align:center; padding:16px 20px; background:var(--dark-2); border-radius:var(--radius-lg); border:1px solid var(--border); }
.greviews-stars { display:flex; justify-content:center; gap:2px; margin-bottom:6px; }
.greviews-star { font-size:1.35rem; color:rgba(255,200,61,0.28); line-height:1; }
.greviews-star.is-full { color:#FFC83D; }
.greviews-star.is-half { color:#FFC83D; opacity:0.55; }
.greviews-score-line { margin:0; line-height:1.1; }
.greviews-score-num { font-size:2.4rem; font-weight:800; }
.greviews-score-max { font-size:1rem; color:var(--text-muted); font-weight:600; }
.greviews-count { margin:6px 0 0; font-size:0.88rem; color:var(--text-muted); font-weight:600; }
.greviews-summary-text { margin:0; grid-column:1 / -1; font-size:0.98rem; line-height:1.7; color:var(--text-muted); }
.greviews-embed-slot { width:100%; }
.greviews-actions { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.greviews { text-align:center; max-width:680px; margin:0 auto; }
.greviews-stars--legacy { font-size:2rem; color:#FFC83D; letter-spacing:4px; margin:10px 0; }
.greviews-badge {
  display:inline-flex; align-items:center; gap:10px; background:var(--dark-3);
  border:1px solid var(--border); border-radius:50px; padding:12px 22px; margin-top:8px; font-weight:600;
}
@media (max-width:720px){
  .greviews-widget { padding:28px 20px; }
  .greviews-summary { grid-template-columns:1fr; }
  .greviews-summary-score { width:100%; }
  .greviews-actions .btn { width:100%; justify-content:center; }
}

/* ===== ESTIMATION SECTION ===== */
#estimation.cta-section { text-align: left; }
.estimate-wrap {
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:48px; align-items:center;
  background:var(--gradient-dark); border:1px solid var(--border);
  border-radius:var(--radius-xl); padding:48px;
  width: 100%;
  max-width: 100%;
}
.estimate-wrap > * { min-width: 0; }
.estimate-intro h2 { font-size:2.2rem; margin:10px 0 14px; }
.estimate-points { list-style:none; margin-top:22px; display:flex; flex-direction:column; gap:12px; }
.estimate-points li { display:flex; align-items:center; gap:12px; font-weight:500; }
.estimate-points i { color:#062b18; background:var(--green); width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.78rem; flex-shrink:0; }
.estimate-card {
  background:var(--dark-2); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:32px; width:100%; max-width:100%; box-sizing:border-box;
}
.estimate-form-row { gap:12px; }
.estimate-or-divider { display:flex; align-items:center; gap:12px; margin:16px 0; color:var(--text-muted); font-size:0.82rem; }
.estimate-or-divider::before, .estimate-or-divider::after { content:''; flex:1; height:1px; background:var(--border); }
.estimate-form-success { color:var(--green); font-size:0.88rem; margin-bottom:12px; font-weight:600; }
@media (max-width:860px){
  .estimate-wrap { grid-template-columns:1fr; gap:28px; padding:24px 20px; }
  .estimate-intro h2 { font-size:1.8rem; }
  .estimate-form-row { grid-template-columns:1fr; }
  .estimate-card { padding:20px 16px; }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.wa-float {
  position:fixed; bottom:24px; right:24px; z-index:999;
  width:60px; height:60px; border-radius:50%;
  background:#25D366; color:#fff; font-size:1.9rem;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 26px rgba(37,211,102,0.5);
  transition:transform .25s ease, box-shadow .25s ease;
  animation:waPulse 2.4s infinite;
}
.wa-float:hover { transform:scale(1.08); color:#fff; box-shadow:0 10px 32px rgba(37,211,102,0.65); }
@keyframes waPulse { 0%{box-shadow:0 8px 26px rgba(37,211,102,0.5);} 50%{box-shadow:0 8px 26px rgba(37,211,102,0.5),0 0 0 12px rgba(37,211,102,0);} 100%{box-shadow:0 8px 26px rgba(37,211,102,0.5);} }
@media (max-width:600px){ .wa-float { width:54px; height:54px; font-size:1.7rem; bottom:18px; right:18px; } }

/* ===== CATALOGUE (Google Sheet) ===== */
.catalogue-section { padding-top:44px; }
.cat-controls { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:18px; }
.cat-controls-right { display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.cat-toggle { display:flex; align-items:center; gap:8px; font-size:0.85rem; color:var(--text-muted); cursor:pointer; white-space:nowrap; user-select:none; }
.cat-toggle input { accent-color:var(--blue); width:16px; height:16px; cursor:pointer; }
.cat-card-clickable { cursor:pointer; }
.cat-card-clickable:focus-visible { outline:2px solid var(--blue-light); outline-offset:3px; }
.cat-search { position:relative; flex:1; min-width:240px; max-width:430px; }
.cat-search i { position:absolute; left:18px; top:50%; transform:translateY(-50%); color:var(--text-muted); }
.cat-search input { width:100%; padding:13px 18px 13px 46px; background:var(--dark-2); border:1px solid var(--border); border-radius:50px; color:var(--text); font-family:inherit; font-size:0.95rem; }
.cat-search input:focus { outline:none; border-color:var(--blue-light); }
.cat-filters-toggle {
  display:inline-flex; align-items:center; gap:8px; padding:10px 16px;
  border-radius:50px; border:1px solid var(--border); background:var(--dark-2);
  color:var(--text-muted); font-family:inherit; font-weight:600; font-size:0.85rem;
  cursor:pointer; transition:var(--transition); white-space:nowrap;
}
.cat-filters-toggle:hover, .cat-filters-toggle.is-open { color:var(--text); border-color:var(--blue-light); }
.cat-filters-toggle.is-open { background:rgba(0,194,224,0.08); }
.cat-filters-badge {
  display:inline-flex; align-items:center; justify-content:center; min-width:20px; height:20px;
  padding:0 6px; border-radius:50px; background:var(--orange); color:#fff;
  font-size:0.72rem; font-weight:700;
}
.cat-filters-panel {
  margin-bottom:20px; padding:20px; background:var(--dark-2);
  border:1px solid var(--border); border-radius:var(--radius-lg);
  animation:catFiltersIn 0.25s ease;
}
@keyframes catFiltersIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.cat-filters-grid {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr)); gap:20px;
}
.cat-filter-group { display:flex; flex-direction:column; gap:10px; min-width:0; }
.cat-filter-group--price { grid-column:span 1; }
.cat-filter-label {
  font-size:0.78rem; text-transform:uppercase; letter-spacing:0.08em;
  color:var(--text-muted); font-weight:700;
}
.cat-filter-select, .cat-filter-input {
  width:100%; padding:10px 14px; background:var(--dark-3); border:1px solid var(--border);
  border-radius:var(--radius); color:var(--text); font-family:inherit; font-size:0.88rem;
}
.cat-filter-select:focus, .cat-filter-input:focus { outline:none; border-color:var(--blue-light); }
.cat-filter-chips { display:flex; flex-wrap:wrap; gap:8px; }
.cat-filter-chip {
  padding:7px 14px; border-radius:50px; border:1px solid var(--border); background:var(--dark-3);
  color:var(--text-muted); font-family:inherit; font-size:0.8rem; font-weight:600;
  cursor:pointer; transition:var(--transition); text-align:left; line-height:1.3;
}
.cat-filter-chip:hover { color:var(--text); border-color:var(--blue-light); }
.cat-filter-chip.is-active {
  background:var(--gradient-brand); color:#04261a; border-color:transparent;
}
.cat-filter-empty { font-size:0.82rem; color:var(--text-muted); font-style:italic; }
.cat-price-range { display:flex; align-items:flex-end; gap:10px; flex-wrap:wrap; }
.cat-price-field { position:relative; flex:1; min-width:90px; }
.cat-price-field label {
  display:block; font-size:0.72rem; color:var(--text-muted); margin-bottom:4px; font-weight:600;
}
.cat-price-field .cat-filter-input { padding-right:28px; }
.cat-price-suffix {
  position:absolute; right:12px; bottom:11px; font-size:0.82rem; color:var(--text-muted); pointer-events:none;
}
.cat-price-sep { color:var(--text-muted); padding-bottom:10px; font-size:0.9rem; }
.cat-filters-footer {
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  flex-wrap:wrap; margin-top:18px; padding-top:16px; border-top:1px solid var(--border);
}
.cat-filters-hint { margin:0; font-size:0.82rem; color:var(--text-muted); }
.cat-count { color:var(--text-muted); font-weight:600; font-size:0.9rem; white-space:nowrap; }
.cat-tabs { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:34px; }
@media (max-width:768px){
  .cat-controls { flex-direction:column; align-items:stretch; }
  .cat-controls-right { width:100%; justify-content:space-between; }
  .cat-search { max-width:none; }
  .cat-filters-grid { grid-template-columns:1fr; }
  .cat-filters-footer { flex-direction:column; align-items:flex-start; }
  .cat-tabs { gap:8px; margin-bottom:24px; }
  .cat-tabx { padding:8px 14px; font-size:0.82rem; }
}
.cat-tabx { padding:9px 18px; border-radius:50px; border:1px solid var(--border); background:var(--dark-2); color:var(--text-muted); font-family:inherit; font-weight:600; font-size:0.88rem; cursor:pointer; transition:var(--transition); }
.cat-tabx:hover { color:var(--text); border-color:var(--blue-light); }
.cat-tabx.active { background:var(--gradient-brand); color:#04261a; border-color:transparent; }
.cat-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:24px; }
.cat-card { position:relative; background:var(--gradient-dark); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:var(--transition); display:flex; flex-direction:column; }
.cat-card:hover { transform:translateY(-5px); border-color:var(--blue-light); box-shadow:var(--shadow-blue); }
.cat-card.is-out { opacity:0.7; }
.cat-photo { aspect-ratio:1/1; background:var(--dark-3); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.cat-photo img { width:100%; height:100%; object-fit:cover; }
.cat-photo-ph { font-size:4rem; opacity:0.85; }
.cat-badge { position:absolute; top:12px; left:12px; padding:5px 12px; border-radius:50px; font-size:0.74rem; font-weight:700; }
.cat-badge.is-dispo { background:rgba(46,232,154,0.18); color:#2EE89A; }
.cat-badge.is-reserve { background:rgba(255,176,32,0.2); color:#FFB020; }
.cat-badge.is-vendu { background:rgba(255,90,90,0.2); color:#FF6B6B; }
.cat-body { padding:18px; display:flex; flex-direction:column; flex:1; }
.cat-cat { font-size:0.72rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--blue-light); font-weight:700; margin-bottom:5px; }
.cat-name { font-size:1.02rem; font-weight:700; margin-bottom:6px; line-height:1.3; }
.cat-meta { font-size:0.85rem; color:var(--text-muted); margin-bottom:16px; }
.cat-foot { margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.cat-price { font-size:1.3rem; font-weight:800; }
.cat-reserve { display:inline-flex; align-items:center; gap:7px; background:#25D366; color:#fff; padding:9px 14px; border-radius:50px; font-weight:700; font-size:0.85rem; white-space:nowrap; transition:var(--transition); }
.cat-reserve:hover { color:#fff; transform:translateY(-2px); box-shadow:0 6px 16px rgba(37,211,102,0.4); }
.cat-reserve.disabled { background:var(--dark-3); color:var(--text-muted); pointer-events:none; }
.cat-reserve-btn { border:none; cursor:pointer; font-family:inherit; }
.cat-foot-actions { display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end; }
.cat-reserve-wa { background:var(--dark-3); font-size:0.78rem; padding:9px 12px; }
.cat-reserve-wa:hover { background:#128C7E; }
.cat-desc { font-size:0.82rem; color:var(--text-muted); margin-bottom:12px; line-height:1.45; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.cat-state { text-align:center; padding:60px 20px; color:var(--text-muted); }
.cat-spinner { width:42px; height:42px; border:3px solid var(--border); border-top-color:var(--blue-light); border-radius:50%; margin:0 auto 18px; animation:catspin 0.8s linear infinite; }
@keyframes catspin { to { transform:rotate(360deg); } }
/* Skeleton loading */
.skeleton-card { pointer-events:none; }
.skeleton-card:hover { transform:none; box-shadow:none; border-color:var(--border); }
.skeleton { background:linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%); background-size:200% 100%; animation:skeleton-shimmer 1.2s ease-in-out infinite; border-radius:var(--radius); }
.skeleton-photo { aspect-ratio:1/1; width:100%; border-radius:0; }
.skeleton-line { height:14px; margin-bottom:10px; }
.skeleton-line-xs { width:35%; height:10px; }
.skeleton-line-sm { width:45%; margin-bottom:0; }
.skeleton-line-md { width:70%; }
.skeleton-line-lg { width:90%; height:18px; }
@keyframes skeleton-shimmer { 0% { background-position:200% 0; } 100% { background-position:-200% 0; } }
.cat-state.is-skeleton { padding:0 0 20px; }
/* Google reviews embed (widget tiers) */
.greviews-embed { width:100%; max-width:760px; margin:0 auto; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); background:var(--dark-2); }
.greviews-embed iframe { width:100%; height:420px; border:0; display:block; }
@media (max-width:640px){ .greviews-embed iframe { height:300px; } }
/* Aperçu lieu compact (~100 m) */
.greviews-location {
  display:flex; align-items:stretch; gap:18px; width:100%; max-width:760px; margin:0 auto;
  padding:14px; background:var(--dark-2); border:1px solid var(--border); border-radius:var(--radius-lg);
}
.greviews-location-map {
  position:relative; flex:0 0 220px; max-width:42%; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--border); background:var(--dark-3); display:block; transition:var(--transition);
}
.greviews-location-map:hover { border-color:var(--blue-light); box-shadow:var(--shadow-blue); transform:translateY(-1px); }
.greviews-location-map img { width:100%; height:100%; min-height:168px; max-height:200px; object-fit:cover; display:block; }
.greviews-location-map-badge {
  position:absolute; left:50%; top:50%; transform:translate(-50%,-58%);
  width:34px; height:34px; border-radius:50%; background:var(--orange);
  color:#1a1208; display:flex; align-items:center; justify-content:center; font-size:0.95rem;
  box-shadow:0 4px 14px rgba(0,0,0,0.35); pointer-events:none;
}
.greviews-location-body { flex:1; min-width:0; display:flex; flex-direction:column; justify-content:center; gap:8px; text-align:left; }
.greviews-location-caption { margin:0; font-size:1.02rem; font-weight:700; color:var(--text); }
.greviews-location-address { margin:0; font-size:0.9rem; color:var(--text-muted); font-weight:500; line-height:1.45; }
.greviews-location-address i { color:var(--blue-light); margin-right:6px; }
.greviews-location-hint { margin:0; font-size:0.82rem; color:var(--text-muted); line-height:1.5; }
.greviews-location-link {
  display:inline-flex; align-items:center; gap:8px; margin-top:4px; font-size:0.88rem; font-weight:700;
  color:var(--blue-light); transition:var(--transition);
}
.greviews-location-link:hover { color:var(--text); }
.greviews-location-attrib { margin-top:2px; font-size:0.68rem; color:var(--text-muted); opacity:0.75; }
.greviews-location-fallback {
  width:100%; min-height:168px; max-height:200px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px; padding:16px; background:linear-gradient(145deg, var(--dark-3), var(--dark-4)); color:var(--text-muted);
  font-size:0.88rem; font-weight:600; text-align:center;
}
.greviews-location-fallback i { font-size:1.8rem; color:var(--blue-light); }
@media (max-width:720px){
  .greviews-location { flex-direction:column; gap:14px; padding:12px; }
  .greviews-location-map { flex:0 0 auto; max-width:100%; width:100%; }
  .greviews-location-map img { min-height:150px; max-height:180px; }
}
/* Alertes stock */
.stock-alert-box { margin-top:16px; padding:16px; background:var(--dark-3); border-radius:var(--radius); border:1px solid var(--border); }
.stock-alert-box h3 { font-size:1rem; margin-bottom:8px; }
.stock-alert-box p { font-size:0.85rem; color:var(--text-muted); margin-bottom:12px; }
.stock-alert-success { display:none; color:var(--green); font-size:0.9rem; padding:12px 0; }
.stock-alert-form.was-sent .stock-alert-fields { display:none; }
.stock-alert-form.was-sent .stock-alert-success { display:block; }
.detail-share { margin-top:8px; }
.detail-share-btn { border:none; background:var(--dark-3); color:var(--text-muted); font-family:inherit; font-size:0.82rem; padding:8px 14px; border-radius:50px; cursor:pointer; transition:var(--transition); }
.detail-share-btn:hover { color:var(--text); border-color:var(--blue-light); }
.admin-clone { margin-right:4px; }
/* ===== MODAL RÉSERVATION ===== */
.modal { position:fixed; inset:0; z-index:2000; display:flex; align-items:center; justify-content:center; padding:20px; opacity:0; visibility:hidden; transition:var(--transition); }
.modal.open { opacity:1; visibility:visible; }
.modal-backdrop { position:absolute; inset:0; background:rgba(0,0,0,0.75); backdrop-filter:blur(4px); }
.modal-box { position:relative; width:100%; max-width:460px; max-height:90vh; overflow-y:auto; background:var(--dark-2); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px 24px; box-shadow:var(--shadow-card); }
.modal-box-lg { max-width:720px; }
.detail-layout { display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:start; }
.detail-photo { aspect-ratio:1/1; background:var(--dark-3); border-radius:var(--radius); overflow:hidden; display:flex; align-items:center; justify-content:center; }
.detail-photo img { width:100%; height:100%; object-fit:cover; }
.detail-info { display:flex; flex-direction:column; gap:10px; }
.detail-title { font-size:1.4rem; margin:0; }
.detail-etat { font-size:0.9rem; color:var(--text-muted); }
.detail-etat i { color:var(--orange-light); margin-right:6px; }
.detail-price { font-size:1.8rem; font-weight:800; margin:4px 0; }
.detail-desc { font-size:0.92rem; line-height:1.65; color:var(--text-muted); white-space:pre-wrap; }
.detail-garantie { font-size:0.82rem; color:var(--green); padding:10px 14px; background:rgba(46,232,154,0.08); border-radius:var(--radius); border:1px solid rgba(46,232,154,0.2); }
.detail-garantie i { margin-right:6px; }
.detail-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
@media (max-width:640px) { .detail-layout { grid-template-columns:1fr; } .modal-box-lg { padding:20px 16px; } }
.modal-close { position:absolute; top:14px; right:14px; width:36px; height:36px; border:none; border-radius:50%; background:var(--dark-3); color:var(--text-muted); cursor:pointer; transition:var(--transition); }
.modal-close:hover { color:var(--text); background:var(--dark-4); }
.modal-box h2 { margin-bottom:12px; font-size:1.35rem; }
.modal-product-summary { margin-bottom:20px; padding:14px; background:var(--dark-3); border-radius:var(--radius); font-size:0.92rem; }
.modal-success { display:none; text-align:center; padding:24px 12px; color:var(--green); }
.modal-success i { font-size:2.5rem; margin-bottom:12px; }
#reserveForm.was-sent .form-group, #reserveForm.was-sent #reserveSubmit, #reserveForm.was-sent #reserveFormError { display:none; }
#reserveForm.was-sent .modal-success { display:block; }

/* ===== ADMIN ===== */
.admin-body { padding-top:0; min-height:100vh; }
.admin-setup-warn { min-height:100vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:40px 20px; }
.admin-setup-warn h1 { margin-bottom:16px; }
.admin-setup-warn p { margin-bottom:12px; }
.admin-login-wrap { min-height:100vh; display:flex; align-items:center; justify-content:center; padding:40px 20px; background:radial-gradient(ellipse at top, rgba(0,194,224,0.08), transparent 60%); }
.admin-login-card { width:100%; max-width:420px; background:var(--gradient-dark); border:1px solid var(--border); border-radius:var(--radius-lg); padding:36px 28px; text-align:center; }
.admin-logo { display:inline-block; margin-bottom:20px; }
.admin-logo .logo-img { height:48px; }
.admin-login-card h1 { font-size:1.6rem; margin-bottom:8px; }
.admin-login-card > p { margin-bottom:24px; font-size:0.92rem; }
.admin-back-link { display:inline-block; margin-top:20px; font-size:0.88rem; color:var(--text-muted); }
.admin-back-link:hover { color:var(--blue-light); }
.admin-header { background:var(--dark-2); border-bottom:1px solid var(--border); padding:14px 0; position:sticky; top:0; z-index:100; }
.admin-header-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.admin-header-logo { height:36px; }
.admin-header-right { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.admin-user-email { font-size:0.85rem; color:var(--text-muted); }
.admin-main { padding:32px 24px 60px; }
.admin-tabs { display:flex; gap:10px; margin-bottom:28px; flex-wrap:wrap; }
.admin-tab { padding:11px 20px; border-radius:50px; border:1px solid var(--border); background:var(--dark-2); color:var(--text-muted); font-family:inherit; font-weight:600; font-size:0.9rem; cursor:pointer; transition:var(--transition); display:inline-flex; align-items:center; gap:8px; }
.admin-tab:hover { color:var(--text); border-color:var(--blue-light); }
.admin-tab.active { background:var(--gradient-brand); color:#04261a; border-color:transparent; }
.admin-panel-head { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:20px; flex-wrap:wrap; }
.admin-panel-head h2 { font-size:1.35rem; }
.admin-hint { font-size:0.88rem; margin-bottom:20px; color:var(--text-muted); }
.admin-filters { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:20px; align-items:center; }
.admin-search { position:relative; flex:1; min-width:200px; max-width:360px; }
.admin-search i { position:absolute; left:14px; top:50%; transform:translateY(-50%); color:var(--text-muted); font-size:0.85rem; }
.admin-search input { width:100%; padding:10px 14px 10px 38px; background:var(--dark-2); border:1px solid var(--border); border-radius:50px; color:var(--text); font-family:inherit; font-size:0.88rem; }
.admin-search input:focus { outline:none; border-color:var(--blue-light); }
.admin-pending-badge { display:inline-flex; align-items:center; justify-content:center; min-width:20px; height:20px; padding:0 6px; border-radius:50px; background:var(--orange); color:#fff; font-size:0.72rem; font-weight:700; margin-left:4px; }
.admin-quick-status { display:flex; gap:6px; flex-wrap:wrap; margin-top:10px; }
.admin-status-btn { padding:4px 10px; border-radius:50px; border:1px solid var(--border); background:var(--dark-3); color:var(--text-muted); font-family:inherit; font-size:0.72rem; font-weight:600; cursor:pointer; transition:var(--transition); display:inline-flex; align-items:center; gap:4px; }
.admin-status-btn:hover { color:var(--text); border-color:var(--blue-light); }
.admin-form-card { background:var(--gradient-dark); border:1px solid var(--border); border-radius:var(--radius-lg); padding:24px; margin-bottom:28px; }
.admin-form-card h3 { margin-bottom:18px; font-size:1.1rem; }
.admin-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.admin-span-2 { grid-column:1 / -1; }
.admin-form-actions { display:flex; gap:12px; flex-wrap:wrap; }
.admin-form-error { color:#FF6B6B; font-size:0.85rem; min-height:1.2em; }
.admin-photo-row { display:flex; gap:16px; align-items:flex-start; flex-wrap:wrap; }
.admin-photo-preview { width:120px; height:120px; border-radius:var(--radius); background:var(--dark-3); overflow:hidden; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.admin-photo-preview img { width:100%; height:100%; object-fit:cover; }
.admin-photo-ph { font-size:2rem; color:var(--text-muted); }
.admin-list { display:flex; flex-direction:column; gap:14px; }
.admin-item { display:flex; gap:16px; align-items:flex-start; background:var(--dark-2); border:1px solid var(--border); border-radius:var(--radius); padding:16px; }
.admin-thumb { width:72px; height:72px; border-radius:var(--radius); object-fit:cover; flex-shrink:0; }
.admin-thumb-ph { width:72px; height:72px; display:flex; align-items:center; justify-content:center; font-size:1.8rem; background:var(--dark-3); border-radius:var(--radius); flex-shrink:0; }
.admin-item-body { flex:1; min-width:0; }
.admin-item-top { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom:4px; }
.admin-item-meta { font-size:0.85rem; color:var(--text-muted); }
.admin-item-desc { font-size:0.82rem; margin-top:6px; color:var(--text-muted); line-height:1.4; }
.admin-item-actions { display:flex; gap:8px; flex-shrink:0; }
.admin-badge { padding:4px 10px; border-radius:50px; font-size:0.72rem; font-weight:700; }
.admin-badge-dispo, .admin-resa-pending { background:rgba(46,232,154,0.18); color:#2EE89A; }
.admin-badge-reserve, .admin-resa-confirmed { background:rgba(255,176,32,0.2); color:#FFB020; }
.admin-badge-vendu, .admin-resa-completed { background:rgba(255,90,90,0.2); color:#FF6B6B; }
.admin-resa-cancelled { background:rgba(136,146,164,0.2); color:var(--text-muted); }
.admin-resa { background:var(--dark-2); border:1px solid var(--border); border-radius:var(--radius); padding:18px; }
.admin-resa-head { display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-bottom:6px; }
.admin-resa-meta { font-size:0.85rem; color:var(--text-muted); margin-bottom:8px; }
.admin-resa-client { font-size:0.88rem; margin-bottom:8px; }
.admin-resa-client a { color:var(--blue-light); }
.admin-resa-msg { font-size:0.85rem; color:var(--text-muted); margin-bottom:12px; font-style:italic; }
.admin-resa-actions { display:flex; gap:8px; flex-wrap:wrap; }
.admin-est-new { background:rgba(255,176,32,0.22); color:#FFB020; }
.admin-est-read { background:rgba(100,180,255,0.18); color:#64B4FF; }
.admin-est-replied { background:rgba(46,232,154,0.18); color:#2EE89A; }
.admin-est-closed { background:rgba(136,146,164,0.2); color:var(--text-muted); }
.admin-inbox { display:grid; grid-template-columns:minmax(260px, 340px) 1fr; gap:16px; min-height:420px; }
.admin-inbox-list { display:flex; flex-direction:column; gap:8px; max-height:640px; overflow-y:auto; padding-right:4px; }
.admin-inbox-list-empty { text-align:center; padding:24px; color:var(--text-muted); font-size:0.88rem; }
.admin-inbox-item { text-align:left; width:100%; padding:14px 16px; border-radius:var(--radius); border:1px solid var(--border); background:var(--dark-2); color:var(--text); font-family:inherit; cursor:pointer; transition:var(--transition); }
.admin-inbox-item:hover { border-color:var(--blue-light); }
.admin-inbox-item.is-active { border-color:var(--green); background:rgba(46,232,154,0.06); }
.admin-inbox-item.is-unread { border-left:3px solid var(--orange); }
.admin-inbox-item-top { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:4px; }
.admin-inbox-item-meta { font-size:0.8rem; color:var(--text-muted); margin-bottom:2px; }
.admin-inbox-item-preview { font-size:0.78rem; color:var(--text-muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.admin-inbox-detail { background:var(--dark-2); border:1px solid var(--border); border-radius:var(--radius); padding:20px; min-height:320px; }
.admin-inbox-empty { text-align:center; color:var(--text-muted); padding:48px 16px; font-size:0.9rem; }
.admin-inbox-detail-head { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:12px; flex-wrap:wrap; }
.admin-inbox-detail-title { font-size:1.1rem; margin-right:8px; }
.admin-inbox-detail-date { font-size:0.8rem; color:var(--text-muted); }
.admin-inbox-detail-meta { display:flex; flex-wrap:wrap; gap:12px; font-size:0.85rem; color:var(--text-muted); margin-bottom:14px; }
.admin-inbox-detail-meta i { margin-right:4px; color:var(--blue-light); }
.admin-inbox-detail-client { margin-bottom:14px; font-size:0.88rem; }
.admin-inbox-detail-client p { margin:4px 0; }
.admin-inbox-detail-client a { color:var(--blue-light); }
.admin-inbox-detail-msg { background:var(--dark-3); border-radius:var(--radius); padding:14px; margin-bottom:16px; font-size:0.88rem; line-height:1.5; }
.admin-inbox-detail-actions { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:18px; }
.admin-wa-btn { background:#25D366 !important; border-color:#25D366 !important; color:#fff !important; }
.admin-inbox-detail-status { margin-bottom:16px; }
.admin-inbox-detail-status label { display:block; font-size:0.82rem; color:var(--text-muted); margin-bottom:6px; }
.admin-inbox-notes-form label { display:block; font-size:0.82rem; color:var(--text-muted); margin-bottom:6px; }
.admin-inbox-notes-form textarea { margin-bottom:10px; }
@media (max-width:900px) {
  .admin-inbox { grid-template-columns:1fr; }
  .admin-inbox-list { max-height:280px; }
}
.admin-loading, .admin-empty, .admin-error { text-align:center; padding:32px; color:var(--text-muted); }
.admin-error { color:#FF6B6B; }
.admin-toast { position:fixed; bottom:24px; right:24px; background:var(--green); color:#04261a; padding:14px 22px; border-radius:50px; font-weight:600; font-size:0.9rem; opacity:0; transform:translateY(12px); transition:var(--transition); z-index:3000; pointer-events:none; }
.admin-toast.show { opacity:1; transform:translateY(0); }
.admin-toast.is-error { background:#FF6B6B; color:#fff; }
.admin-form-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.admin-customer-form { margin-top:14px; padding-top:14px; border-top:1px solid var(--border); }
.admin-hint-inline { font-size:0.82rem; color:var(--text-muted); margin:8px 0; }
.admin-badge-neutral { background:rgba(100,180,255,0.22); color:#64B4FF; }
.admin-stats { display:grid; grid-template-columns:repeat(auto-fit, minmax(130px, 1fr)); gap:12px; margin-bottom:24px; }
.admin-stat-card { background:var(--dark-2); border:1px solid var(--border); border-radius:var(--radius); padding:16px 14px; text-align:center; }
.admin-stat-value { font-size:1.65rem; font-weight:800; color:var(--green); line-height:1.2; }
.admin-stat-label { font-size:0.76rem; color:var(--text-muted); margin-top:4px; line-height:1.35; }
.admin-stat-card--muted .admin-stat-value { color:var(--text-muted); font-size:1.35rem; }
.admin-customer-inbox { grid-template-columns:minmax(340px, 1.3fr) minmax(280px, 1fr); }
.admin-customer-table-wrap { overflow-x:auto; max-height:640px; overflow-y:auto; border:1px solid var(--border); border-radius:var(--radius); background:var(--dark-2); }
.admin-customer-table { width:100%; border-collapse:collapse; font-size:0.84rem; }
.admin-customer-table th { text-align:left; padding:10px 12px; background:var(--dark-3); color:var(--text-muted); font-size:0.7rem; text-transform:uppercase; letter-spacing:0.04em; position:sticky; top:0; z-index:1; white-space:nowrap; }
.admin-customer-table td { padding:10px 12px; border-bottom:1px solid var(--border); vertical-align:middle; }
.admin-customer-table tbody tr { cursor:pointer; transition:var(--transition); }
.admin-customer-table tbody tr:hover { background:rgba(0,194,224,0.06); }
.admin-customer-table tbody tr.is-active { background:rgba(46,232,154,0.08); }
.admin-customer-table .cust-card-empty { color:var(--text-muted); font-style:italic; font-size:0.8rem; }
.admin-table-empty { text-align:center; padding:32px 16px !important; color:var(--text-muted); }
.admin-customer-detail-form .form-group { margin-bottom:12px; }
.admin-customer-detail-form label { display:block; font-size:0.82rem; color:var(--text-muted); margin-bottom:6px; }
.admin-customer-detail-readonly { font-size:0.85rem; color:var(--text-muted); margin-bottom:14px; }
.admin-customer-detail-readonly a { color:var(--blue-light); }
.admin-customer-detail-panel { border-color:rgba(46,232,154,0.25); }
.admin-customer-edit-section {
  margin-top:16px; padding-top:16px; border-top:1px solid var(--border);
  background:rgba(46,232,154,0.04); border-radius:var(--radius); padding:16px;
}
.admin-customer-edit-section-head {
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  margin-bottom:14px; flex-wrap:wrap;
}
.admin-customer-edit-section-head h3 {
  margin:0; font-size:0.95rem; font-weight:700; color:var(--green);
  display:flex; align-items:center; gap:8px;
}
.admin-customer-edit-section-head h3 i { font-size:0.85rem; }
.admin-customer-detail-form .admin-form-actions {
  display:flex; flex-wrap:wrap; gap:8px; margin-top:4px; align-items:center;
}
.admin-customer-detail-form .admin-form-error { margin:0 0 10px; font-size:0.82rem; }
.admin-customer-detail-danger { margin-top:16px; padding-top:14px; border-top:1px dashed rgba(255,107,107,0.35); }
.admin-customer-row-edit {
  background:transparent; border:none; color:var(--blue-light); cursor:pointer;
  padding:4px 8px; border-radius:6px; font-size:0.85rem; transition:var(--transition);
}
.admin-customer-row-edit:hover { background:rgba(0,194,224,0.12); color:var(--green); }
.admin-th-actions { width:56px; text-align:center; }
.admin-customer-table td.admin-td-actions { text-align:center; padding:6px 8px; }
@media (max-width:900px) {
  .admin-customer-inbox { grid-template-columns:1fr; }
  .admin-customer-table-wrap { max-height:320px; }
}
.admin-pdv-sync {
  margin-bottom:24px; padding:16px 18px; border-radius:12px;
  background:var(--bg-card, rgba(255,255,255,0.04)); border:1px solid var(--border, rgba(255,255,255,0.08));
}
.admin-pdv-sync-title { font-size:1rem; margin:0 0 10px; }
.admin-pdv-steps { margin:12px 0; font-size:0.88rem; color:var(--text-muted); }
.admin-pdv-steps ol { margin:8px 0 0 1.2rem; padding:0; }
.admin-pdv-import-row { display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin-top:12px; }
.admin-pdv-file { max-width:100%; font-size:0.85rem; }
.compte-pdv-sync { font-size:0.9rem; color:var(--accent, #22c55e); margin:0 0 12px; }
.nav-links a.is-connected { color:var(--green); font-weight:700; }

/* ===== MON COMPTE (fidélité) ===== */
.compte-section { padding-top:32px; }
.compte-container { max-width:960px; }
.compte-auth-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.compte-card {
  background:var(--gradient-dark); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:28px;
}
.compte-card h2, .compte-card h3 { font-size:1.2rem; margin-bottom:8px; display:flex; align-items:center; gap:10px; }
.compte-card-intro { color:var(--text-muted); font-size:0.92rem; margin-bottom:20px; line-height:1.6; }
.compte-form-error { color:#FF6B6B; font-size:0.85rem; min-height:1.2em; }
.compte-form-success { color:var(--green); font-size:0.85rem; min-height:1.2em; }
.compte-hint { font-size:0.8rem; color:var(--text-muted); margin-top:16px; line-height:1.5; }
.compte-hint a { color:var(--blue-light); }
.compte-alert { background:rgba(255,176,32,0.12); border:1px solid rgba(255,176,32,0.35); border-radius:var(--radius); padding:16px; margin-bottom:24px; }
.compte-dash-head { display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:28px; }
.compte-dash-email { color:var(--text-muted); font-size:0.9rem; margin-top:4px; }
.compte-dash-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.compte-tier-badge {
  display:flex; align-items:baseline; flex-wrap:wrap; gap:8px 12px;
  background:var(--dark-2); border:1px solid var(--border); border-radius:var(--radius);
  padding:14px 18px; margin-bottom:16px;
}
.compte-tier-label { font-size:0.78rem; text-transform:uppercase; letter-spacing:0.06em; color:var(--text-muted); font-weight:700; }
.compte-tier-badge strong { font-size:1.35rem; color:var(--green); }
.compte-points { font-size:0.88rem; color:var(--text-muted); font-weight:600; }
.compte-benefits-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.compte-benefits-list li { display:flex; align-items:flex-start; gap:10px; font-weight:500; }
.compte-benefits-list i { color:var(--green); margin-top:3px; }
.compte-benefits-empty { color:var(--text-muted); font-weight:400; }
.compte-custom-benefits { margin-top:14px; font-size:0.9rem; line-height:1.6; color:var(--blue-light); }
.compte-pos-note {
  margin-top:28px; padding:18px 20px; background:var(--dark-2); border:1px solid var(--border);
  border-radius:var(--radius-lg); display:flex; gap:14px; align-items:flex-start;
}
.compte-pos-note i { font-size:1.4rem; color:var(--blue-light); margin-top:2px; }
.compte-pos-note p { margin:0; font-size:0.9rem; line-height:1.65; color:var(--text-muted); }
.compte-balance-badge {
  display:flex; align-items:baseline; flex-wrap:wrap; gap:6px 10px;
  background:var(--dark-2); border:1px solid var(--border); border-radius:var(--radius);
  padding:16px 18px; margin-bottom:14px;
}
.compte-balance-label { font-size:0.78rem; text-transform:uppercase; letter-spacing:0.06em; color:var(--text-muted); font-weight:700; width:100%; }
.compte-balance-badge strong { font-size:2rem; color:var(--green); line-height:1; }
.compte-balance-unit { font-size:0.95rem; color:var(--text-muted); font-weight:600; }
.compte-voucher-status {
  font-size:0.92rem; line-height:1.6; color:var(--text-muted); margin:0 0 12px;
  padding:12px 14px; border-radius:var(--radius); background:rgba(255,255,255,0.03); border:1px solid var(--border);
}
.compte-voucher-status i { color:var(--blue-light); margin-right:6px; }
.compte-voucher-status--active { border-color:rgba(34,197,94,0.35); background:rgba(34,197,94,0.08); color:var(--text); }
.compte-loyalty-program {
  margin-top:48px; padding-top:40px; border-top:1px solid var(--border);
}
.compte-loyalty-head { text-align:center; margin-bottom:32px; }
.compte-loyalty-subtitle { color:var(--text-muted); font-size:1.05rem; margin-top:8px; }
.compte-loyalty-grid {
  display:grid; grid-template-columns:minmax(220px, 360px) 1fr; gap:32px; align-items:start;
}
.compte-loyalty-poster img {
  width:100%; height:auto; border-radius:var(--radius-lg);
  border:1px solid var(--border); box-shadow:0 12px 40px rgba(0,0,0,0.35);
}
.compte-loyalty-details { display:flex; flex-direction:column; gap:24px; }
.compte-loyalty-block {
  background:var(--gradient-dark); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:24px;
}
.compte-loyalty-block h3 {
  font-size:1.05rem; margin:0 0 16px; display:flex; align-items:center; gap:10px;
}
.compte-loyalty-block h3 i { color:var(--blue-light); }
.compte-earning-list { list-style:none; display:flex; flex-direction:column; gap:12px; margin:0; padding:0; }
.compte-earning-item {
  display:flex; align-items:flex-start; gap:14px; padding:14px 16px;
  background:var(--dark-2); border:1px solid var(--border); border-radius:var(--radius);
}
.compte-earning-item--highlight { border-color:rgba(34,197,94,0.4); background:rgba(34,197,94,0.06); }
.compte-earning-icon {
  width:42px; height:42px; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  border-radius:50%; background:rgba(59,130,246,0.15); color:var(--blue-light); font-size:1.1rem;
}
.compte-earning-item div { display:flex; flex-direction:column; gap:4px; }
.compte-earning-item strong { font-size:0.95rem; }
.compte-earning-item span { font-size:0.88rem; color:var(--text-muted); line-height:1.5; }
.compte-rate-note {
  font-size:0.85rem; color:var(--blue-light); font-weight:600; margin:-4px 0 14px;
}
.compte-redemption-wrap { overflow-x:auto; }
.compte-redemption-table {
  width:100%; border-collapse:collapse; font-size:0.9rem;
}
.compte-redemption-table th,
.compte-redemption-table td {
  padding:10px 14px; text-align:left; border-bottom:1px solid var(--border);
}
.compte-redemption-table th {
  font-size:0.75rem; text-transform:uppercase; letter-spacing:0.05em;
  color:var(--text-muted); font-weight:700;
}
.compte-redemption-table tbody tr:last-child td { border-bottom:none; }
.compte-redemption-table tbody tr { transition:background 0.2s; }
.compte-redemption-table tbody tr.is-current { background:rgba(34,197,94,0.12); }
.compte-redemption-table tbody tr.is-current td { font-weight:700; }
.compte-redemption-table tbody tr.is-next { background:rgba(59,130,246,0.08); }
.compte-pts-value { color:var(--blue-light); font-weight:700; }
.compte-voucher-value { color:var(--green); font-weight:700; }
.compte-loyalty-footer {
  text-align:center; margin-top:28px; font-size:0.95rem; font-weight:600; color:var(--text-muted);
}
@media (max-width:800px){
  .compte-auth-grid, .compte-dash-grid { grid-template-columns:1fr; }
  .compte-loyalty-grid { grid-template-columns:1fr; }
  .compte-loyalty-poster { max-width:320px; margin:0 auto; }
  .admin-form-grid-2 { grid-template-columns:1fr; }
}
@media (max-width:640px) {
  .admin-form-grid { grid-template-columns:1fr; }
  .admin-span-2 { grid-column:1; }
  .admin-item { flex-direction:column; }
  .admin-header-right { width:100%; justify-content:flex-end; }
}

/* ===== AOR (OPTION DE RACHAT) ===== */
.aor-hero {
  position: relative;
  padding: 56px 0 72px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.aor-hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(0, 194, 224, 0.14) 0%, rgba(255, 107, 53, 0.08) 45%, transparent 70%);
  pointer-events: none;
}
.aor-hero-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.aor-hero-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 18px auto 24px;
  max-width: 640px;
}
.aor-hero-lead strong { color: var(--text); }
.aor-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.aor-hero-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 14px;
}
.aor-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.aor-steps-section { background: var(--dark); }
.aor-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.aor-step-card {
  position: relative;
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  text-align: center;
  transition: var(--transition);
}
.aor-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 194, 224, 0.28);
  box-shadow: var(--shadow-card);
}
.aor-step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 194, 224, 0.12);
  border: 1px solid rgba(0, 194, 224, 0.3);
  color: var(--blue-light);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aor-step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  background: rgba(0, 194, 224, 0.15);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.aor-step-icon--orange { background: rgba(255, 107, 53, 0.15); color: var(--orange-light); }
.aor-step-icon--green { background: rgba(46, 232, 154, 0.15); color: var(--green); }
.aor-step-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.aor-step-card p { font-size: 0.92rem; line-height: 1.7; }
.aor-benefits-band { padding: 80px 0; }
.aor-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.aor-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.aor-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.aor-benefits-list i {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 194, 224, 0.12);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}
.aor-benefits-list strong { color: var(--text); }
.aor-objects-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.aor-objects-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.aor-objects-card h3 i { color: var(--blue-light); }
.aor-objects-intro { font-size: 0.92rem; margin-bottom: 18px; line-height: 1.65; }
.aor-objects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.aor-object-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.aor-objects-note { font-size: 0.85rem; line-height: 1.6; }
.aor-cta-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}
.aor-cta-box h2 { margin: 10px 0 14px; }
.aor-cta-box > p { margin-bottom: 28px; font-size: 1.02rem; }
.aor-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.aor-legal-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: center;
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.aor-legal-note i { color: var(--blue-light); margin-top: 3px; flex-shrink: 0; }

/* AOR teaser on homepage */
.aor-teaser-section { background: var(--dark); }
.aor-teaser {
  position: relative;
  background: var(--gradient-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.aor-teaser-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.aor-teaser-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 44px 40px;
}
.aor-teaser-content h2 { margin: 12px 0 14px; }
.aor-teaser-lead { font-size: 1rem; line-height: 1.65; margin-bottom: 22px; max-width: 520px; }
.aor-teaser-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}
.aor-teaser-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}
.aor-teaser-step-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 194, 224, 0.12);
  border: 1px solid rgba(0, 194, 224, 0.25);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.aor-teaser-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.aor-teaser-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.aor-teaser-card-stack {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 220px;
}
.aor-teaser-card {
  position: absolute;
  width: 180px;
  padding: 20px 18px;
  border-radius: var(--radius-lg);
  background: var(--dark-3);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.aor-teaser-card--1 {
  top: 0;
  left: 0;
  transform: rotate(-6deg);
  opacity: 0.7;
}
.aor-teaser-card--2 {
  top: 30px;
  right: 0;
  transform: rotate(5deg);
  border-color: rgba(255, 107, 53, 0.35);
  background: linear-gradient(145deg, var(--dark-3), rgba(255, 107, 53, 0.1));
  z-index: 2;
}
.aor-teaser-card--3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  width: 200px;
  border-color: rgba(46, 232, 154, 0.35);
  z-index: 3;
}
.aor-teaser-card-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.aor-teaser-card-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.aor-teaser-card-value { font-size: 1rem; font-weight: 800; }
.aor-teaser-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(46, 232, 154, 0.1);
  border: 1px solid rgba(46, 232, 154, 0.28);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
}
.estimate-aor-link {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(0, 194, 224, 0.08);
  border: 1px solid rgba(0, 194, 224, 0.22);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}
.estimate-aor-link a {
  color: var(--blue-light);
  font-weight: 700;
}
.estimate-aor-link a:hover { color: var(--green); }

/* AOR estimator */
.aor-estimator-section { background: var(--dark); padding-top: 0; }
.aor-estimator-panel {
  background: linear-gradient(145deg, rgba(0, 194, 224, 0.06) 0%, rgba(255, 107, 53, 0.04) 100%);
  border: 1px solid rgba(0, 194, 224, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.aor-estimator-panel--compact {
  margin-top: 22px;
  padding: 20px 18px;
  background: rgba(0, 0, 0, 0.22);
  border-color: var(--border);
  box-shadow: none;
}
.aor-estimator-compact-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.aor-estimator-compact-title i { color: var(--orange-light); margin-right: 6px; }
.aor-estimator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.aor-estimator-base-note {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 22px;
  background: rgba(0, 194, 224, 0.08);
  border: 1px solid rgba(0, 194, 224, 0.18);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.6;
}
.aor-estimator-base-note i {
  color: var(--blue-light);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.aor-estimator-input-row { margin-bottom: 10px; }
.aor-estimator-input-wrap {
  position: relative;
  max-width: 280px;
}
.aor-estimator-input {
  padding-right: 42px;
  font-size: 1.15rem;
  font-weight: 600;
}
.aor-estimator-currency {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-weight: 700;
  pointer-events: none;
}
.aor-estimator-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 14px 0 10px;
}
.aor-estimator-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.aor-estimator-presets--compact { margin-bottom: 14px; }
.aor-preset-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--dark-2);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.aor-preset-btn:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
}
.aor-preset-btn.is-active {
  background: rgba(0, 194, 224, 0.15);
  border-color: var(--blue-light);
  color: var(--blue-light);
}
.aor-estimator-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.aor-estimator-results--compact {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0 8px;
}
.aor-result-card {
  padding: 18px 16px;
  border-radius: var(--radius);
  background: var(--dark-2);
  border: 1px solid var(--border);
}
.aor-result-card--cash { border-color: rgba(255, 107, 53, 0.25); }
.aor-result-card--buyback { border-color: rgba(0, 194, 224, 0.25); }
.aor-result-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.aor-result-value {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}
.aor-result-detail { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
.aor-result-inline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: var(--dark-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.aor-result-inline-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); font-weight: 700; }
.aor-result-inline strong { font-size: 1.1rem; }
.aor-estimator-empty {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.aor-estimator-empty--compact { font-size: 0.8rem; margin: 0; }
.aor-estimator-formula {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 8px 0 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.aor-estimator-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}
.aor-estimator-disclaimer i { color: var(--blue-light); margin-top: 2px; flex-shrink: 0; }
.aor-estimator-disclaimer--compact {
  padding: 0;
  border: none;
  background: none;
  margin-top: 10px;
  font-size: 0.75rem;
}
.aor-estimator-disclaimer--compact a { color: var(--blue-light); font-weight: 600; }
.aor-estimator-tariffs h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.aor-estimator-tariffs h3 i { color: var(--blue-light); }
.aor-tariff-intro { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.aor-tariff-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.aor-tariff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.aor-tariff-table thead {
  background: rgba(0, 194, 224, 0.1);
}
.aor-tariff-table th,
.aor-tariff-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.aor-tariff-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
}
.aor-tariff-table tbody tr:last-child td { border-bottom: none; }
.aor-tariff-table tbody tr:hover td { background: rgba(255, 255, 255, 0.03); }
.aor-tariff-table td:nth-child(2) { color: var(--orange-light); font-weight: 700; }
.aor-tariff-table td:nth-child(3) { color: var(--blue-light); font-weight: 700; }

@media (max-width: 900px) {
  .aor-estimator-grid { grid-template-columns: 1fr; gap: 28px; }
  .aor-estimator-grid > * { min-width: 0; }
  .aor-estimator-results { grid-template-columns: 1fr; }
  .aor-steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .aor-split-grid { grid-template-columns: 1fr; }
  .aor-split-grid > * { min-width: 0; }
  .aor-teaser-inner { grid-template-columns: 1fr; padding: 24px 20px; }
  .aor-teaser-visual { order: -1; overflow: hidden; width: 100%; max-width: 100%; }
}
@media (max-width: 600px) {
  .aor-estimator-panel { padding: 24px 16px; max-width: 100%; }
  .aor-estimator-input-wrap { max-width: none; }
  .aor-tariff-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .aor-tariff-table th, .aor-tariff-table td { padding: 10px 12px; font-size: 0.82rem; }
  .aor-hero-ctas, .aor-cta-btns, .aor-teaser-actions { flex-direction: column; width: 100%; }
  .aor-hero-ctas .btn, .aor-cta-btns .btn, .aor-teaser-actions .btn { width: 100%; justify-content: center; }
  .aor-cta-box { padding: 28px 20px; max-width: 100%; width: 100%; box-sizing: border-box; }
  .aor-teaser-card-stack { max-width: 220px; height: 180px; margin: 0 auto; }
  .aor-teaser-card { width: 160px; padding: 16px 14px; }
  .aor-teaser-card--3 { width: 170px; }
  .aor-objects-card { padding: 24px 20px; }
  .aor-step-card { padding: 28px 20px 24px; }
}

@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;
  }
  .reveal { opacity: 1; transform: none; }
  .wa-float { animation: none; }
}
