:root {
    --lime: #8FD14F;
    --steel-gray: #71797E;
    --graphite: #383838;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--graphite);
    color: #fff;
    padding-top: 76px;
}

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

.navbar {
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 1030;
}

.navbar.fixed-top {
    backdrop-filter: blur(10px);
    background-color: rgba(56, 56, 56, 0.95) !important;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 1.5rem;
}

.navbar .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

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

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

.navbar .snipcart-checkout {
    font-size: 1.25rem;
    padding: 0.5rem 0.75rem !important;
    transition: all 0.3s ease;
}

.navbar .snipcart-checkout:hover {
    transform: scale(1.1);
}

.navbar .snipcart-checkout .badge {
    font-size: 0.7rem;
    padding: 0.25em 0.5em;
    min-width: 20px;
}

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

.header-search .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.header-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.header-search .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--lime);
    box-shadow: 0 0 0 0.25rem rgba(143, 209, 79, 0.25);
    color: #fff;
}

.breadcrumb {
    background: transparent;
}

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

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

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--steel-gray);
}

.btn-link {
    text-decoration: none;
}

.btn-link:hover {
    color: var(--lime) !important;
}

/* Footer Styles */
footer {
    border-top: 1px solid var(--steel-gray);
}

footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--lime) !important;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Consent */
.cookie-consent {
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.btn-lime {
    background-color: var(--lime);
    border: none;
    color: var(--graphite);
    font-weight: 500;
}

.btn-lime:hover {
    background-color: #7ac33d;
    color: var(--graphite);
}

.text-lime {
    color: var(--lime);
    text-decoration: underline;
}

.text-lime:hover {
    color: #7ac33d;
}

.border-lime {
    border: 1px solid var(--lime) !important;
}

.btn-outline-lime {
    color: var(--lime);
    border: 1px solid var(--lime);
    background: transparent;
}

.btn-outline-lime:hover {
    background: var(--lime);
    color: var(--graphite);
}
/* Contact Page Styles */
.contact-info {
    border-left: 4px solid var(--lime);
}

.accordion-button:not(.collapsed) {
    background-color: var(--lime) !important;
    color: var(--graphite) !important;
}

.accordion-button:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 0.25rem rgba(143, 209, 79, 0.25);
}

.accordion-item {
    border: 1px solid var(--steel-gray);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: none;
}

/* Modern Carousel Styles */
.hero-section {
    margin-top: -76px;
    position: relative;
}

#heroCarousel {
    position: relative;
    overflow: hidden;
}

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

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

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.85);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(56, 56, 56, 0.85);
    backdrop-filter: blur(10px);
    padding: 3rem 4rem;
    border-radius: 20px;
    border: 2px solid rgba(143, 209, 79, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

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

.carousel-caption p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(143, 209, 79, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(143, 209, 79, 0.5);
    transition: all 0.3s ease;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(143, 209, 79, 0.4);
    border-color: var(--lime);
    transform: translateY(-50%) scale(1.1);
}

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

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: 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: var(--lime);
    border-color: var(--lime);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        padding: 2rem;
        max-width: 90%;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

/* Responsive Images - Same Size */
.card-img-top,
.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

/* Product card images */
.card.bg-dark .card-img-top {
    height: 300px;
}

/* Category card images */
.categories-section .card-img-top {
    height: 300px;
}

/* Team member images */
.team-section .card-img-top {
    height: 300px;
}

/* Featured products images */
.featured-products .card-img-top {
    height: 300px;
}

/* Products section images */
.products-section .card-img-top {
    height: 300px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-img-top,
    .card img {
        height: 250px;
    }
    
    .card.bg-dark .card-img-top,
    .categories-section .card-img-top,
    .team-section .card-img-top,
    .featured-products .card-img-top,
    .products-section .card-img-top {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .card-img-top,
    .card img {
        height: 200px;
    }
    
    .card.bg-dark .card-img-top,
    .categories-section .card-img-top,
    .team-section .card-img-top,
    .featured-products .card-img-top,
    .products-section .card-img-top {
        height: 200px;
    }
}

/* Text Visibility - Ensure all text is visible on dark backgrounds */
.card.bg-dark,
.card.bg-dark * {
    color: #fff !important;
}

.card.bg-dark .card-title,
.card.bg-dark h1,
.card.bg-dark h2,
.card.bg-dark h3,
.card.bg-dark h4,
.card.bg-dark h5,
.card.bg-dark h6 {
    color: #fff !important;
}

.card.bg-dark .card-text,
.card.bg-dark p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.card.bg-dark .text-light,
.card.bg-dark a.text-light {
    color: #fff !important;
}

.card.bg-dark .h4,
.card.bg-dark .h5,
.card.bg-dark span {
    color: #fff !important;
}

.card.bg-dark a {
    color: #fff !important;
}

.card.bg-dark a:hover {
    color: var(--lime) !important;
}

/* Ensure all sections have visible text */
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
    color: #fff !important;
}

section p,
section .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Breadcrumb text */
.breadcrumb-item {
    color: var(--steel-gray) !important;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Form controls */
.form-control {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.form-label {
    color: #fff !important;
}

/* List items */
.list-group-item.bg-dark {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Alert boxes */
.alert.bg-lime {
    color: var(--graphite) !important;
}

.alert.bg-lime * {
    color: var(--graphite) !important;
}

/* Small text */
.small,
.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Ensure all text in dark cards is visible */
.card.bg-dark .text-dark {
    color: #fff !important;
}

/* Price text */
.card.bg-dark .h4.mb-0,
.card.bg-dark span.h4 {
    color: var(--lime) !important;
    font-weight: 600;
}
