:root {
    --primary-bg: #F5F8FF;
    --accent-green: #00A651;
    --accent-blue: #39A9FF;
    --accent-red: #FF4C4C;
    --frost-white: #F7FAFC;
    --ice-blue: #E8F4FF;
}
:root {
    --primary-bg: #F5F8FF;
    --accent-green: #00A651;
    --accent-blue: #39A9FF;
    --accent-red: #FF4C4C;
    --frost-white: #F7FAFC;
    --ice-blue: #E8F4FF;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--primary-bg);
    color: #2D3748;
}

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

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--accent-green);
    font-size: 1.5rem;
}

.search-form {
    max-width: 400px;
    width: 100%;
}

.search-input {
    border-radius: 20px 0 0 20px;
    border: 1px solid #E2E8F0;
    padding-left: 1.25rem;
}

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

.search-form .btn {
    border-radius: 0 20px 20px 0;
    border: 1px solid #E2E8F0;
    border-left: none;
    color: var(--accent-green);
}

.search-form .btn:hover {
    background-color: var(--accent-green);
    color: white;
}

.navbar {
    background: linear-gradient(to right, #F7FAFC, #F5F8FF) !important;
}

.navbar-brand {
    font-family: 'Montserrat Alternates', sans-serif;
    transition: transform 0.2s;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.footer-custom {
    background: linear-gradient(to bottom, var(--frost-white), white);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-custom h5, .footer-custom h6 {
    color: #2D3748;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-custom .text-muted {
    color: #4A5568 !important;
}

.footer-custom a.text-muted:hover {
    color: var(--accent-green) !important;
    text-decoration: none;
}

.contact-info i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--frost-white), var(--ice-blue));
    border-radius: 50%;
    color: var(--accent-green);
}

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

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

.hours-section {
    background: linear-gradient(135deg, var(--frost-white) 0%, var(--ice-blue) 100%);
}

.accordion-button:not(.collapsed) {
    background-color: var(--frost-white);
    color: var(--accent-green);
}

.accordion-button:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 0.25rem rgba(0, 166, 81, 0.25);
}

.btn-primary {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.2);
}

.snipcart-checkout,
.snipcart-customer-signin {
    border: none;
    background: none;
    padding: 0.5rem;
    transition: transform 0.2s;
}

.snipcart-checkout:hover,
.snipcart-customer-signin:hover {
    transform: scale(1.1);
}

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

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

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

body {
    padding-top: 0;
}

.hero-section {
    margin-top: 0;
    position: relative;
}

.carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.carousel-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.carousel-caption h1,
.carousel-caption h2 {
    color: var(--accent-green);
    text-shadow: none;
}

.carousel-caption p {
    color: #4A5568;
    text-shadow: none;
}

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

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

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

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: var(--accent-green);
}

.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 slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.4s both;
}

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

.navbar-nav {
    gap: 0.25rem;
    align-items: center;
}

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

.navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    min-height: 40px;
}

.navbar-nav .nav-link:hover {
    background-color: var(--ice-blue);
    color: var(--accent-green);
    transform: translateY(-2px);
}

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

.payment-methods {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-methods:hover {
    opacity: 1;
}

.payment-methods i {
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: default;
}

.payment-methods i:hover {
    transform: scale(1.1);
    opacity: 1;
}

@media (max-width: 991px) {
    .carousel-image-wrapper {
        height: 400px;
    }
    
    .carousel-content {
        padding: 2rem;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        text-align: left;
    }
    
    .navbar-nav .nav-link {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .carousel-image-wrapper {
        height: 300px;
    }
    
    .carousel-content {
        padding: 1.5rem;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption .lead {
        font-size: 1rem;
    }
    
    .payment-methods {
        justify-content: center !important;
        margin-top: 1rem;
    }
    
    .payment-methods i {
        font-size: 1.5rem !important;
    }
}
