:root {
    --primary-color: #00A651;
    --secondary-color: #39A9FF;
    --accent-color: #FF4C4C;
    --fresh-color: #48D4C8;
    --light-bg: #F4FAFF;
    --neutral-bg: #F9FBFC;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--neutral-bg);
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
}

.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0.75rem 0;
}

.search-input {
    min-width: 280px;
    border-radius: 50px 0 0 50px;
    border-right: none;
}

.search-input:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.search-input + .btn {
    border-radius: 0 50px 50px 0;
    border-left: none;
}

.search-input + .btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.navbar-brand {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    color: var(--primary-color) !important;
}

.nav-link {
    font-family: 'Titillium Web', sans-serif;
    transition: color 0.3s ease;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0,166,81,0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0,166,81,0.3);
}

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

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

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

.footer {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer h5, .footer h6 {
    color: var(--primary-color);
}

.footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    background-color: var(--light-bg);
}

.footer-links a {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.social-links a {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.store-info i {
    color: var(--primary-color);
}

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

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}

.contact-card {
    background: linear-gradient(135deg, var(--light-bg), var(--neutral-bg));
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-info li i {
    width: 24px;
}

.contact-info a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hours-list li:last-child {
    border-bottom: none;
}

.social-links .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-section {
    margin-top: -76px;
    padding-top: 76px;
}

.carousel-modern {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

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

.carousel-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

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

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

.carousel-caption-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.carousel-content {
    text-align: center;
    color: white;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

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

.carousel-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.carousel-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    font-weight: 400;
}

.carousel-btn {
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,166,81,0.4);
    transition: all 0.3s ease;
}

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

.carousel-indicators {
    margin-bottom: 2rem;
}

.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);
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.carousel-control-modern {
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.carousel-control-prev.carousel-control-modern {
    left: 2rem;
}

.carousel-control-next.carousel-control-modern {
    right: 2rem;
}

.carousel-control-modern:hover {
    background-color: rgba(255,255,255,0.3);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

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

@media (max-width: 768px) {
    .carousel-item {
        height: 500px;
    }
    
    .carousel-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .carousel-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-btn {
        padding: 0.6rem 2rem;
        font-size: 1rem;
    }
    
    .carousel-control-modern {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev.carousel-control-modern {
        left: 1rem;
    }
    
    .carousel-control-next.carousel-control-modern {
        right: 1rem;
    }
    
    .carousel-control-modern .carousel-control-prev-icon,
    .carousel-control-modern .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

.card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

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

.product-image-container img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .card-img-top {
        height: 250px;
    }
    
    .categories-section .card-img-top {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .card-img-top {
        height: 200px;
    }
    
    .categories-section .card-img-top {
        height: 220px;
    }
}

.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: white !important;
}

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

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

.nav-link {
    font-family: 'Titillium Web', sans-serif;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.navbar-nav .nav-item {
    margin: 0 0.25rem;
}

@media (min-width: 992px) {
    .navbar-nav .nav-item {
        margin: 0 0.5rem;
    }
}

.snipcart-checkout {
    position: relative;
}

.snipcart-checkout .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    min-width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
