/* Main styles */
:root {
  /* Primary Colors */
  --primary-green: #00A651;
  --primary-green-dark: #008c44;
  --primary-green-light: #00C366;
  --primary-green-pale: #E8F5E9;
  
  /* Accent Colors */
  --accent-blue: #4CC9F0;
  --accent-blue-dark: #2BA8D0;
  --accent-blue-light: #7DD8F5;
  --accent-blue-pale: #E3F7FC;
  
  --accent-coral: #FF6B6B;
  --accent-coral-light: #FF8E8E;
  --accent-coral-pale: #FFE8E8;
  
  --accent-gold: #FFB84D;
  --accent-gold-light: #FFC870;
  --accent-gold-pale: #FFF4E0;
  
  --accent-purple: #9B59B6;
  --accent-purple-light: #BB8FCE;
  --accent-purple-pale: #F4ECF7;
  
  --accent-teal: #16A085;
  --accent-teal-light: #48C9B0;
  --accent-teal-pale: #D5F4EF;
  
  /* Neutral Colors */
  --text-dark: #1a1a1a;
  --text-medium: #4a5568;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  
  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-lighter: #fafbfc;
  --bg-cream: #fefcf9;
  --bg-warm: #fffaf5;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-colored-green: 0 10px 30px rgba(0, 166, 81, 0.15);
  --shadow-colored-blue: 0 10px 30px rgba(76, 201, 240, 0.15);
  
  /* Border Radius */
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 50px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

* {
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: linear-gradient(to bottom, var(--bg-cream) 0%, var(--bg-white) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-top: 80px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 166, 81, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(76, 201, 240, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 184, 77, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Header styles */
.navbar {
  padding: 1.25rem 0;
  border-bottom: 2px solid transparent;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95)) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-blue) 50%, var(--accent-gold) 100%);
  opacity: 0.6;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
  border-bottom-color: rgba(0, 166, 81, 0.1);
}

.navbar.scrolled::after {
  opacity: 1;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
  border-radius: 2px;
  opacity: 0.3;
}

.navbar-brand:hover {
  background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--accent-blue-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-brand:hover::after {
  opacity: 0.6;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  padding: 0.75rem 1.25rem !important;
  margin: 0 0.15rem;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-align: center;
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary-green);
  background-color: rgba(0, 166, 81, 0.05);
}

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

.cart-button {
  background: none;
  border: none;
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  transition: var(--transition);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  font-weight: 500;
}

.cart-button:hover {
  color: var(--primary-green);
  background-color: rgba(0, 166, 81, 0.1);
  transform: translateY(-2px);
}

.cart-button i {
  font-size: 1.2rem;
}

.cart-button .snipcart-items-count {
  font-weight: 600;
  color: var(--primary-green);
}

.cart-button .snipcart-total-price {
  display: none;
}

/* Search form styles */
.search-form {
  position: relative;
  max-width: 320px;
}

.search-form .form-control {
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  padding-right: 3rem;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background-color: var(--bg-light);
  transition: var(--transition);
  font-size: 0.95rem;
}

.search-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
  border-color: var(--primary-green);
  background-color: var(--bg-white);
  outline: none;
}

.search-form .search-button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.search-form .search-button:hover {
  background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-md);
}

.breadcrumb {
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.12));
  padding: 0.875rem 1.25rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 166, 81, 0.1);
  margin-bottom: 2rem;
}

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

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

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.hero-section .carousel {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.hero-section .carousel-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-section .carousel-caption h1,
.hero-section .carousel-caption h2 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  font-size: 3.5rem;
}

.hero-section .carousel-caption p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: var(--transition);
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
  opacity: 1;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.hero-section .carousel-control-prev {
  left: 20px;
}

.hero-section .carousel-control-next {
  right: 20px;
}

/* Section Headers */
h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue), var(--accent-gold));
  border-radius: 2px;
}

