/* ==========================================================================
   PACKAGING DIGITAL - Clean & Professional Design
   Inspired by Nutri&Co aesthetic
   ========================================================================== */

:root {
  /* Colors - Soft & Professional */
  --color-bg: #fafafa;
  --color-surface: #ffffff;
  --color-border: #e8e8e8;
  --color-border-hover: #d0d0d0;

  --color-text: #1a1a1a;
  --color-text-secondary: #666666;
  --color-text-muted: #999999;

  --color-accent: #1a365d;
  --color-accent-light: #2c5282;
  --color-accent-bg: #ebf4ff;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Typography */
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows - Very subtle */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.08);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 150ms var(--ease-out);
  --transition-base: 250ms var(--ease-out);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* ==========================================================================
   Gradient Background - Vibrant & Dynamic
   ========================================================================== */

.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: linear-gradient(
    180deg,
    var(--color-gradient-primary, rgba(99, 102, 241, 0.5)) 0%,
    var(--color-gradient-secondary, rgba(99, 102, 241, 0.25)) 30%,
    var(--color-gradient-tertiary, rgba(99, 102, 241, 0.1)) 55%,
    var(--color-gradient-tertiary, rgba(99, 102, 241, 0.03)) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: -1;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gradient-bg::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  right: -20%;
  height: 70%;
  background: radial-gradient(
    ellipse 80% 80% at 50% 0%,
    var(--color-gradient-primary, rgba(99, 102, 241, 0.55)) 0%,
    transparent 70%
  );
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gradient-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse 50% 40% at 20% 20%,
      var(--color-gradient-accent, rgba(99, 102, 241, 0.2)) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 40% at 80% 30%,
      var(--color-gradient-accent, rgba(99, 102, 241, 0.15)) 0%,
      transparent 50%
    );
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header.scrolled .logo-img {
  filter: brightness(0) invert(0.1);
  transform: scale(0.7);
}

.header-inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-img {
  height: 70px !important;
  width: auto !important;
  filter: brightness(0) invert(0.15);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-img:hover {
  filter: brightness(0) invert(0.3);
}

.logo-mark {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Search Bar
   ========================================================================== */

.search-container {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  padding: 0 var(--space-lg);
}

.search-wrapper {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  outline: none;
  transition: all 0.25s ease;
}

.search-input::placeholder {
  color: var(--color-text-muted);
}

.search-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-bg);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  pointer-events: none;
}

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 320px;
  overflow-y: auto;
  z-index: 200;
  display: none;
}

.search-results.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid var(--color-border);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: var(--color-bg);
}

.search-result-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 2px;
}

