:root {
  --primary-color: #ffc107;
  --primary-dark: #ff9800;
  --secondary-color: #333333;
  --text-color: #212529;
  --light-bg: #f8f9fa;
  --border-color: #dee2e6;
}

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

.navbar {
  transition: all 0.3s ease;
}

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

.navbar-spacer {
  height: 70px;
}

.nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.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(--secondary-color);
}

.hero-section {
  position: relative;
  margin-bottom: 0;
}

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

.hero-image-wrapper img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
}

.section {
  padding: 80px 0;
}

.page-header {
  background-color: var(--light-bg);
  padding: 60px 0 40px;
  margin-bottom: 0;
}

.page-header h1 {
  margin-bottom: 10px;
  color: var(--secondary-color);
}

h2 {
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-weight: 700;
}

h3 {
  color: var(--secondary-color);
  font-weight: 600;
}

.card {
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
  height: 250px;
  object-fit: cover;
}

.product-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
  height: 300px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-description {
  margin-bottom: 15px;
}

.product-details {
  background-color: var(--light-bg);
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.product-details p {
  margin-bottom: 8px;
}

.product-details p:last-child {
  margin-bottom: 0;
}

.product-info .btn {
  margin-top: auto;
}

.info-box {
  background-color: var(--light-bg);
  padding: 25px;
  border-radius: 8px;
  height: 100%;
}

.collection-card {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  height: 100%;
}

.routine-step {
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 15px;
  margin-bottom: 0;
}

.faq-item {
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
}

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

.list-benefits li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 80px 0;
  color: var(--secondary-color);
}

.cta-section h2 {
  color: var(--secondary-color);
}

.value-card,
.approach-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.contact-info-card,
.contact-hours-card {
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.thank-you-content {
  padding: 60px 30px;
}

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

.footer a {
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(51, 51, 51, 0.95);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  display: none;
}

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

.cookie-banner .btn-warning {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

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

.cookie-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--secondary-color);
}

.cookie-modal-body {
  padding: 20px;
}

.cookie-option {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  text-align: right;
}

@media (max-width: 768px) {
  .hero-image-wrapper {
    height: 400px;
  }

  .section {
    padding: 50px 0;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

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

@media (max-width: 576px) {
  .hero-image-wrapper {
    height: 300px;
  }
}
