:root {
  --primary-color: #fdb913;
  --primary-dark: #e5a611;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--secondary-color) !important;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 185, 19, 0.3);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-section h1 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: var(--text-light);
  font-size: 1.25rem;
}

.info-section h2,
.breathing-section h2,
.relaxation-section h2,
.nutrition-section h2,
.lifestyle-section h2,
.benefits-section h2,
.products-preview h2,
.testimonials-section h2,
.ingredients-section h2 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 2rem;
}

.info-card,
.exercise-card,
.technique-card,
.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.exercise-card:hover,
.technique-card:hover,
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.info-card h3,
.exercise-card h4,
.technique-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.benefit-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.tips-container .tip-item {
  background: var(--white);
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.tips-container .tip-item h4 {
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.product-card,
.product-card-full {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.product-card img,
.product-card-full img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info,
.product-details {
  padding: 1.5rem;
}

.product-info h4,
.product-details h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.product-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-form-section {
  background: var(--bg-light);
}

.order-form .form-control,
.contact-form-wrapper .form-control {
  border: 2px solid var(--border-color);
  padding: 0.75rem;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.order-form .form-control:focus,
.contact-form-wrapper .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(253, 185, 19, 0.25);
}

.order-form label,
.contact-form-wrapper label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.footer {
  background-color: var(--secondary-color);
}

.footer h5 {
  color: var(--primary-color);
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

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

.cookie-banner .btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}

.cookie-banner .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--secondary-color);
}

.page-header {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.page-header h1 {
  color: var(--secondary-color);
}

.about-content .value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.about-content .value-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.commitment-list {
  list-style: none;
  padding-left: 0;
}

.commitment-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.commitment-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.cta-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.products-catalog .product-card-full {
  display: flex;
  flex-direction: column;
}

.products-catalog .product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.products-catalog .product-details .btn {
  margin-top: auto;
}

.product-info .info-box {
  background: #fff3cd;
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 4px;
}

.product-info .info-box h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.contact-info .info-item {
  margin-bottom: 1.5rem;
}

.contact-info .info-item strong {
  color: var(--secondary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h5 {
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  background-color: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.checkmark {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: bold;
}

.next-step {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
}

.next-step h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.contact-reminder {
  background: var(--bg-light);
}

.contact-reminder h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.explore-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
  text-align: center;
}

.explore-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.policy-content {
  background: var(--white);
}

.policy-section h2 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.policy-section h4 {
  color: var(--secondary-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section ul li {
  margin-bottom: 0.5rem;
}

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

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

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

  .product-card img,
  .product-card-full img {
    height: 200px;
  }

  .cookie-banner .col-md-4 {
    text-align: center !important;
    margin-top: 1rem;
  }

  .thank-you-content {
    padding: 2rem 1rem;
  }

  .action-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .action-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

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

  h2 {
    font-size: 1.75rem;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
