

:root {
  --primary-color: #2E8B57; 
  --secondary-color: #1E3A8A; 
  --accent-color: #FF6B6B; 
  --gold-color: #FFD700; 
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --gray-light: #e9ecef;
  --font-family: 'Poppins', sans-serif; 
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

.btn {
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.card {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}

.product-card {
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card .card-body {
  padding: 1rem;
}

.product-card .btn {
  background: var(--accent-color);
  border: none;
  color: white;
}

.product-card .btn:hover {
  background: var(--gold-color);
  color: var(--dark-color);
}

.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero .btn {
  background: var(--accent-color);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

.hero .btn:hover {
  background: var(--gold-color);
  color: var(--dark-color);
}

.navbar {
  background: white;
  box-shadow: var(--box-shadow);
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  color: var(--dark-color);
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

footer a {
  color: var(--accent-color);
}

footer a:hover {
  color: var(--gold-color);
}

.accordion-button {
  background: var(--light-color);
  color: var(--dark-color);
  border: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background: var(--gray-light);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-option {
  display: block;
  margin: 0.5rem 0;
  padding: 0.5rem;
  background: var(--light-color);
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background 0.3s ease;
}

.quiz-option:hover {
  background: var(--primary-color);
  color: white;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 1rem;
}

.cart-total {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-color);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .product-card {
    margin-bottom: 1rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .cart-item {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-color);
  color: white;
  padding: 1rem;
  z-index: 99999;
  display: none;
  animation: slideUp 0.5s ease;
}

.cookie-consent.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-consent .btn {
  margin-left: 0.5rem;
}

.timeline {
  overflow-x: auto;
  white-space: nowrap;
  padding: 1rem;
}

.timeline-item {
  display: inline-block;
  width: 300px;
  margin-right: 1rem;
  padding: 1rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
  width: 300px;
  height: 300px;
}

.cursor-blob {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.1s ease;
}