:root {
  --primary: #2e7d32;
  --accent: #f57c00;
  --bg: #f9f9f9;
  --text: #222;
}

* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

header {
  background: var(--primary);
  color: white;
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.logo { 
  font-size: 1.8rem; 
  font-weight: bold; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  transition: all 0.3s ease;
  cursor: pointer;
}
.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}
.logo img {
  height: 45px;
  width: auto;
  border-radius: 8px;
  background: white;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: logoFloat 3s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 5px 10px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}
.nav-links a:active {
  background-color: rgba(255, 255, 255, 0.25);
}
.cart-icon {
  position: relative;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: cartPulse 2s ease-in-out infinite;
}
.cart-icon:hover {
  transform: scale(1.1) rotate(5deg);
}
@keyframes cartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.cart-icon {
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  color: var(--primary);
  background: white;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-icon:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cart-svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: white;
  font-size: 12px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  overflow: hidden;
  box-sizing: border-box;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.hamburger { 
  display: none; 
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  margin-left: 25px;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.25s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  top: 22px;
}
.hamburger.active span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.hamburger.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}
.hamburger:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/background.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  transition: background-image 1s ease-in-out;
}
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero p { font-size: 1.3rem; margin-bottom: 2rem; }
.btn {
  background: var(--accent);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  cursor: pointer;
}

section { padding: 60px 5%; max-width: 1200px; margin: 0 auto; }
h2 { text-align: center; margin-bottom: 2rem; color: var(--primary); }

/* Popular Products Section */
section[style*="background:#ffffff"] {
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

section[style*="background:#ffffff"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.03), transparent);
  animation: shimmer 3s infinite;
}

section[style*="background:#ffffff"] h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

section[style*="background:#ffffff"] h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.product-grid .card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(46, 125, 50, 0.1);
  position: relative;
}

.product-grid .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-grid .card:hover::before {
  transform: scaleX(1);
}

.product-grid .card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(46, 125, 50, 0.15);
  border-color: var(--accent);
}

.product-grid .card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  transition: transform 0.4s ease;
  padding: 10px;
  background: #fafafa;
}

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

.product-grid .card h3 {
  padding: 20px 20px 10px;
  margin: 0;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-grid .card p {
  padding: 0 20px 20px;
  margin: 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

.product-grid .card .price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary), #1b5e20);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  z-index: 2;
}

.product-grid .card .add-to-cart {
  background: linear-gradient(135deg, var(--accent), #e65100);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  position: relative;
  overflow: hidden;
}

.product-grid .card .add-to-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.product-grid .card .add-to-cart:hover::before {
  left: 100%;
}

.product-grid .card .add-to-cart:hover {
  background: linear-gradient(135deg, var(--primary), #1b5e20);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}
/* Categories Section */
section:not([style*="background"]) {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

section:not([style*="background"]) h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

section:not([style*="background"]) h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.category-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(46, 125, 50, 0.1);
  position: relative;
  cursor: pointer;
  text-align: center;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
  border-color: var(--accent);
}

.category-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  transition: transform 0.4s ease;
  padding: 15px;
  background: #fafafa;
}

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

.category-card h3 {
  padding: 15px 10px;
  margin: 0;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover h3 {
  background: linear-gradient(135deg, var(--primary), #1b5e20);
  color: white;
}

/* Card Base Styles */
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  padding: 12px;
}
.card img { 
  width: 100%; 
  height: 200px; 
  object-fit: contain; 
  background: #f8f9fa;
  padding: 10px;
  border-radius: 8px;
}
.category-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  transition: transform 0.3s ease;
}
.category-icon:hover {
  transform: scale(1.1);
}
.category-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.category-image:hover {
  transform: scale(1.1);
}
.category-card {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.category-card:active {
  transform: translateY(-2px);
}
.card h3 { margin: 10px 0; }
.card .price { color: var(--accent); font-size: 1.3rem; font-weight: bold; }

form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
input, textarea {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

footer {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 5%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e8 100%);
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}
.testimonial-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.testimonial-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
.rating {
  color: #ffc107;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
}
.testimonial-card:hover .rating {
  transform: scale(1.1);
  text-shadow: 0 2px 4px rgba(255, 193, 7, 0.5);
}

/* About Page Styling */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1b5e20 100%);
  color: white;
  text-align: center;
  padding: 100px 5%;
  margin-bottom: 60px;
}

.about-hero h2 {
  color: white !important;
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.about-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.6;
}

.story-mission-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.story-mission-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  padding: 0 20px;
}

.story-section, .mission-section {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  border: 1px solid rgba(46, 125, 50, 0.1);
}

.story-section:hover, .mission-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.12);
}

