:root {
    --primary-color: #8db5aa;
    --secondary-color: #e6d5c3;
    --background-color: #f8f5f2;
    --text-color: #4a4a4a;
    --footer-bg: #f8f5f2;
    --footer-text: #4a4a4a;
    --gradient-primary: linear-gradient(135deg, #8db5aa 0%, #a7c7be 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

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

.navbar {
    background-color: var(--background-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1rem 0;
    z-index: 1030;
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
    width: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}

.nav-item .nav-link {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.nav-link {
    font-family: 'Nunito', sans-serif;
    color: var(--text-color) !important;
    font-weight: 400;
    padding: 0.75rem 1.25rem !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

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

.search-input {
    border-radius: 20px 0 0 20px;
    border: 1px solid var(--secondary-color);
    padding: 0.5rem 1rem;
}

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

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.snipcart-checkout {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: auto;
}

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

.snipcart-checkout .snipcart-total-price {
    display: none;
}

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

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

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

.footer {
    background-color: var(--footer-bg);
    padding: 4rem 0 2rem;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}

.contact-section .card {
    border: none;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.business-hours-section .card {
    border: none;
    box-shadow: var(--shadow-sm);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

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

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(141, 181, 170, 0.25);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(141, 181, 170, 0.25);
}

.footer-heading {
    font-family: 'Montserrat Alternates', sans-serif;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer p {
    color: var(--footer-text);
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--text-color);
    transform: translateY(-1px);
}

.cookie-consent-banner {
    border-top: 1px solid var(--secondary-color);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-consent-banner p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

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

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 40%;
    overflow: hidden;
}

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

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

.carousel-item:not(.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(141, 181, 170, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.carousel-inner {
    position: relative;
}

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

.carousel-content {
    max-width: 800px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-title {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.carousel-text {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.btn-carousel {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(141, 181, 170, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-carousel:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(141, 181, 170, 0.6);
    color: white;
}

.btn-carousel:active {
    transform: translateY(-1px) scale(1.02);
}

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

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

.carousel-indicators button:hover {
    background-color: rgba(141, 181, 170, 0.7);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(141, 181, 170, 0.4);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    filter: invert(0.5);
    transition: filter 0.3s ease;
}

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

@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-item:not(.active) .carousel-content * {
    animation: none;
}

@media (max-width: 768px) {
    .carousel-image-wrapper {
        padding-bottom: 60%;
    }
    
    .carousel-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .carousel-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .carousel-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-carousel {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        opacity: 0.7;
    }
    
    .carousel-control-prev {
        left: 1rem;
    }
    
    .carousel-control-next {
        right: 1rem;
    }
    
    .carousel-indicators {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .carousel-image-wrapper {
        padding-bottom: 70%;
    }
    
    .carousel-content {
        padding: 1rem;
    }
    
    .carousel-title {
        font-size: 1.5rem;
    }
    
    .carousel-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start !important;
        width: 100%;
    }
    
    .nav-item {
        flex: none;
        width: 100%;
        justify-content: flex-start;
    }
    
    .nav-item .nav-link {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        padding: 0.75rem 1rem !important;
    }
    
    body {
        padding-top: 70px;
    }
}

@media (min-width: 992px) {
    .navbar-nav {
        justify-content: center;
    }
}
