:root {
  --eco-green: #2E8B57;
  --eco-green-light: #3FAE6A;
  --eco-blue: #4A90E2;
  --eco-blue-light: #61B6FF;
  --eco-sand: #F8F5F0;
  --eco-sand-dark: #E8E0D5;
  --eco-terra: #E56D5D;
  --eco-lime: #8DCB76;
  --eco-dark: #2C3E50;
  --eco-text: #34495E;
  --header-height: 80px;
  --border-radius: 12px;
  --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Global Image Styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

/* Specific image styles for cards and containers */
.card img,
.category-image img,
.product-image img,
.carousel-item img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card img:hover,
.category-image img:hover,
.product-image img:hover,
.carousel-item img:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
body {
  font-family: 'Inter', sans-serif;
  color: var(--eco-text);
  line-height: 1.6;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--eco-dark);
}

/* Header Styles */
.site-header {
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 0.5rem;
  backdrop-filter: blur(10px);
}

.nav-menu .nav-item {
  flex: 1;
  text-align: center;
  margin: 0 0.25rem;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--eco-text) !important;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 0.5rem !important;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  text-decoration: none;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.nav-link:hover {
  color: var(--eco-green) !important;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.2);
  border: 1px solid rgba(46, 139, 87, 0.2);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

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

.nav-link i {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
  color: var(--eco-text);
  position: relative;
  z-index: 2;
}

.nav-link:hover i {
  color: var(--eco-green);
  transform: scale(1.1);
}

.nav-link span {
  font-size: 0.8rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.nav-link:hover span {
  color: var(--eco-green);
  font-weight: 600;
}

/* Active state for current page */
.nav-link.active {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.15) 0%, rgba(74, 144, 226, 0.15) 100%);
  color: var(--eco-green) !important;
  border: 1px solid rgba(46, 139, 87, 0.3);
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.15);
}

.nav-link.active i {
  color: var(--eco-green);
}

.nav-link.active span {
  color: var(--eco-green);
  font-weight: 600;
}

.nav-link.active::after {
  width: 60%;
}

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

.search-form .input-group {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.search-form .input-group:hover {
  box-shadow: 0 6px 20px rgba(46, 139, 87, 0.2);
  transform: translateY(-2px);
}

.search-input {
  border: 2px solid transparent;
  border-radius: 25px;
  padding: 12px 50px 12px 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--eco-text);
}

.search-input:focus {
  border-color: var(--eco-green);
  box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
  transform: scale(1.02);
  background: rgba(255, 255, 255, 1);
}

.search-input::placeholder {
  color: #9CA3AF;
  font-weight: 400;
  transition: all 0.3s ease;
}

.search-input:focus::placeholder {
  color: var(--eco-green);
  opacity: 0.7;
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  color: white;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.search-btn:hover {
  background: linear-gradient(135deg, var(--eco-green-light) 0%, var(--eco-blue-light) 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.4);
}

.search-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.search-btn i {
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-btn:hover i {
  transform: scale(1.1);
}

/* Search suggestions dropdown */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.5rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.search-suggestions.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-suggestion-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

.search-suggestion-item:hover,
.search-suggestion-item.selected {
  background: rgba(46, 139, 87, 0.1);
  color: var(--eco-green);
}

.search-suggestion-item.selected {
  background: rgba(46, 139, 87, 0.15);
  border-left: 3px solid var(--eco-green);
}

.search-suggestion-item i {
  color: var(--eco-green);
  font-size: 0.9rem;
}

.search-suggestion-text {
  font-weight: 500;
}

.search-suggestion-category {
  font-size: 0.8rem;
  color: #9CA3AF;
  margin-left: auto;
}

/* Header Actions */
.header-actions {
  gap: 0.5rem;
}

.cart-btn {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 2px solid var(--eco-green);
  color: var(--eco-green);
  background: transparent;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cart-btn:hover {
  background: var(--eco-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

/* Main Content Adjustment */
main {
  margin-top: calc(var(--header-height) + 3rem);
}

/* Hero Section */
.hero-section {
  margin-top: -1rem;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.carousel-item {
  position: relative;
  height: 500px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(1.05) contrast(1.1);
  transition: all 0.3s ease;
}

.carousel-item:hover img {
  filter: brightness(1.1) contrast(1.15);
  transform: scale(1.02);
}

.carousel-caption {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  max-width: 600px;
  margin: 0 auto;
  bottom: 50px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-caption p {
  font-size: 1.2rem;
  color: var(--eco-text);
  margin-bottom: 1.5rem;
}

/* Features Section */
.features-section {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 2rem 0;
}

.feature-card {
  padding: 2rem 1rem;
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--eco-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--eco-text);
  line-height: 1.6;
}

/* Section Headers */
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-header .lead {
  font-size: 1.2rem;
  color: var(--eco-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Categories Section */
.categories-section {
  padding: 4rem 0;
}

.category-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
}

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

.category-image {
  position: relative;
  overflow: hidden;
}

.category-image img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: brightness(1.05) contrast(1.1);
}

.category-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.15);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

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

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

.category-card .card-body {
  padding: 2rem;
}

.category-card .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--eco-dark);
  margin-bottom: 1rem;
}

.category-card .card-text {
  color: var(--eco-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.category-features {
  margin-bottom: 1rem;
}

.category-features .badge {
  font-size: 0.8rem;
  padding: 0.5rem 0.8rem;
  border-radius: 15px;
}

/* Featured Products */
.featured-products {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--eco-sand) 0%, #ffffff 100%);
  border-radius: 30px;
  margin: 2rem 0;
}

.product-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
}

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

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: brightness(1.05) contrast(1.1);
}

.product-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.15);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-rating {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.product-rating i {
  font-size: 1rem;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--eco-dark);
  margin-bottom: 0.5rem;
}

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

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

.card-text {
  color: var(--eco-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--eco-sand) 0%, #ffffff 100%);
  border-radius: var(--border-radius);
  padding: 3rem 0;
  box-shadow: var(--box-shadow);
}

.newsletter-content {
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.newsletter-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--eco-dark);
  margin-bottom: 1rem;
}

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

