:root {
  --main-bg-color: #E6F0FF;
  --accent-color: #00A651;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --border-color: #e0e0e0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--main-bg-color);
  color: var(--text-color);
  padding-top: 80px;
}

h1, h2, h3, h4, .navbar-brand {
  font-family: 'Cormorant', serif;
}

.navbar {
  background: linear-gradient(to right, #E6F0FF, #ffffff);
  padding: 1.2rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.search-box {
  position: relative;
  width: 250px;
}

.search-box input {
  padding-right: 40px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
}

.search-box .btn-search {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background: none;
  color: var(--accent-color);
  padding: 0.375rem 1rem;
}

.search-box input:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
  border-color: var(--accent-color);
}

.navbar-brand {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  color: var(--accent-color) !important;
  font-size: 1.5rem;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

.snipcart-checkout,
.snipcart-customer-signin {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

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

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

/* Hero Section */
.hero-section {
    position: relative;
    margin-top: -1rem;
}

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

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

.hero-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Cards */
.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(255,255,255,0.9) 30%);
    text-align: center;
}

/* Product Cards */
.product-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-content {
    padding: 1rem 0;
    text-align: center;
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-content a {
    color: var(--text-color);
    text-decoration: none;
}

.product-content a:hover {
  color: var(--accent-color);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.category-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--light-bg);
}

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

/* Quality Promise Section */
.quality-card {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: 100%;
}

.quality-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.footer {
    background: linear-gradient(to right, #E6F0FF, #ffffff);
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}

.footer-title {
  font-family: 'Cormorant', serif;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

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

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

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

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

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

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

.cookie-content p {
  margin: 0;
}

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

#acceptCookies {
  background-color: var(--accent-color);
  border: none;
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
}

#acceptCookies:hover {
  background-color: #008c44;
}
/* Contact Page Styles */
.contact-info {
    background: linear-gradient(135deg, #E6F0FF 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    width: 20px;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-form label {
    font-weight: 500;
    color: var(--text-color);
}

.hours-card, .service-card {
    background: linear-gradient(135deg, #ffffff 0%, #E6F0FF 100%);
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.service-card i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--main-bg-color);
    color: var(--accent-color);
}

.accordion-button:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 166, 81, 0.25);
}

.product-detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .product-card img {
        height: 200px;
    }
    
    .category-card img {
        height: 250px;
    }
    
    .hero-section img {
        height: 300px;
    }
    
    .product-detail-img {
        height: 300px;
    }
}
