:root {
    --primary-green: #00A651;
    --cream-bg: #FFFDF7;
    --azure-blue: #007AFF;
    --terracotta: #E27D60;
    --lemon: #FFD700;
}

body {
    background-color: var(--cream-bg);
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
}

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

.small-text {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

.site-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1030;
}

.site-header.sticky-top {
    position: sticky;
    top: 0;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--primary-green) !important;
}

.nav-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    color: #333 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

.nav-menu-aligned {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu-aligned .nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.search-form {
    position: relative;
    width: 300px;
}

.search-form .form-control {
    border-radius: 20px;
    padding-right: 40px;
    border: 1px solid #ddd;
}

.search-form .btn {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: none;
    color: var(--primary-green);
}

.search-form .btn:hover {
    color: var(--azure-blue);
}

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

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,166,81,0.2);
}

.snipcart-checkout {
    background: none;
    border: none;
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-size: 1.1rem;
}

.snipcart-checkout:hover {
    transform: translateY(-2px);
}

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

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

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

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

.footer {
    background-color: #fff;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.footer h5 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--azure-blue);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
.hero-section {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.carousel-item {
    height: 600px;
    background-color: var(--cream-bg);
    position: relative;
}

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

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

.carousel-caption {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 253, 247, 0.95) 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-caption h1,
.carousel-caption h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #555;
}

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

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 166, 81, 0.5);
    border: 2px solid white;
    transition: all 0.3s ease;
}

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

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: 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);
}

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

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

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

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

@media (max-width: 768px) {
    .carousel-caption {
        padding: 2rem;
        max-width: 90%;
    }
    
    .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;
    }
}

.category-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 166, 81, 0.15);
}

.category-card > a,
.category-card > img {
    position: relative;
    display: block;
    overflow: hidden;
}

.category-card img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card .card-body {
    padding: 2rem;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.category-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.category-card .btn {
    align-self: flex-start;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 166, 81, 0.2);
}

.category-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.product-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 166, 81, 0.15);
}

.product-card > a {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--cream-bg);
}

.product-card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

.product-card > a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover > a::after {
    opacity: 1;
}

.product-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
}

.product-card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem 0;
    font-weight: 600;
    line-height: 1.4;
    min-height: 3.5rem;
}

.product-card h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.product-card h3 a:hover {
    color: var(--primary-green);
}

.product-card .card-body > p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0 0 1.25rem 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 166, 81, 0.2);
}

.product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
    background-color: #008a47;
}

.product-card .btn:active {
    transform: translateY(0);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::before {
    border-color: rgba(0, 166, 81, 0.2);
}

@media (max-width: 768px) {
    .product-card img {
        height: 240px;
    }
    
    .product-card .card-body {
        padding: 1.25rem;
    }
    
    .product-card h3 {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .product-card .card-body > p {
        font-size: 1.35rem;
    }
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.contact-info-section .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    background: linear-gradient(to bottom right, #fff, #f8f9fa);
}

.contact-info-section .card:hover {
    transform: translateY(-5px);
}

.contact-info-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.contact-info-section .fas {
    margin-right: 10px;
}

.contact-info-section form {
    max-width: 100%;
}

.faq-section .accordion-button {
    background: linear-gradient(to right, #fff, #f8f9fa);
    color: #333;
    font-weight: 600;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(to right, var(--primary-green), #4db375);
    color: #fff;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
