/* Base styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
}

/* Contact page styles */
.contact-info {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info ul li {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.contact-form-section .card {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-section .form-control {
    border-radius: 10px;
    border: 2px solid #eee;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus {
    border-color: #2c7a2c;
    box-shadow: 0 0 0 0.2rem rgba(44,122,44,0.1);
}

.contact-form-section .btn-success {
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-form-section .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44,122,44,0.2);
}

.faq-section .accordion-button {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    padding: 1.2rem;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #2c7a2c;
    background-color: rgba(44,122,44,0.05);
}

.faq-section .accordion-button:focus {
    border-color: #2c7a2c;
    box-shadow: 0 0 0 0.2rem rgba(44,122,44,0.1);
}

.faq-section .accordion-body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    padding: 1.2rem;
}

/* Header styles */
.site-header {
    border-bottom: 1px solid #eee;
    background-color: #fff;
    z-index: 1030;
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c7a2c !important;
    letter-spacing: -0.5px;
}

.nav-link {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: #333 !important;
    padding: 0.75rem 1.25rem !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    text-align: center;
}

.nav-link:hover {
    color: #2c7a2c !important;
}

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

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

.search-input {
    border-radius: 20px 0 0 20px;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    font-family: 'Nunito', sans-serif;
}

.search-input:focus {
    box-shadow: none;
    border-color: #2c7a2c;
}

.btn-outline-success {
    border-radius: 0 20px 20px 0;
    border: 1px solid #ddd;
    border-left: none;
    color: #2c7a2c;
}

.btn-outline-success:hover {
    background-color: #2c7a2c;
    border-color: #2c7a2c;
    color: white;
}

/* Breadcrumb styles */
.breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item a {
    color: #2c7a2c;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

/* Product styles */
.price-box {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: #2c7a2c;
}

.product-features {
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

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

.product-features li:before {
    content: "✓";
    color: #2c7a2c;
    position: absolute;
    left: 0;
}

/* Cart button styles */
.snipcart-checkout {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.snipcart-checkout:hover {
    color: #2c7a2c;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: 0;
    background-color: #2c7a2c;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    min-width: 22px;
}

.cart-count-badge:empty {
    display: none;
}

.cookie-consent {
    z-index: 99999 !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Carousel Styles */
.hero-section {
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

#heroCarousel {
    border-radius: 0;
}

.carousel-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.95);
    transition: transform 0.6s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: auto;
    bottom: auto;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 90%;
}

.carousel-caption h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c7a2c !important;
}

.carousel-caption .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555 !important;
}

.carousel-caption .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 122, 44, 0.3);
}

.carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 122, 44, 0.4);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #2c7a2c;
    border-color: #2c7a2c;
    width: 30px;
    border-radius: 6px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: #2c7a2c;
}

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

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

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .d-flex.align-items-center {
        margin-top: 1rem;
    }
    
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        padding: 1.5rem 2rem;
    }
    
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    
    .carousel-caption .lead {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 1rem 1.5rem;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .carousel-caption .lead {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .carousel-caption .btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}
