body {
    font-family: 'Raleway', sans-serif;
    background-color: #f5f2ea;
    color: #333;
    padding-top: 120px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.carousel-caption h1,
.carousel-caption .display-4,
.carousel-caption h1.display-4,
.carousel-caption h1.fw-bold,
.carousel-caption h1.text-white,
.carousel-caption .display-4.text-white,
.carousel-caption .display-4.fw-bold {
    color: #ffffff !important;
}

.carousel-caption .lead,
.carousel-caption p.lead,
.carousel-caption .lead.text-white,
.carousel-caption p.lead.text-white {
    color: #ffffff !important;
}

:root {
    --olive: #808000;
    --olive-light: #9fb300;
    --olive-dark: #666600;
    --navy: #000080;
    --navy-light: #1a1aa3;
    --navy-dark: #000066;
    --gold: #d4af37;
    --gold-light: #e6c866;
    --gold-dark: #b8941f;
    --cream: #f5f2ea;
    --cream-light: #faf8f3;
    --charcoal: #2c2c2c;
    --charcoal-light: #4a4a4a;
    --accent-coral: #d2691e;
    --accent-teal: #008b8b;
}

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

.header {
    background-color: #fff;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

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

.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--navy) 0%, var(--olive) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    background: linear-gradient(135deg, var(--olive) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.search-form .form-control {
    border-radius: 20px 0 0 20px;
    border: 2px solid var(--olive);
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.search-form .form-control:focus {
    border-color: var(--olive-dark);
    box-shadow: 0 0 0 0.2rem rgba(128, 128, 0, 0.25);
    outline: none;
}

.search-form .btn {
    border-radius: 0 20px 20px 0;
    border: 2px solid var(--olive);
    border-left: none;
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
    color: #fff;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.search-form .btn:hover {
    background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive) 100%);
    transform: scale(1.05);
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1.5rem;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--olive) 0%, var(--gold) 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

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


.btn-primary {
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(128, 128, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 128, 0, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--olive);
    color: var(--olive);
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
    color: #fff;
    border-color: var(--olive);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(128, 128, 0, 0.3);
}


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

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


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

.breadcrumb-item a {
    color: var(--olive);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

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


.snipcart-checkout,
.snipcart-customer-signin {
    background: none;
    border: none;
    padding: 0;
    color: #333;
}

.snipcart-checkout:hover,
.snipcart-customer-signin:hover {
    color: var(--olive);
}


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

.footer-main {
    background-color: #f8f9fa;
}

.footer-title {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--olive) 0%, var(--gold) 100%);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--olive);
    padding-left: 5px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--olive);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -10px;
}

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

.footer-contact {
    color: #666;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
    margin-top: 2rem;
}

.category-card,
.product-card,
.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(128, 128, 0, 0.15);
    position: relative;
}

.category-card::before,
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--olive) 0%, var(--gold) 50%, var(--olive) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover::before,
.product-card:hover::before {
    opacity: 1;
}

.category-card:hover,
.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 40px rgba(128, 128, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--olive);
}

.product-card .card-img-top {
    transition: transform 0.4s ease;
    height: 300px;
    object-fit: cover;
}

.product-card:hover .card-img-top {
    transform: scale(1.1);
}

.product-card .card-body {
    padding: 1.5rem;
    background: linear-gradient(to bottom, #ffffff 0%, var(--cream-light) 100%);
}

.product-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--navy);
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.product-card .card-text {
    color: var(--charcoal-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 3rem;
}

.category-card .card-img-top {
    height: 350px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.95);
}

.category-card:hover .card-img-top {
    transform: scale(1.08);
    filter: brightness(1);
}

.category-card .card-body {
    padding: 2rem;
    background: #fff;
}

.category-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.category-card .card-text {
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card {
    padding: 2.5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--cream-light) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(128, 128, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card a,
.service-card .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.service-card:hover {
    background: linear-gradient(135deg, var(--cream-light) 0%, #ffffff 100%);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(128, 128, 0, 0.2);
}

.service-card i {
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-title {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-title:hover {
    color: var(--olive);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--charcoal);
}

h1 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--olive) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-caption h1,
.carousel-caption .display-4,
.carousel-caption h1.display-4,
.carousel-caption h1.fw-bold,
.carousel-caption h1.text-white {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    color: #ffffff !important;
}

h2 {
    color: var(--navy);
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--olive) 0%, var(--gold) 100%);
    border-radius: 2px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.product-card .d-flex.justify-content-between {
    padding-top: 1rem;
    border-top: 2px solid rgba(128, 128, 0, 0.1);
    margin-top: 1rem;
}

.product-card .btn-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(128, 128, 0, 0.3);
}

.product-card .btn-primary:hover {
    box-shadow: 0 5px 18px rgba(128, 128, 0, 0.4);
    transform: translateY(-2px);
}

.bg-light {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 100%) !important;
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.1) 0%, rgba(128, 128, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}


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

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.contact-info i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(128, 128, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-info i:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(128, 128, 0, 0.4);
}

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

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--olive);
    box-shadow: 0 0 0 0.2rem rgba(128, 128, 0, 0.25);
    outline: none;
    background: var(--cream-light);
}

