:root {
  --peach: #FFD8C2;
  --cream: #FFF4EB;
  --powder: #F7C7B2;
  --coral: #FF9F80;
  --green: #00A651;
}

body {
  font-family: 'Montserrat Alternates', sans-serif;
  background-color: var(--cream);
  padding-top: 80px;
}

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');

.navbar {
  background-color: var(--peach);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  padding: 0.75rem 0;
  font-family: 'Raleway', sans-serif;
  z-index: 1030;
}

.navbar.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.search-form {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 2px solid var(--powder);
  border-radius: 20px;
  background-color: var(--cream);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 2px rgba(255,159,128,0.2);
}

.search-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--coral);
  cursor: pointer;
}

.navbar-brand {
  font-weight: 700;
  color: var(--green) !important;
}

.nav-link {
  color: #333 !important;
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  text-align: center;
}

.nav-link:hover {
  color: var(--green) !important;
  background-color: rgba(0, 166, 81, 0.1);
  border-radius: 8px;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.nav-item {
  display: flex;
  align-items: center;
}

.cart-btn {
  background: var(--green);
  border: none;
  border-radius: 20px;
  padding: 10px 18px;
  color: white;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  min-width: 50px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 166, 81, 0.3);
}

.cart-btn:hover {
  background: #008c44;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 166, 81, 0.4);
}

.cart-btn .snipcart-items-count {
  font-size: 1rem;
  font-weight: 600;
}

.breadcrumb-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.breadcrumb {
  background: var(--cream);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--coral);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--green);
}

.footer {
  background-color: var(--peach);
  padding: 3rem 0;
  margin-top: 3rem;
}

.footer-heading {
  color: var(--green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
  color: var(--green);
}

.footer-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 244, 235, 0.95);
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
}

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

.cookie-text {
  margin-bottom: 1rem;
}

.cookie-buttons .btn {
  margin-right: 0.5rem;
}
.hero-section {
    position: relative;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.carousel {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.carousel-item {
    height: 600px;
    position: relative;
}

.carousel-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease-out;
}

.carousel-item.active .carousel-image-wrapper img {
    transform: scale(1.1);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 2rem;
}

.carousel-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.carousel-text {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    line-height: 1.6;
}

.btn-carousel {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--green);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-carousel:hover {
    background: #008c44;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.5);
    color: #ffffff;
}

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.carousel-indicators {
    margin-bottom: 2.5rem;
    z-index: 3;
    gap: 0.75rem;
}

.carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.4s ease;
    opacity: 1;
}

.carousel-indicators button:hover {
    background-color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.9);
}

.carousel-indicators button.active {
    background-color: var(--green);
    border-color: var(--green);
    width: 40px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 166, 81, 0.6);
}

.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    height: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-control-prev {
    left: 2.5rem;
}

.carousel-control-next {
    right: 2.5rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 166, 81, 0.4);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
    width: 28px;
    height: 28px;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .carousel-item {
        height: 450px;
    }
    
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-text {
        font-size: 1.1rem;
    }
    
    .btn-carousel {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        left: 1rem;
        right: 1rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

/* Categories Section */
.category-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

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

/* Product Cards */
.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.product-card .card-title a {
    color: var(--green);
    text-decoration: none;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green);
}

/* Benefits Section */
.benefit-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

/* Contact Section */
.contact-section form {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
}

.contact-section .form-control {
    border: 2px solid var(--powder);
    border-radius: 10px;
    color: #333;
    background: linear-gradient(to bottom, #fff, var(--cream));
}

.contact-section .form-control:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 0.2rem rgba(255,159,128,0.25);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--peach), var(--cream));
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info-card .card {
    background: rgba(255,255,255,0.9);
    border: none;
    transition: transform 0.3s ease;
}

.contact-info-card .card:hover {
    transform: translateY(-5px);
}

.faq-section .accordion-button {
    background: linear-gradient(to right, var(--cream), var(--peach));
    color: #333;
    font-weight: 500;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(to right, var(--peach), var(--powder));
    color: #333;
}

.faq-section .accordion-body {
    background: var(--cream);
    color: #333;
    line-height: 1.6;
}

.contact-form-section .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, var(--cream), #fff);
}

.contact-form-section .form-label {
    color: #333;
    font-weight: 500;
}

.contact-form-section .btn-success {
    background: var(--green);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,166,81,0.2);
    transition: all 0.3s ease;
}

.contact-form-section .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,166,81,0.3);
}
