:root {
  --color-bg-primary: #F5EFE7;
  --color-bg-secondary: #8B9F83;
  --color-bg-dark: #2C2C2C;
  --color-text-primary: #2C2C2C;
  --color-text-secondary: #6B6B6B;
  --color-accent: #C89B98;
  --color-accent-secondary: #8B9F83;
  --color-dark-bg: #2C2C2C;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.5px;
}

a {
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

.navbar {
  background-color: white !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.btn-dark {
  background-color: var(--color-text-primary);
  border-color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline-dark {
  color: var(--color-text-primary);
  border-color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: var(--color-text-primary);
  color: white;
  border-color: var(--color-text-primary);
  transform: scale(1.02);
}

.hero {
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.floating-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation-delay: 0.5s;
}

.floating-card:nth-child(3) {
  animation-delay: 1s;
}

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

.floating-card:hover {
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
  transform: scale(1.02);
}

.product-card {
  display: block;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  transition: transform 0.3s ease;
}

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

.card {
  transition: all 0.3s ease;
  border: none;
}

.card:hover {
  box-shadow: 0 16px 32px rgba(0,0,0,0.12) !important;
  transform: translateY(-8px);
}

.mood-indicator {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.mood-label {
  font-size: 1.1rem;
  color: white;
}

.care-rhythm {
  background: linear-gradient(135deg, #8B9F83 0%, #7A8E74 100%);
}

.products-section {
  padding: 80px 0;
}

.faq {
  background-color: white;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(200, 155, 152, 0.25);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

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

footer a {
  color: rgba(255,255,255,0.5);
}

footer a:hover {
  color: var(--color-accent);
}

.cookie-banner {
  background: rgba(44, 44, 44, 0.95) !important;
}

.view-toggle {
  cursor: pointer;
}

.view-toggle.active {
  background-color: var(--color-text-primary);
  color: white;
}

hr {
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .floating-card {
    margin-bottom: 20px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .care-rhythm .row {
    flex-direction: column;
  }

  .order-lg-1 {
    order: 0 !important;
  }

  .order-lg-2 {
    order: 0 !important;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }

  .card-body {
    padding: 1rem;
  }

  .cookie-banner {
    padding: 15px !important;
    font-size: 0.9rem;
  }

  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.text-white-50 {
  color: rgba(255,255,255,0.5) !important;
}

.gap-3 {
  gap: 1rem;
}

.gap-x-2 {
  column-gap: 0.5rem;
}

.gap-y-6 {
  row-gap: 1.5rem;
}

ol {
  padding-left: 20px;
}

ol li {
  margin-bottom: 10px;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

.list-unstyled li {
  margin-bottom: 8px;
}

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

strong {
  font-weight: 600;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}