.newsletter-form .form-control {
  border: 2px solid var(--eco-sand-dark);
  border-radius: 25px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
  border-color: var(--eco-green);
  box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

.newsletter-form .btn {
  border-radius: 25px;
  padding: 15px 30px;
}

/* Sustainability Section */
.sustainability-section {
  padding: 4rem 0;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 2rem 0;
}

.sustainability-content {
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.sustainability-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.sustainability-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--eco-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.sustainability-section .lead {
  font-size: 1.2rem;
  color: var(--eco-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.sustainability-list {
  margin-bottom: 2rem;
}

.sustainability-list li {
  font-size: 1.1rem;
  color: var(--eco-text);
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(46, 139, 87, 0.1);
}

.sustainability-list li:hover {
  background: rgba(63, 174, 106, 0.1);
  padding-left: 1.5rem;
  border-color: rgba(46, 139, 87, 0.2);
  transform: translateX(5px);
}

.sustainability-list i {
  font-size: 1.2rem;
  color: var(--eco-green);
  margin-right: 1rem;
  min-width: 20px;
  text-align: center;
}

.eco-stats {
  background: linear-gradient(135deg, var(--eco-sand) 0%, #ffffff 100%);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  height: 100%;
  display: flex;
  align-items: center;
}

.eco-stats .row {
  width: 100%;
  margin: 0;
}

.eco-stat {
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1rem;
}

.eco-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.eco-stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
  transition: all 0.3s ease;
}

.eco-stat:hover .eco-stat-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.eco-stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--eco-green);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.eco-stat p {
  font-size: 1rem;
  color: var(--eco-text);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* Buttons */
.btn {
  border-radius: var(--border-radius);
  font-weight: 600;
  padding: 12px 24px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--eco-green);
  color: var(--eco-green);
    background: transparent;
}

.btn-outline-primary:hover {
  background: var(--eco-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.btn-outline-success {
  border: 2px solid var(--eco-green);
  color: var(--eco-green);
  background: transparent;
}

.btn-outline-success:hover {
  background: var(--eco-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--eco-dark) 0%, #34495E 100%);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--eco-green-light);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer a {
  color: #BDC3C7;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 2;
}

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

/* Contact Info Section */
.contact-info-section .card {
  background: linear-gradient(145deg, #ffffff 0%, var(--eco-sand) 100%);
  border: none;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}

.contact-info-section .card-title {
  color: var(--eco-green);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.contact-info-section .form-control {
  border: 2px solid var(--eco-sand-dark);
  border-radius: var(--border-radius);
  padding: 15px;
  transition: all 0.3s ease;
}

.contact-info-section .form-control:focus {
  border-color: var(--eco-green);
  box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

/* Accordion */
.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  color: white;
  border: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.25);
}

/* Breadcrumb */
.breadcrumb {
  background: linear-gradient(135deg, var(--eco-sand) 0%, #ffffff 100%);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.breadcrumb-item a {
  color: var(--eco-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--eco-blue);
}

/* Cart and User Icons */
.cart-icon {
  color: var(--eco-terra);
}

.user-icon {
  color: var(--eco-blue);
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 1000;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 1200px;
  margin: 0 auto;
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cookie-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
  flex-shrink: 0;
}

.cookie-message {
  color: var(--eco-text);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-message strong {
  color: var(--eco-dark);
  font-weight: 600;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--eco-text);
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.cookie-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--eco-text);
  color: var(--eco-dark);
  transform: translateY(-2px);
}

.cookie-btn-primary {
  background: linear-gradient(135deg, var(--eco-green) 0%, var(--eco-blue) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

.cookie-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: var(--eco-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cookie-close:hover {
  background: rgba(0, 0, 0, 0.2);
  color: var(--eco-dark);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-toggler {
    border: 1px solid rgba(46, 139, 87, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .navbar-toggler:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--eco-green);
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .nav-menu {
    flex-direction: column;
    max-width: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 0.5rem;
    margin: 0;
  }
  
  .nav-menu .nav-item {
    flex: none;
    width: 100%;
    margin-bottom: 0.25rem;
  }
  
  .nav-link {
    height: auto;
    padding: 1rem !important;
    flex-direction: row;
    justify-content: flex-start;
    border-radius: 8px;
    margin: 0;
  }
  
  .nav-link i {
    margin-bottom: 0;
    margin-right: 0.75rem;
    font-size: 1.2rem;
  }
  
  .nav-link span {
    font-size: 1rem;
  }
  
  .search-form {
    max-width: 100%;
    margin: 1rem 0;
  }
  
  .search-form .input-group {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .search-suggestions {
    position: fixed;
    top: auto;
    left: 1rem;
    right: 1rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1001;
  }
  
  .search-suggestion-item {
    padding: 1rem;
  }
  
  .header-actions {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .carousel-caption {
    padding: 1.5rem;
    bottom: 20px;
  }
  
  .carousel-caption h1 {
    font-size: 2rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .categories-section h2,
  .featured-products h2,
  .sustainability-section h2 {
    font-size: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .eco-stat h3 {
    font-size: 2rem;
  }
  
  .feature-card {
    margin-bottom: 2rem;
  }
  
  .sustainability-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .sustainability-section h2 {
    font-size: 2rem;
  }
  
  .sustainability-section .lead {
    font-size: 1.1rem;
  }
  
  .eco-stats {
    padding: 1.5rem;
  }
  
  .eco-stat {
    margin-bottom: 1rem;
  }
  
  .eco-stat h3 {
    font-size: 2rem;
  }
  
  .eco-stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .newsletter-content {
    padding: 2rem 1rem;
  }
  
  main {
    margin-top: calc(var(--header-height) + 2rem);
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 0.75rem !important;
  }
  
  .nav-link i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
  }
  
  .nav-link span {
    font-size: 0.9rem;
  }
  
  .cart-btn {
    width: 45px;
    height: 45px;
  }
  
  .nav-menu {
    padding: 0.25rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card, .category-card, .eco-stat {
  animation: fadeInUp 0.6s ease-out;
}

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

@media (max-width: 768px) {
  .cookie-consent {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cookie-text {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .cookie-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .cookie-message {
    font-size: 0.9rem;
  }
  
  .cookie-buttons {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  
  .cookie-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
}

/* Mobile Image Optimizations */
@media (max-width: 768px) {
  .carousel-item img {
    filter: brightness(1.1) contrast(1.15);
  }
  
  .category-image img {
    height: 200px;
    filter: brightness(1.1) contrast(1.15);
  }
  
  .product-image img {
    height: 180px;
    filter: brightness(1.1) contrast(1.15);
  }
  
  .card img,
  .category-image img,
  .product-image img,
  .carousel-item img {
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 576px) {
  .carousel-item img {
    filter: brightness(1.15) contrast(1.2);
  }
  
  .category-image img {
    height: 180px;
    filter: brightness(1.15) contrast(1.2);
  }
  
  .product-image img {
    height: 160px;
    filter: brightness(1.15) contrast(1.2);
  }
}

/* Image Loading and Display Improvements */
.image-container {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.image-container:hover::before {
  left: 100%;
}

.image-container img {
  position: relative;
  z-index: 1;
}

/* Lazy loading placeholder */
.lazy-image {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-image.loaded {
  opacity: 1;
}

/* Newsletter Section */
