:root {
    --olive: #808000;
    --dark-green: #006400;
    --sand: #F5F5DC;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: var(--sand);
    padding-top: 70px;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1030;
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--olive);
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.75rem 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.nav-link:hover {
    color: var(--olive);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--olive);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
    left: 10%;
}

.search-input {
    border-radius: 20px;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    width: 200px;
    transition: all 0.3s ease;
}

.search-input:focus {
    width: 250px;
    border-color: var(--olive);
    box-shadow: 0 0 0 0.2rem rgba(128, 128, 0, 0.15);
}

.btn-search {
    background: none;
    border: none;
    color: var(--olive);
    padding: 0.5rem;
    margin-left: -40px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-buttons .btn-link {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    min-width: 20px;
    text-align: center;
}

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

.btn-olive {
    background-color: var(--olive);
    color: #fff;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-olive:hover {
    background-color: var(--dark-green);
    color: #fff;
}

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

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

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

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

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.bg-olive {
    background-color: var(--olive) !important;
}

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

.footer-title {
    color: var(--olive);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-description {
    line-height: 1.6;
    color: #555;
}

.footer h5 {
    color: var(--olive);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

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

.footer a:hover {
    color: var(--olive);
}

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

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

.company-info address {
    font-style: normal;
    line-height: 1.8;
}

.company-info i {
    color: var(--olive);
    width: 20px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-text {
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--olive);
    text-decoration: underline;
}
.contact-info {
    background: linear-gradient(135deg, var(--sand), #fff);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

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

.business-hours-section .card {
    background: linear-gradient(135deg, #fff, var(--sand));
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.business-hours-section .list-group-item {
    background: transparent;
    border-color: rgba(128,128,0,0.2);
    color: #333;
    font-size: 1.1rem;
}

.faq-section .accordion-button {
    background: linear-gradient(135deg, var(--sand), #fff);
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--olive);
    background: linear-gradient(135deg, var(--sand), #fff);
}

.faq-section .accordion-body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}

.carousel {
    position: relative;
}

.carousel-inner {
    border-radius: 0;
}

.carousel-item {
    position: relative;
    height: 500px;
    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: center;
    z-index: 10;
}

.carousel-caption h1,
.carousel-caption h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.carousel-caption p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-size: 1.2rem;
}

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

.carousel-caption.text-dark h1,
.carousel-caption.text-dark h2 {
    text-shadow: none;
    color: #333;
}

.carousel-caption.text-dark p {
    text-shadow: none;
    color: #555;
}

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

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

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

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    z-index: 20;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.carousel-indicators button:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

.carousel-indicators button.active {
    background-color: #fff;
    opacity: 1;
    width: 14px;
    height: 14px;
    border-width: 2px;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .carousel-item {
        height: 350px;
    }
    
    .carousel-caption {
        padding: 2rem 1rem;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicators button.active {
        width: 12px;
        height: 12px;
    }
}