/* Categories Section */
.categories-section {
  padding: 5rem 0;
  position: relative;
  background: linear-gradient(to bottom, var(--bg-white), var(--bg-lighter));
}

.categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue-pale), transparent);
}

.categories-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  text-align: center;
}

.category-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--bg-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 4px solid transparent;
}

.category-card:nth-child(1) {
  border-top-color: var(--primary-green);
}

.category-card:nth-child(2) {
  border-top-color: var(--accent-blue);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
  opacity: 0;
  z-index: 1;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-colored-green);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card img {
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

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

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

.category-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  position: relative;
  padding-left: 1.5rem;
}

.category-card h3::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-size: 0.8em;
}

.category-card:nth-child(2) h3::before {
  color: var(--accent-blue);
}

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

/* Featured Products Section */
.featured-products {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--accent-blue-pale) 30%, var(--bg-white) 100%);
  position: relative;
}

.featured-products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue), var(--accent-gold), var(--primary-green));
  background-size: 200% 100%;
}

.featured-products h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  text-align: center;
}

.featured-products .card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--bg-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-left: 4px solid transparent;
}

.featured-products .card:nth-child(1) {
  border-left-color: var(--primary-green);
}

.featured-products .card:nth-child(2) {
  border-left-color: var(--accent-blue);
}

.featured-products .card:nth-child(3) {
  border-left-color: var(--accent-gold);
}

.featured-products .card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue), var(--accent-gold));
  opacity: 0;
  z-index: 1;
}

.featured-products .card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-colored-green);
}

.featured-products .card:hover::after {
  opacity: 1;
}

.featured-products .card-img-top {
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
  background: var(--bg-light);
}

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

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

.featured-products .card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.featured-products .card-body h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.featured-products .card-text strong {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-bottom: 0.25rem;
}

.featured-products .card-text strong::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
  opacity: 0.3;
  border-radius: 1px;
}

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.01em;
}

.btn-success {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  color: white;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-success::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.btn-success:hover {
  background: linear-gradient(135deg, var(--primary-green-dark), var(--accent-blue-dark));
  transform: translateY(-2px);
  box-shadow: var(--shadow-colored-green);
  color: white;
  border-color: var(--primary-green-light);
}

.btn-success:hover::before {
  left: 100%;
}

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

.btn-outline-success {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-success::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  z-index: -1;
  transition: width 0.3s ease;
}

.btn-outline-success * {
  position: relative;
  z-index: 2;
}

.btn-outline-success:hover {
  color: white !important;
  border-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-colored-green);
}

.btn-outline-success:hover::before {
  width: 100%;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-green-pale) 0%, var(--accent-blue-pale) 50%, var(--accent-gold-pale) 100%);
  position: relative;
  overflow: hidden;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, var(--primary-green), var(--accent-blue), var(--accent-gold)) 1;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,166,81,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
    radial-gradient(circle at 30% 30%, var(--accent-blue-pale) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, var(--accent-gold-pale) 0%, transparent 50%);
  opacity: 0.6;
}

.newsletter-section::after {
  content: '✉';
  position: absolute;
  top: 10%;
  right: 10%;
  font-size: 120px;
  opacity: 0.08;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: rotate(-15deg);
}

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

.newsletter-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.newsletter-section p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.newsletter-section .form-control {
  border-radius: 50px;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-section .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
  outline: none;
}

/* Quality Promise Section */
.quality-promise {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-cream) 100%);
  position: relative;
}

.quality-promise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-purple-pale), transparent);
}

.quality-promise h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  text-align: center;
}