.search-result-desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-no-results {
  padding: var(--space-lg);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.main {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  overflow: visible;
}

/* ==========================================================================
   Product Hero
   ========================================================================== */

.product-hero {
  padding: var(--space-xl) 0 var(--space-2xl);
  text-align: center;
  overflow: visible;
}

/* ==========================================================================
   Carousel - 3D Centered Effect
   ========================================================================== */

.carousel {
  position: relative;
  width: 100%;
  height: 280px;
  margin: var(--space-lg) 0;
  perspective: 1000px;
  overflow: visible;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide {
  position: absolute;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  z-index: 1;
}

/* Left slide (previous) */
.carousel-slide.prev {
  transform: translateX(-120px) translateZ(-100px) scale(0.5);
  opacity: 0.35;
  filter: blur(1px) saturate(0.7);
  z-index: 2;
}

/* Right slide (next) */
.carousel-slide.next {
  transform: translateX(120px) translateZ(-100px) scale(0.5);
  opacity: 0.35;
  filter: blur(1px) saturate(0.7);
  z-index: 2;
}

/* Active slide (center) */
.carousel-slide.active {
  transform: translateX(0) translateZ(0) scale(1);
  opacity: 1;
  filter: none;
  cursor: default;
  z-index: 10;
}

/* Hidden slides */
.carousel-slide.hidden {
  transform: translateX(0) translateZ(-300px) scale(0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.carousel-slide.active img {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
  animation: productEnter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide:not(.active):hover {
  opacity: 0.55;
  filter: blur(1px) saturate(0.85);
}

@keyframes productEnter {
  0% {
    opacity: 0.5;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Navigation arrows - Hidden on mobile, visible on desktop */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: none; /* Hidden by default (mobile) */
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  transition: all 0.25s ease;
}

.carousel-nav:hover {
  background: var(--color-bg);
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.98);
}

.carousel-nav--prev {
  left: 10px;
}

.carousel-nav--next {
  right: 10px;
}

.carousel-nav svg {
  width: 20px;
  height: 20px;
  color: var(--color-text);
}

.carousel-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

@media (min-width: 480px) {
  .carousel {
    height: 340px;
  }

  .carousel-slide {
    width: 300px;
    height: 300px;
  }

  .carousel-slide.prev {
    transform: translateX(-200px) translateZ(-180px) scale(0.5);
  }

  .carousel-slide.next {
    transform: translateX(200px) translateZ(-180px) scale(0.5);
  }
}

/* Show arrows only on larger screens */
@media (min-width: 768px) {
  .carousel-nav {
    display: flex;
  }

  .carousel-nav--prev {
    left: 20px;
  }

  .carousel-nav--next {
    right: 20px;
  }
}

@media (min-width: 600px) {
  .carousel {
    height: 400px;
  }

  .carousel-slide {
    width: 360px;
    height: 360px;
  }

  .carousel-slide.prev {
    transform: translateX(-240px) translateZ(-200px) scale(0.45);
  }

  .carousel-slide.next {
    transform: translateX(240px) translateZ(-200px) scale(0.45);
  }
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: var(--space-lg) 0 var(--space-xl);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.carousel-dot.active {
  width: 28px;
  border-radius: 100px;
  background: var(--color-accent);
}

/* ==========================================================================
   Product Header
   ========================================================================== */

.product-header {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.product-header.animate {
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.product-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.5;
}

.product-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.product-tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-accent-bg);
  color: var(--color-accent);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.product-tag:hover {
  transform: translateY(-1px);
}

.product-tag--highlight {
  background: var(--color-accent);
  color: white;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.product-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 400px;
  margin: 0 auto;
}

/* ==========================================================================
   Navigation Cards
   ========================================================================== */

.nav-section {
  padding-bottom: var(--space-xl);
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-align: center;
}

.nav-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.nav-card:active {
  transform: translateY(0);
}

.nav-card.active {
  border-color: var(--color-accent);
  background: var(--color-accent-bg);
}

.nav-card.active .nav-card-icon {
  color: var(--color-accent);
}

.nav-card-icon {
  width: 28px;
  height: 28px;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.nav-card-icon svg {
  width: 100%;
  height: 100%;
}

.nav-card:hover .nav-card-icon {
  color: var(--color-accent);
}

.nav-card-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.3;
}

/* ==========================================================================
   Content Section
   ========================================================================== */

.content-section {
  padding-bottom: var(--space-3xl);
  min-height: 200px;
}

.content-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: fadeIn 0.3s var(--ease-out);
}

.content-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.content-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.content-title-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.content-body {
  padding: var(--space-lg);
}

.content-text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.content-text strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Steps List */
.steps-list {
  list-style: none;
  margin-top: var(--space-lg);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.step-item:last-child {
  border-bottom: none;
}

.step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50%;
}

.step-text {
  font-size: 0.9375rem;
  color: var(--color-text);
  padding-top: 3px;
}

/* Ingredients List */
.ingredients-list {
  list-style: none;
  margin-top: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
}

.ingredient-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
  color: var(--color-text);
}

.ingredient-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ingredient-item:first-child {
  padding-top: 0;
}

.ingredient-item::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Info Cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.info-card {
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius-sm);
}

.info-card-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.info-card-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-list {
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  background: transparent;
  transition: background var(--transition-fast);
}

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

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out);
}

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

.faq-answer-content {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Empty State */
.empty-state {
  padding: var(--space-2xl);
  text-align: center;
}

.empty-state-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--color-text-muted);
  opacity: 0.5;
}

.empty-state-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.empty-state-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
  margin-top: auto;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.social-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: var(--color-accent-bg);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.back-link:hover {
  background: var(--color-accent);
  color: white;
}

.back-link svg {
  width: 16px;
  height: 16px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer-credit {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: var(--color-accent-bg);
  color: var(--color-accent);
}

/* Hide content initially */
.content-section[data-hidden="true"] {
  display: none;
}

/* ==========================================================================
   VIDEO PLAYER STYLES
   ========================================================================== */

.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.video-player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.video-player:focus {
  outline: none;
}

.video-description {
  margin-top: 1rem;
  text-align: center;
  opacity: 0.9;
}

.video-duration {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* ==========================================================================
   "EST-CE FAIT POUR VOUS ?" SECTION STYLES
   ========================================================================== */

.for-you-section {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.for-you-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.for-you-title.ideal {
  color: #22c55e;
}

.for-you-title.not-ideal {
  color: #ef4444;
}

.for-you-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.for-you-list li {
  padding: 0.625rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.for-you-list li:last-child {
  border-bottom: none;
}

.for-you-list.ideal li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.for-you-list.not-ideal li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}

/* VIDEO PLAYER STYLES */
.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.video-player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.video-description {
  margin-top: 1rem;
  text-align: center;
  opacity: 0.9;
}

.video-duration {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* EST-CE FAIT POUR VOUS STYLES */
.for-you-section {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.for-you-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.for-you-title.ideal { color: #22c55e; }
.for-you-title.not-ideal { color: #ef4444; }

.for-you-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.for-you-list li {
  padding: 0.625rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.for-you-list li:last-child { border-bottom: none; }

.for-you-list.ideal li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.for-you-list.not-ideal li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}



/* MOBILE VIDEO RESPONSIVE FIX */
@media (max-width: 768px) {
  .video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem;
    border-radius: 12px;
    padding: 0;
  }
  
  .video-player {
    width: 100% !important;
    height: auto !important;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
  }
  
  .content-body .video-container {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Portrait video on mobile */
@media (max-width: 480px) {
  .video-container {
    border-radius: 8px;
    margin-bottom: 0.75rem;
  }
  
  .video-player {
    border-radius: 8px;
    max-height: 60vh;
  }
  
  .video-description {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  
  .video-duration {
    font-size: 0.8rem;
  }
}

