:root {
    --primary-color: #6D9F4B;
    --hover-color: #5b8a3c;
    --bg-light: #f8f9fa;
    --text-muted: #6c757d;
    --gradient-start: #f8f9fa;
    --gradient-end: #e9ecef;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-light);
    padding-top: 70px;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
}

.nav-link:hover {
    color: var(--hover-color) !important;
    background-color: rgba(109, 159, 75, 0.1);
    border-radius: 4px;
}

.btn-outline-success {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-success:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

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

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

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.text-success {
    color: var(--primary-color) !important;
}

.contact-info-section .card {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info-section .card-body {
    padding: 2rem;
}

.contact-info-section i {
    font-size: 1.2rem;
}

.faq-section {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
}

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

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(109, 159, 75, 0.25);
}

.newsletter-form .form-control {
    border-radius: 4px 0 0 4px;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
}

.hero-section {
    margin-bottom: 4rem !important;
}

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

.hero-section .carousel-item img {
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.hero-section .carousel-caption {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin: 0 2rem;
    bottom: 2rem;
    left: 0;
    right: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .carousel-caption h1 {
    color: var(--primary-color) !important;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: none;
}

.hero-section .carousel-caption p {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.categories-section {
    margin-bottom: 4rem !important;
}

.categories-section .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.categories-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.categories-section .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.categories-section .card:hover .card-img-top {
    transform: scale(1.05);
}

.categories-section .card-body {
    padding: 2rem;
    text-align: center;
}

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

.categories-section .card-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-products {
    margin-bottom: 4rem !important;
}

.featured-products .card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.featured-products .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-products .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-products .card:hover .card-img-top {
    transform: scale(1.05);
}

.featured-products .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.featured-products .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.featured-products .card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-products .card-title a:hover {
    color: var(--hover-color);
}

.featured-products .card-text {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.featured-products .h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color)) !important;
    color: white;
    border-radius: 20px;
    margin: 2rem 0;
}

.newsletter-section h2 {
    color: white !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 10px 0 0 10px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form .btn {
    border-radius: 0 10px 10px 0;
    padding: 1rem 2rem;
    font-weight: 600;
    background: white;
    color: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.growing-guide-section {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 20px;
    margin: 2rem 0;
    padding: 3rem 0 !important;
}

.growing-guide-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.growing-guide-section .lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.growing-guide-section ul li {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.growing-guide-section ul li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.growing-guide-section .ratio {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.growing-guide-section iframe {
    border-radius: 15px;
}

section {
    margin-bottom: 3rem;
}

.container h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.newsletter-section .container h2 {
    color: white !important;
}

.container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .hero-section .carousel-item img {
        height: 300px;
    }
    
    .hero-section .carousel-caption {
        padding: 1.5rem;
        margin: 0 1rem;
        bottom: 1rem;
    }
    
    .hero-section .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .categories-section .card-img-top,
    .featured-products .card-img-top {
        height: 180px;
    }
    
    .categories-section .card-body,
    .featured-products .card-body {
        padding: 1.5rem;
    }
}

.product-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

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

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

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

.product-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.product-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.product-card .card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.product-card .card-text {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-card .h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.product-detail-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.product-detail-section img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-detail-section h1 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-detail-section .lead {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-detail-section .h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-detail-section .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.product-detail-section .card-body {
    padding: 1.5rem;
}

.product-detail-section ul li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.product-detail-section ul li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.shop-section {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.shop-section h1 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.shop-section .lead {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.blog-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.blog-section h1 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-section .lead {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.blog-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .card-img-top {
    transform: scale(1.05);
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-card .card-text {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.about-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.about-section h1 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-section .lead {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.team-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .card-img-top {
    transform: scale(1.05);
}

.team-card .card-body {
    padding: 1.5rem;
}

.team-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-card .card-text {
    color: var(--text-muted);
    font-style: italic;
}

.contact-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.contact-section h1 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section .lead {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(109, 159, 75, 0.25);
}

.contact-form .btn {
    border-radius: 10px;
    padding: 1rem 2rem;
    font-weight: 600;
}

.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    color: white;
    border-radius: 20px 20px 0 0;
    margin-top: 3rem;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer p, .footer a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
    text-decoration: none;
}

.footer .form-control {
    border: none;
    border-radius: 10px 0 0 10px;
    padding: 0.75rem 1rem;
}

.footer .btn {
    border-radius: 0 10px 10px 0;
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.footer .btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

.btn:focus, .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(109, 159, 75, 0.25);
}

@media print {
    .btn, .carousel-control-prev, .carousel-control-next {
        display: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(109, 159, 75, 0.1);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

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

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 40px;
    padding: 0.5rem 1rem !important;
    margin: 0 0.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(109, 159, 75, 0.1);
    color: var(--hover-color) !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    background-color: var(--primary-color);
    color: white !important;
}

.navbar .input-group {
    max-width: 250px;
}

.navbar .form-control {
    border-radius: 6px 0 0 6px;
    border: 1px solid #e9ecef;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.navbar .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(109, 159, 75, 0.25);
}

.navbar .btn-outline-success {
    border-radius: 0 6px 6px 0;
    border: 1px solid var(--primary-color);
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.navbar .btn-outline-success:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.snipcart-checkout {
    position: relative;
    border-radius: 6px !important;
    padding: 0.5rem 0.75rem !important;
    border: 1px solid var(--primary-color) !important;
    background: white;
    color: var(--primary-color);
    transition: all 0.3s ease;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.snipcart-checkout:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(109, 159, 75, 0.3);
}

.snipcart-items-count {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
    border: 2px solid white;
}

.snipcart-checkout:hover .snipcart-items-count {
    background-color: white;
    color: var(--primary-color);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 1rem;
}

.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem !important;
        border-radius: 6px;
        margin: 0.1rem 0;
        font-size: 0.9rem;
    }
    
    .navbar-collapse {
        flex-direction: column;
        align-items: stretch;
    }
    
    .navbar .input-group {
        max-width: 100%;
        margin: 0.5rem 0;
    }
    
    .navbar .d-flex.align-items-center {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .snipcart-checkout {
        width: auto;
        min-width: 120px;
    }
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color) !important;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--hover-color) !important;
    transform: scale(1.05);
}

.navbar-toggler {
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(109, 159, 75, 0.25);
}

.navbar-toggler:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}