.quality-promise .col-md-4 {
  padding: 2.5rem;
  position: relative;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.quality-promise .col-md-4:nth-child(1) {
  border-top: 4px solid var(--primary-green);
  background: linear-gradient(to bottom, var(--primary-green-pale) 0%, var(--bg-white) 100%);
}

.quality-promise .col-md-4:nth-child(2) {
  border-top: 4px solid var(--accent-blue);
  background: linear-gradient(to bottom, var(--accent-blue-pale) 0%, var(--bg-white) 100%);
}

.quality-promise .col-md-4:nth-child(3) {
  border-top: 4px solid var(--accent-gold);
  background: linear-gradient(to bottom, var(--accent-gold-pale) 0%, var(--bg-white) 100%);
}

.quality-promise i {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

.quality-promise .col-md-4:nth-child(1) i {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  color: white;
}

.quality-promise .col-md-4:nth-child(2) i {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-light));
  color: white;
}

.quality-promise .col-md-4:nth-child(3) i {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: white;
}

.quality-promise h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.quality-promise p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Footer Styles */
footer {
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--primary-green), var(--accent-blue), var(--accent-gold), var(--primary-green)) 1;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--primary-green-pale) 100%);
  padding: 4rem 0 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue), var(--accent-gold), var(--primary-green));
  opacity: 0.3;
}

footer h5 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
  border-radius: 1px;
}

footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 0.5rem;
}

footer a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  opacity: 0;
  transition: var(--transition);
}

footer a:hover {
  color: var(--primary-green);
  transform: translateX(5px);
  padding-left: 1rem;
}

footer a:hover::before {
  opacity: 1;
}

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

footer address p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

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

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

footer hr {
  border-color: rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.cookie-consent {
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--primary-green), var(--accent-blue)) 1;
  background: linear-gradient(to bottom, var(--bg-white), var(--bg-lighter));
}

.cookie-consent .btn-success {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  border-color: var(--primary-green);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
}

.cookie-consent .btn-success:hover {
  background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
/* Contact Page Styles */
.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.contact-info i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-blue) 100%);
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-info i:hover {
    box-shadow: var(--shadow-colored-blue);
    border-color: var(--accent-blue-light);
}

.opening-hours .card {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border-left: 4px solid var(--primary-green);
    background: linear-gradient(to right, var(--primary-green-pale) 0%, var(--bg-white) 100%);
}

.opening-hours .card:hover {
    box-shadow: var(--shadow-colored-green);
    border-left-color: var(--accent-blue);
    background: linear-gradient(to right, var(--accent-blue-pale) 0%, var(--bg-white) 100%);
}

.faq-section .accordion-button {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    border-radius: var(--border-radius) !important;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-green);
    background: linear-gradient(135deg, var(--primary-green-pale) 0%, var(--accent-blue-pale) 100%);
    box-shadow: var(--shadow-sm);
    border-left-color: var(--primary-green);
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
    border-color: var(--primary-green);
    border-left-color: var(--accent-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section .carousel-caption h1,
  .hero-section .carousel-caption h2 {
    font-size: 2rem;
  }

  .hero-section .carousel-caption p {
    font-size: 1rem;
  }

  .hero-section .carousel-item img {
    height: 400px;
  }

  .categories-section h2,
  .featured-products h2,
  .newsletter-section h2,
  .quality-promise h2 {
    font-size: 2rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .search-form {
    max-width: 100%;
    margin: 1rem 0;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* No animations - static design only */

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-left: 2px solid var(--bg-white);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue), var(--accent-gold));
  border-radius: 6px;
  border: 2px solid var(--bg-light);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-green-dark), var(--accent-blue-dark), var(--accent-gold));
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

/* Decorative Elements */
.decorative-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-green), var(--accent-blue), transparent);
  margin: 2rem 0;
  opacity: 0.3;
}

.decorative-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-green);
  margin: 0 0.5rem;
  opacity: 0.6;
}

/* Color Accent Classes */
.text-accent-blue {
  color: var(--accent-blue);
}

.text-accent-gold {
  color: var(--accent-gold);
}

.text-accent-purple {
  color: var(--accent-purple);
}

.bg-accent-pale {
  background: var(--accent-blue-pale);
}

.border-accent-green {
  border-color: var(--primary-green) !important;
}

.border-accent-blue {
  border-color: var(--accent-blue) !important;
}