.story-section h3, .mission-section h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.story-section h3::after, .mission-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.story-section p, .mission-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.features-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 15px 20px;
  margin-bottom: 15px;
  background: rgba(46, 125, 50, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.features-list li:hover {
  background: rgba(46, 125, 50, 0.1);
  transform: translateX(5px);
}

.features-list li:last-child {
  margin-bottom: 0;
}

.features-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.4rem;
}

.stats-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 100px 20px;
  margin: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  color: var(--accent);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  display: block;
}

.stat-label {
  color: #e2e8f0;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Page Styling */
.contact-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-hero {
  text-align: center;
  margin-bottom: 60px;
}
.contact-hero h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.contact-hero p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  padding: 50px;
  margin-bottom: 60px;
  transition: transform 0.3s ease;
}
.contact-form-container:hover {
  transform: translateY(-5px);
}

#contact-form {
  display: grid;
  gap: 25px;
}
.form-group {
  position: relative;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8f9fa;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  font-style: italic;
}

.contact-submit-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #1b5e20 100%);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}
.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-info-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-info-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-info-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.contact-info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.1), transparent);
  transition: left 0.5s ease;
}
.contact-info-item:hover::before {
  left: 100%;
}
.contact-info-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.contact-info-item h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
}
.contact-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #1b5e20 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}
.contact-icon-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  border-radius: 50%;
  animation: iconGlow 2s infinite;
}
@keyframes iconGlow {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
.contact-info-item:hover .contact-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.5);
}
.contact-info-img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}
.contact-info-item p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent);
}

.success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  padding: 20px 25px;
  border-radius: 15px;
  margin-bottom: 25px;
  border: 2px solid #28a745;
  display: none;
  animation: slideIn 0.5s ease;
  font-weight: 500;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
  position: relative;
  overflow: hidden;
}
.success-message::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: #28a745;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-left: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cart Page Styling */
.cart-section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  overflow: hidden;
}
.cart-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: cartShimmer 4s infinite;
}
@keyframes cartShimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.cart-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.cart-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.1), transparent);
  animation: headerSlide 2s infinite;
}
@keyframes headerSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.cart-header h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  animation: titleGlow 2s ease-in-out infinite alternate;
  text-shadow: 0 0 10px rgba(46, 125, 50, 0.3);
}
@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(46, 125, 50, 0.3); }
  50% { text-shadow: 0 0 20px rgba(46, 125, 50, 0.6); }
}
.cart-header p {
  color: #666;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cart-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.cart-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.05), transparent);
  transition: left 0.6s ease;
}
.cart-container:hover::before {
  left: 100%;
}
.cart-empty {
  text-align: center;
  padding: 80px 40px;
  font-size: 1.3rem;
  color: #666;
  animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cart-empty a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}