.contact-form .form-label {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.business-hours .table td {
    padding: 1rem;
    border: none;
}

.faq-section .accordion-button {
    background: linear-gradient(135deg, #fff 0%, var(--cream-light) 100%);
    border: 2px solid rgba(128, 128, 0, 0.1);
    padding: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--olive);
    background: linear-gradient(135deg, var(--cream-light) 0%, #fff 100%);
    border-color: var(--olive);
    box-shadow: 0 4px 10px rgba(128, 128, 0, 0.15);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(128, 128, 0, 0.25);
}

.faq-section .accordion-body {
    padding: 1.25rem;
    color: #666;
    line-height: 1.6;
}


.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.carousel-inner {
    border-radius: 12px;
    position: relative;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    height: 500px;
    width: 100%;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    text-align: center;
    z-index: 10;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.carousel-caption *,
.carousel-caption h1,
.carousel-caption h1.text-white,
.carousel-caption .display-4,
.carousel-caption .display-4.text-white,
.carousel-caption .fw-bold,
.carousel-caption .lead,
.carousel-caption .lead.text-white,
.carousel-caption p.lead,
.carousel-caption p {
    color: #ffffff !important;
}

.carousel-caption h1,
.carousel-caption h1.text-white,
.carousel-caption .display-4 {
    font-weight: 700 !important;
    margin-bottom: 0.75rem;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.9) !important;
    font-size: 2.5rem;
    line-height: 1.2;
}

.carousel-caption .lead,
.carousel-caption .lead.text-white,
.carousel-caption p.lead {
    font-size: 1.15rem;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1.4;
}


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

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    filter: invert(1) brightness(0.2);
}


.carousel-indicators {
    margin-bottom: 20px;
    gap: 8px;
    z-index: 15;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.9);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.carousel-indicators [data-bs-target]:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-indicators .active {
    background-color: var(--olive);
    border-color: var(--olive);
    width: 30px;
    border-radius: 6px;
}


.navbar-sticky {
    background-color: #fff;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.navbar {
    min-height: auto;
}


.nav-menu-equal {
    display: flex !important;
    width: 100% !important;
    justify-content: space-around !important;
    align-items: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu-equal .nav-item {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: center !important;
    margin: 0 !important;
}

.nav-menu-equal .nav-link {
    width: 100% !important;
    padding: 0.5rem 0.5rem !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 40px !important;
    height: 100% !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
}

.nav-menu-equal .nav-link:hover {
    background-color: rgba(128, 128, 0, 0.1) !important;
    transform: translateY(-2px) !important;
    color: var(--olive) !important;
}


.snipcart-checkout {
    background: none !important;
    border: none !important;
    padding: 0.5rem 1rem !important;
    color: #333 !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.snipcart-checkout:hover {
    color: var(--olive) !important;
}

.snipcart-checkout i {
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--olive) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.snipcart-checkout:hover i {
    transform: scale(1.2);
}

.snipcart-items-count {
    position: static !important;
    transform: none !important;
    background: transparent !important;
    color: inherit !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: auto !important;
    height: auto !important;
}

.snipcart-total-price {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}


.hero-section {
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 2rem 1rem;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
        color: #ffffff !important;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.8);
    }
    
    .carousel-caption .lead {
        font-size: 0.95rem;
        color: #ffffff !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 1), 0 0 15px rgba(0, 0, 0, 0.7);
        margin-bottom: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .nav-menu-equal {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .nav-menu-equal .nav-item {
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .nav-menu-equal .nav-link {
        padding: 0.75rem 1rem !important;
        white-space: normal !important;
    }
    
    .search-form {
        display: none !important;
    }
    
    .navbar {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .navbar-sticky {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    
    .nav-menu-equal .nav-link {
        padding: 0.5rem 1rem !important;
        min-height: 36px !important;
        font-size: 0.85rem !important;
    }
    
    body {
        padding-top: 100px !important;
    }
    
    .header-top {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
}
