@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
  --primary-green: #00A651;
  --primary-orange: #FF6F3C;
  --primary-blue: #00BFFF;
  --bg-warm-white: #FAFAFA;
  --hover-green: #4BD27C;
  --text-dark: #2C3E50;
  --text-light: #34495E;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--bg-warm-white);
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 80px;
}

.site-header {
    background: linear-gradient(to right, var(--bg-warm-white), #fff);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem !important;
    position: relative;
    border-radius: 20px;
    margin: 0 0.25rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.nav-link:hover {
    background-color: rgba(0, 166, 81, 0.1);
    transform: translateY(-2px);
}

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

.search-form .form-control {
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    padding-right: 50px;
    border: 2px solid rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.95);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.search-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.15);
    transform: translateY(-2px);
}

.btn-search {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: none;
    color: var(--primary-green);
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    border-radius: 0 25px 25px 0;
}

.btn-search:hover {
    color: var(--hover-green);
    background-color: rgba(0, 166, 81, 0.1);
    transform: scale(1.1);
}

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

.btn-cart {
  background-color: var(--primary-green);
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  color: white;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.btn-cart:hover {
  background-color: var(--hover-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

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

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

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

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    color: var(--text-light);
}

.footer-main {
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.footer-bottom {
    background: var(--text-dark);
    color: #fff;
}

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

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-form .form-control {
    border-radius: 25px 0 0 25px;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1.25rem;
}

.footer-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 1.5rem;
    background: var(--primary-green);
    border: none;
    font-weight: 600;
}

.footer-form .btn:hover {
    background: var(--hover-green);
}

.company-info {
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.company-info p {
    margin-bottom: 0.5rem;
}

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

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

.footer .social-links a {
    font-size: 1.5rem;
    color: var(--primary-green);
}

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

.company-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
}

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

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

#cookieAccept {
    background-color: var(--primary-green);
    border: none;
    padding: 0.5rem 2rem;
    transition: background-color 0.3s ease;
}

#cookieAccept:hover {
    background-color: var(--hover-green);
}
/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--bg-warm-white), #FFF5EC);
}

.contact-info-card, .contact-form-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-info-card {
    border-left: 5px solid var(--primary-green);
}

.contact-form-card {
    border-right: 5px solid var(--primary-orange);
}

.contact-info-card h2, .contact-form-card h2 {
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

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

.contact-info-card address i {
    color: var(--primary-green);
    width: 24px;
    margin-right: 10px;
}

.contact-info-card a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-green);
}

.hours-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.hours-section h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.support-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    transition: transform 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card i {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.support-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
}

.contact-form-card .btn-primary {
    background: var(--primary-green);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-form-card .btn-primary:hover {
    background: var(--hover-green);
}

/* Modern Hero Carousel */
.hero-section {
    margin-top: -80px;
    padding-top: 80px;
}

.carousel {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel-item {
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
}

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

.carousel-caption {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel-caption h1,
.carousel-caption h2 {
    color: var(--text-dark) !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.carousel-caption p {
    color: var(--text-light) !important;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.carousel-caption .btn {
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-indicators {
    bottom: 1rem;
}

.carousel-indicators [data-bs-target] {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--primary-green);
    transform: scaleX(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.1);
}

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

/* Modern Category Cards */
.categories-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.category-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.category-card img {
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

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

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.category-content .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Modern Product Cards */
.featured-products {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

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

.product-card img {
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

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

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.product-content .btn {
    width: 100%;
    border-radius: 25px;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Modern Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--hover-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.newsletter-section .container {
    position: relative;
    z-index: 1;
}

.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

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

.newsletter-form .btn:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

/* Modern Feature Cards */
.why-choose-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

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

.feature-card i {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-item {
        height: 50vh;
        min-height: 300px;
    }
    
    .carousel-caption {
        padding: 1.5rem;
        bottom: 1rem;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .category-card img,
    .product-card img {
        height: 180px;
        object-position: center;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 40vh;
        min-height: 250px;
    }
    
    .carousel-caption {
        padding: 1rem;
        width: 95%;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .category-card img,
    .product-card img {
        height: 150px;
        object-position: center;
    }
}