.cart-empty a:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}
.cart-item {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0,0,0,0.05);
}
.cart-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.03), transparent);
  transition: left 0.5s ease;
}
.cart-item:hover::before {
  left: 100%;
}
.cart-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.cart-item-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.cart-item:hover .cart-item-name {
  color: var(--primary);
}
.cart-item-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 6px;
}
.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 125, 50, 0.08);
  border-radius: 6px;
  padding: 4px 8px;
}
.cart-item-quantity button {
  background: var(--primary);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.cart-item-quantity button:hover {
  background: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.cart-item-quantity span {
  font-weight: bold;
  color: #2c3e50;
  min-width: 40px;
  text-align: center;
  font-size: 1rem;
}
.cart-remove-btn {
  background: linear-gradient(135deg, #ff4757 0%, #e53935 100%);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.cart-remove-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.order-summary {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  position: sticky;
  top: 100px;
  transition: transform 0.3s ease;
}
.order-summary:hover {
  transform: translateY(-5px);
}
.order-summary h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}
.order-summary h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid #f0f0f0;
}
.summary-row:last-child {
  border-bottom: none;
}
.summary-label {
  color: #666;
  font-weight: 500;
}
.summary-value {
  font-weight: 600;
  color: #333;
}
.summary-delivery {
  color: var(--primary);
  font-size: 1rem;
}
.summary-total {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: bold;
  padding: 15px 0;
  margin-top: 10px;
  border-top: 2px solid #f0f0f0;
}

.check.login-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #1b5e20 100%);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.login-btn:hover::before {
  left: 100%;
}
.login-btn:hover {
  background: linear-gradient(135deg, var(--accent) 0%, #e65100 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(245, 124, 0, 0.4);
}
.checkout-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #1b5e20 100%);
  color: white;
  padding: 20px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.checkout-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.checkout-btn:hover::before {
  left: 100%;
}
.checkout-btn:hover {
  background: linear-gradient(135deg, var(--accent) 0%, #e65100 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(245, 124, 0, 0.4);
}
.checkout-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.clear-cart-btn {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
  padding: 18px 35px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  margin-top: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
  position: relative;
  overflow: hidden;
}
.clear-cart-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.clear-cart-btn:hover::before {
  left: 100%;
}
.clear-cart-btn:hover {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(220, 53, 69, 0.4);
}
.clear-cart-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.category-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: all 0.28s;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-color: #86efac;
}

.category-emoji {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.8rem;
  transition: transform 0.4s;
}

.category-card:hover .category-emoji {
  transform: scale(1.18);
}

.category-card h3 {
  margin: 16px 0 8px;
  font-size: 1.25rem;
}

.category-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Products */
.products-section {
  background: white;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.view-controls input {
  padding: 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  width: 240px;
  font-size: 15px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: all 0.28s;
}

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

.product-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-body {
  padding: 20px;
}

.product-title {
  font-size: 1.18rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-price {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  margin: 8px 0 16px;
}

.add-btn {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.add-btn:hover {
  background: #1b5e20;
}

/* Cart sidebar */
.cart-sidebar {
  position: fixed;
  right: -380px;
  top: 0;
  width: 380px;
  height: 100%;
  background: white;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  z-index: 300;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
}

.cart-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cart-header-logo span:last-child {
  color: var(--primary);
}

.close-cart {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #6b7280;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 600;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid #e0e0e0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.full-width {
  width: 100%;
}

/* Toast notifications */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #222;
  color: white;
  padding: 16px 24px;
  border-radius: 25px;
  font-weight: 500;
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 80px;
}

footer p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .nav-links { 
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--primary);
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 3rem;
    transition: 0.4s;
  }
  .nav-links.active { left: 0; }
  .hamburger { display: block; }
  .cart-icon { display: none; }
  .hero h1 { font-size: 2.2rem; }
  
  /* Testimonials Responsive */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-avatar {
    width: 60px;
    height: 60px;
  }
  
  /* About Page Responsive */
  .about-hero {
    padding: 60px 5%;
  }
  .about-hero h2 {
    font-size: 2rem;
  }
  .story-section, .mission-section {
    padding: 30px 20px;
  }
  .story-section h3, .mission-section h3 {
    font-size: 1.5rem;
  }
  .stats-section {
    padding: 60px 20px;
    margin: 40px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  
  /* Contact Page Responsive */
  .contact-section {
    padding: 60px 5%;
  }
  .contact-hero h2 {
    font-size: 2rem;
  }
  .contact-form-container {
    padding: 30px 20px;
  }
  .contact-info-section {
    padding: 30px 20px;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-info-item {
    padding: 20px 15px;
  }
  .contact-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .contact-info-img {
    width: 25px;
    height: 25px;
  }
  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  .contact-submit-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/* Login Page Styling */
.login-section {
  padding: 100px 5%;
  max-width: 500px;
  margin: 0 auto;
}
.login-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  padding: 50px;
  text-align: center;
}
.login-container h2 {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 2rem;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.login-form .form-group {
  text-align: left;
}
.login-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}
.login-form input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}
.login-form input:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e0 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.15);
}
.login-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  font-size: 0.95rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
}
.checkbox-label input[type="checkbox"] {
  margin: 0;
}
.forgot-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.forgot-link:hover {
  text-decoration: none;
}
.login-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #1b5e20 100%);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn {
  background: var(--accent);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 150px;
}

.btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}
.cart-svg {
  height: 24px;
  width: auto;
  transform: scaleX(-1);
  transition: all 0.3s ease;
}
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}
.register-link {
  text-align: center;
  margin-top: 25px;
  font-size: 0.95rem;
  color: #666;
}
.register-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}
.register-link a:hover {
  text-decoration: underline;
}

/* Login Page Responsive */
@media (max-width: 768px) {
  .login-section {
    padding: 60px 5%;
  }
  .login-container {
    padding: 30px 20px;
  }
  .login-container h2 {
    font-size: 1.5rem;
  }
  .login-form {
    gap: 15px;
  }
  .login-form input {
    padding: 12px;
    font-size: 0.95rem;
  }
  .form-options {
    font-size: 0.9rem;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .login-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--accent);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0.8;
  background-image: url('SVG/back to top.png');
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  opacity: 1;
}
.back-to-top:active {
  transform: translateY(-2px);
}

/* Cart Page Responsive */
  .cart-section {
    padding: 60px 5%;
  }
  .cart-header h2 {
    font-size: 2rem;
  }
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cart-item {
    padding: 15px 20px;
  }
  .cart-item-name {
    font-size: 1.1rem;
  }
  .order-summary {
    position: static;
    padding: 30px 20px;
  }
  .checkout-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
