:root {
    --primary-green: #00A651;
    --background-ivory: #FFFFF8;
    --coral: #FF6B6B;
    --turquoise: #40E0D0;
    --yellow: #FFD700;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
}

body {
    background-color: var(--background-ivory);
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.site-header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary-green) !important;
    letter-spacing: -0.5px;
}

.search-form {
    width: 250px;
}

.search-form .form-control {
    border-radius: 20px 0 0 20px;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.search-form .btn {
    border-radius: 0 20px 20px 0;
    border: 1px solid #e0e0e0;
    border-left: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu .nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.nav-link {
    color: #333 !important;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-green) !important;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
}

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

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

.cart-button {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-button:hover {
    color: var(--primary-green);
}

.cart-button .snipcart-items-count {
    background-color: var(--primary-green);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 24px;
}

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-heading {
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: normal;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-divider {
    opacity: 0.1;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-consent {
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-consent a:hover {
    color: var(--yellow) !important;
}
/* Contact Page Styles */
.contact-info-card {
    border-left: 4px solid var(--primary-green);
    transition: transform 0.3s ease;
}

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

.contact-form-section .card {
    border: none;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
}

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

.contact-form-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 166, 81, 0.2);
}

.faq-section .accordion-button {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-green);
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-green);
}

.faq-section .accordion-body {
    padding: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Modern Carousel Styles */
.hero-section {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

#heroCarousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-inner {
    position: relative;
}

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

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

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

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    text-align: left;
    border-radius: 0 0 20px 20px;
}

.carousel-caption.text-dark {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
}

.carousel-caption.text-dark h1,
.carousel-caption.text-dark h2 {
    color: var(--text-dark);
}

.carousel-caption.text-dark .lead {
    color: var(--text-dark);
    opacity: 0.8;
}

.carousel-caption h1,
.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease;
}

.carousel-caption .lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease;
}

.carousel-caption .btn {
    animation: fadeInUp 1.2s ease;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.carousel-caption .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

.carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.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: var(--primary-green);
    border-color: var(--primary-green);
    width: 30px;
    border-radius: 6px;
}

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary-green);
    transform: translateY(-50%) scale(1.1);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.75rem;
    }
    
    .carousel-caption .lead {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
}

/* Responsive Images - Same Size */
.card-img-top,
.product-card img,
.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.category-card .card-img-top {
    height: 350px;
}

.product-card .card-img-top {
    height: 280px;
}

@media (max-width: 768px) {
    .card-img-top,
    .product-card img,
    .category-card img {
        height: 250px;
    }
    
    .category-card .card-img-top {
        height: 280px;
    }
    
    .product-card .card-img-top {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .card-img-top,
    .product-card img,
    .category-card img {
        height: 200px;
    }
    
    .category-card .card-img-top {
        height: 220px;
    }
    
    .product-card .card-img-top {
        height: 180px;
    }
}
