* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  color: #2c3e50;
  min-height: 100vh;
  overflow-x: hidden;
  touch-action: pan-y;
  line-height: 1.6;
}

nav {
  height: 80px;
  width: 100%;
  background: linear-gradient(135deg, #1f493d 0%, #2d6a5a 25%, #336659 50%, #4a7c59 75%, #5a8c69 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(31, 73, 61, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
  height: 60px;
  background: linear-gradient(135deg, #1f493d 0%, #2d6a5a 50%, #336659 100%);
  box-shadow: 0 4px 20px rgba(31, 73, 61, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.logo img {
  width: 80px;
  transition: all 0.3s ease;
  animation: logoFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  justify-content: center;
}
.logo-text {
  font-size: 1.5rem;
  margin-left: 20px;
  color: #ffffff;
  font-weight: 70;
  transition: all 0.3s ease;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

nav.scrolled .logo img {
  width: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li {
  list-style: none;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links li:hover {
  color: #1f493d;
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-links li::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, #8BC34A, #CDDC39);
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.cart-icon {
  position: relative;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cart-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
  border: 2px solid #ffffff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hamburger.active {
  background: rgba(76, 175, 80, 0.3);
  border-color: rgba(76, 175, 80, 0.6);
}

.hamburger.active span {
  background: #4CAF50;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.6);
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: white;
  margin: 5.9px;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hamburger:hover span {
  background: #4CAF50;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.hamburger.active span {
  background: #4CAF50;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
}
 
.main-container {
  padding-top: 80px;
  min-height: 100vh;
}

.box {
  background: #e5cdcd;
  padding: 40px 0;
  margin: 40px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-container {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-slide {
  position: absolute;
  width: 40%;
  height: 80%;
  opacity: 0.6;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  border-radius: 15px;
  overflow: hidden;
  will-change: transform, opacity, left, right;
}

.video-slide.prev {
  left: 5%;
  transform: scale(0.7) translateX(-20%);
  opacity: 0.4;
  z-index: 1;
  filter: brightness(0.7);
}

.video-slide.active {
  left: 50%;
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 3;
  width: 60%; 
  height: 100%;
  filter: brightness(1);
  box-shadow: 0 20px 40px rgba(62, 61, 61, 0.5);
}

.video-slide.next {
  right: 5%;
  transform: scale(0.7) translateX(20%);
  opacity: 0.4;
  z-index: 1;
  filter: brightness(0.7);
}

.video-slide.hidden {
  opacity: 0;
  transform: scale(0.6);
  z-index: 0;
  filter: brightness(0.5);
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

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

.prev-video-btn {
  left: 25px;
}

.next-video-btn {
  right: 25px;
}

.video-controls {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.control-btn {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.control-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.control-btn:active {
  transform: scale(0.95);
}

.video-indicators {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 25px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.video-indicator.active {
  background: #4CAF50;
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.video-indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}


@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 80vh; 
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  perspective: 1000px;
}

.video-slide.swipe-left {
  animation: swipeLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-slide.swipe-right {
  animation: swipeRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes swipeLeft {
  0% { 
    transform: translateX(-50%) scale(1); 
    opacity: 1; 
  }
  100% { 
    transform: translateX(-150%) scale(0.8); 
    opacity: 0; 
  }
}

@keyframes swipeRight {
  0% { 
    transform: translateX(-50%) scale(1); 
    opacity: 1; 
  }
  100% { 
    transform: translateX(50%) scale(0.8); 
    opacity: 0; 
  }
}

.video-slide.prev:hover,
.video-slide.next:hover {
  transform: scale(0.75);
  opacity: 0.6;
  filter: brightness(0.8);
  cursor: pointer;
}

.video-slide.active::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #4CAF50, #2196F3, #FF9800, #E91E63);
  border-radius: 17px;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

@media (max-width: 768px) {
  .video-wrapper {
    height: 70vh;
    max-height: 500px;
  }
  
  .video-slide {
    width: 70%;
    height: 85%;
  }
  
  .video-slide.active {
    width: 90%;
    height: 100%;
  }
  
  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  .prev-video-btn {
    left: 15px;
  }
  
  .next-video-btn {
    right: 15px;
  }
  
  .video-controls {
    top: 15px;
    right: 15px;
  }
  
  .control-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .video-indicators {
    bottom: 20px;
  }
  
  .video-indicator {
    width: 12px;
    height: 12px;
  }
}

.best-sellers {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.best-sellers {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  margin: 60px 20px;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.best-sellers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1f493d;
  position: relative;
  display: inline-block;
}

.section-title {
  background: linear-gradient(135deg, #1f493d 0%, #336659 50%, #2d6a5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-size: 3rem;
  margin-bottom: 60px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-title::after {
  background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 50%, #CDDC39 100%);
  height: 4px;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  width: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  background: linear-gradient(135deg, #336659 0%, #1f493d 100%);
  height: 4px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(31, 73, 61, 0.3);
}

.products-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  padding: 0 20px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(31, 73, 61, 0.8) 0%, rgba(45, 106, 90, 0.8) 100%);
  box-shadow: 0 6px 20px rgba(31, 73, 61, 0.3);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.slider-btn {
  background: linear-gradient(135deg, rgba(31, 73, 61, 0.8) 0%, rgba(45, 106, 90, 0.8) 100%);
  box-shadow: 0 6px 20px rgba(31, 73, 61, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-btn:hover {
  background: linear-gradient(135deg, rgba(31, 73, 61, 1) 0%, rgba(45, 106, 90, 1) 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(31, 73, 61, 0.4);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.product-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}

.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.3s ease;
}

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

.product-info {
  padding: 25px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.product-name {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #1f493d;
  font-weight: 700;
  line-height: 1.3;
}

.product-description {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(102, 126, 234, 0.1);
}

.action-buttons {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.buy-btn, .add-to-cart-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.buy-btn:hover, .add-to-cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.add-to-cart-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #667eea;
  border: 2px solid #667eea;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
}

.search-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: #ffffff;
  flex-wrap: wrap;
  gap: 20px;
}

.search-category {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-radius: 25px;
  margin: 60px 20px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.search-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.search-box {
  display: flex;
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.search-box input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  background: transparent;
}

.search-box button {
  padding: 15px 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.search-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.category-filter select {
  padding: 15px 25px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  min-width: 200px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-filter select:focus {
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.more-products {
  width: 100%;
  padding: 80px 20px;
  background: #f3efe8;
  text-align: center;
}

.more-products {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 30px;
  margin: 60px 20px;
  padding: 80px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.more-products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.load-more-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: white;
  cursor: pointer;
  margin-top: 30px;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.slider-btn {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 1) 0%, rgba(118, 75, 162, 1) 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.cart-content {
  background: white;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

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

.close-cart {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.close-cart:hover {
  color: #ff6b6b;
}

.cart-content h3 {
  color: #1f493d;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

.cart-items {
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
  gap: 15px;
}

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

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

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cart-item-name {
  font-weight: 600;
  color: #1f493d;
}

.cart-item-price {
  color: #666;
  font-size: 14px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-quantity button {
  width: 25px;
  height: 25px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cart-item-quantity button:hover {
  background: #1f493d;
  color: white;
  border-color: #1f493d;
}

.remove-item {
  color: #ff6b6b;
  cursor: pointer;
  font-size: 20px;
  padding: 5px;
  transition: color 0.3s ease;
}

.remove-item:hover {
  color: #ff4757;
}

.cart-total {
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  color: #1f493d;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background: #1f493d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: #2d6a5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.checkout-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.cart-empty i {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .cart-content {
    width: 95%;
    padding: 20px;
    margin: 20px;
  }
  
  .cart-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .cart-item-quantity {
    justify-content: center;
  }
  .cart-icon {
    z-index: 1002 !important;
    pointer-events: auto !important;
    position: relative !important;
  }
  .nav-links {
    pointer-events: auto !important;
  }
  .nav-links li {
    pointer-events: auto !important;
  }
}

footer {
  background: #1f493d;
  color: white;
  padding: 50px 0 20px;
}

footer {
  background: linear-gradient(135deg, #1f493d 0%, #2d6a5a 20%, #336659 40%, #4a7c59 60%, #5a8c69 80%, #6a9c79 100%);
  box-shadow: 0 -15px 50px rgba(31, 73, 61, 0.3);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 25%, #CDDC39 50%, #8BC34A 75%, #4CAF50 100%);
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 30px;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 50%, #CDDC39 100%);
  height: 3px;
  border-radius: 2px;
  width: 60px;
  box-shadow: 0 2px 10px rgba(76, 175, 80, 0.4);
}

.footer-section p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  font-size: 15px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  line-height: 1.6;
  display: inline-block;
  padding: 5px 0;
  border-radius: 8px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #4CAF50;
  background: rgba(255, 255, 255, 0.1);
  padding-left: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 22px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(139, 195, 74, 0.2) 100%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(76, 175, 80, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
  color: #4CAF50;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
  border-color: rgba(76, 175, 80, 0.6);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  background: rgba(0, 0, 0, 0.1);
  padding: 20px;
  backdrop-filter: blur(10px);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(-10px) rotate(-5deg);
  }
}

@keyframes swipeRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes swipeLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .nav-links {
    gap: 20px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: linear-gradient(135deg, #1f493d 0%, #2d6a5a 50%, #336659 100%);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    gap: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    border-left: 2px solid rgba(76, 175, 80, 0.3);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
    transform: translateX(0);
  }

  .nav-links li {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 25px;
    min-width: 160px;
    max-width: 180px;
    text-align: center;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links li:nth-child(4) { transition-delay: 0.4s; }
  .nav-links li:nth-child(5) { transition-delay: 0.5s; }

  .nav-links li:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1f493d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
  }

  .nav-links li::after {
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
    height: 4px;
    bottom: -5px;
  }

  .hamburger {
    display: flex !important;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
    position: relative;
    z-index: 1000;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hamburger:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
  }

  .hamburger.active {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.6);
  }

  .hamburger.active span {
    background: #4CAF50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.6);
  }

  .hamburger span {
    width: 24px;
    height: 3px;
    background: white;
    margin: 5.9px;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .hamburger:hover span {
    background: #4CAF50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
  }

  .hamburger.active span {
    background: #4CAF50;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .cart-icon {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
  }

  .cart-icon:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
  }

  .section-title {
    font-size: 2rem;
  }

  .video-container {
    height: 500px;
  }

  .nav-btns button, .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .search-category {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    min-width: 100%;
  }

  .category-filter select {
    width: 100%;
  }
}
.cart-content {
  position: relative; 
  padding: 30px; 
}

.cart-modal {
  display: none;
  position: fixed;
  backdrop-filter: blur(5px); 
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slider-item {
  flex: 0 0 250px;
  margin-right: 20px;
  scroll-snap-align: start;
}

.cart-flying {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  animation: flyToCart 1s ease-in-out forwards;
}

@keyframes flyToCart {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(0.8) rotate(180deg) translateY(-20px);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.1) rotate(360deg) translateY(-100px);
    opacity: 0;
  }
}

.cart-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #4CAF50;
  color: white;
  padding: 15px 25px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  font-weight: 500;
  transform: translateX(400px);
  animation: slideInNotification 0.5s ease-out forwards;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-notification::before {
  content: '✓';
  font-size: 18px;
  font-weight: bold;
}

.cart-notification.fade-out {
  animation: slideOutNotification 0.5s ease-in forwards;
}

@keyframes slideInNotification {
  0% {
    transform: translateX(400px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutNotification {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(400px);
    opacity: 0;
  }
}

.buy-btn:hover, .add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.add-to-cart-btn:active {
  transform: scale(0.95);
}

.cart-icon.pulse {
  animation: cartPulse 0.6s ease-in-out;
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.mini-cart-preview {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 20px;
  min-width: 280px;
  max-width: 320px;
  animation: slideDownPreview 0.3s ease-out;
  border: 1px solid #eee;
}

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

.mini-cart-header {
  font-weight: 600;
  color: #1f493d;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.mini-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.mini-cart-item:last-child {
  border-bottom: none;
}

.mini-cart-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

.mini-cart-name {
  font-weight: 500;
  color: #1f493d;
  font-size: 14px;
  margin-bottom: 2px;
}

.mini-cart-price {
  color: #666;
  font-size: 12px;
}

.mini-cart-more {
  text-align: center;
  color: #888;
  font-size: 12px;
  padding: 10px 0;
  font-style: italic;
}

.mini-cart-total {
  text-align: center;
  font-weight: 600;
  color: #1f493d;
  margin: 15px 0;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
}

.mini-cart-checkout {
  width: 100%;
  padding: 10px;
  background: #1f493d;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mini-cart-checkout:hover {
  background: #2d6a5a;
  transform: translateY(-1px);
}

.cart-count {
  transition: transform 0.2s ease;
}

.hero-banner {
  position: relative;
  background: linear-gradient(135deg, #1f493d 0%, #2d6a5a 25%, #336659 50%, #4a7c59 75%, #5a8c69 100%);
  padding: 120px 0 80px;
  margin-top: 80px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 60px rgba(31, 73, 61, 0.3);
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner-text {
  color: white;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.title-line {
  display: block;
}

.title-line.highlight {
  background: linear-gradient(45deg, #4CAF50, #8BC34A, #CDDC39);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 4rem;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.banner-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.banner-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 25px;
  border-radius: 25px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(76, 175, 80, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.2);
}

.feature i {
  font-size: 20px;
  color: #4CAF50;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 18px 35px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.5);
  background: linear-gradient(135deg, #45a049 0%, #7cb342 100%);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(76, 175, 80, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.2);
}

.banner-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.floating-fruits {
  position: relative;
  width: 300px;
  height: 300px;
}

.fruit-item {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
  border: 3px solid rgba(76, 175, 80, 0.3);
}

.fruit-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.fruit-item:hover {
  border-color: rgba(76, 175, 80, 0.8);
  box-shadow: 0 20px 50px rgba(76, 175, 80, 0.3);
}

.fruit-1 {
  width: 150px;
  height: 150px;
  top: 0%;
  left: 40%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.fruit-2 {
  width: 150px;
  height: 150px;
  top: -50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.fruit-3 {
  width: 150px;
  height: 150px;
  bottom: 200PX;
  left: 20%;
  animation-delay: 4s;
}

.banner-stats {
  display: flex;
  gap: 40px;
  background: rgba(255, 255, 255, 0.15);
  padding: 35px;
  border-radius: 25px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.banner-stats:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(76, 175, 80, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(76, 175, 80, 0.2);
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: #4CAF50;
  margin-bottom: 8px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.banner-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 195, 74, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(205, 220, 57, 0.1) 0%, transparent 50%);
  z-index: 1;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(-10px) rotate(-5deg);
  }
}

@media (max-width: 992px) {
  .banner-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .banner-title {
    font-size: 3rem;
  }
  
  .title-line.highlight {
    font-size: 3.5rem;
  }
  
  .banner-features {
    justify-content: center;
  }
  
  .banner-actions {
    justify-content: center;
  }
  
  .floating-fruits {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    padding: 100px 0 60px;
    min-height: 500px;
  }
  
  .banner-title {
    font-size: 2.5rem;
  }
  
  .title-line.highlight {
    font-size: 3rem;
  }
  
  .banner-subtitle {
    font-size: 1.1rem;
  }
  
  .banner-features {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  
  .feature {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 200px;
  }
  
  .banner-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 220px;
    justify-content: center;
    padding: 16px 30px;
  }
  
  .floating-fruits {
    width: 250px;
    height: 250px;
  }
  
  .banner-stats {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

.cart-modal {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

.cart-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 25px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.cart-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 25px 25px 0 0;
}

.cart-content h3 {
  color: #1f493d;
  margin-bottom: 30px;
  font-size: 28px;
  text-align: center;
  font-weight: 700;
}

.cart-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cart-total {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 25px 0;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.checkout-btn {
  background: linear-gradient(135deg, #1f493d 0%, #2d6a5a 100%);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 18px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(31, 73, 61, 0.3);
}

.checkout-btn:hover {
  background: linear-gradient(135deg, #2d6a5a 0%, #336659 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(31, 73, 61, 0.4);
}

.mini-cart-preview {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  padding: 25px;
  min-width: 300px;
  max-width: 350px;
  animation: slideDownPreview 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.mini-cart-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.mini-cart-header {
  font-weight: 700;
  color: #1f493d;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(102, 126, 234, 0.1);
  text-align: center;
  font-size: 18px;
}

.mini-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.mini-cart-item:last-child {
  border-bottom: none;
}

.mini-cart-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

.mini-cart-name {
  font-weight: 500;
  color: #1f493d;
  font-size: 14px;
  margin-bottom: 2px;
}

.mini-cart-price {
  color: #666;
  font-size: 12px;
}

.mini-cart-more {
  text-align: center;
  color: #888;
  font-size: 12px;
  padding: 10px 0;
  font-style: italic;
}

.mini-cart-total {
  text-align: center;
  font-weight: 600;
  color: #1f493d;
  margin: 15px 0;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
}

.mini-cart-checkout {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.mini-cart-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-60px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes slideDownPreview {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .best-sellers, .more-products, .search-category {
    margin: 40px 15px;
    padding: 60px 20px;
  }
  
  .product-card {
    margin-bottom: 20px;
  }
  
  .search-box {
    min-width: 100%;
    margin-bottom: 20px;
  }
  
  .category-filter select {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .best-sellers, .more-products, .search-category {
    margin: 30px 10px;
    padding: 40px 15px;
    border-radius: 20px;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .cart-content {
    padding: 25px;
    margin: 15px;
  }
  
  .mini-cart-preview {
    min-width: 280px;
    padding: 20px;
  }
}

.cart-content::-webkit-scrollbar {
  width: 8px;
}

.cart-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.cart-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
}

.cart-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.section-title::after {
  background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 50%, #CDDC39 100%);
  height: 4px;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  width: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.best-sellers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 50%, #CDDC39 100%);
}

.more-products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
}

.search-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
}

.buy-btn, .add-to-cart-btn {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.buy-btn:hover, .add-to-cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #45a049 0%, #7cb342 100%);
}

.add-to-cart-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #4CAF50;
  border: 2px solid #4CAF50;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  color: white;
  border-color: #4CAF50;
}

.load-more-btn {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  border-radius: 30px;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: white;
  cursor: pointer;
  margin-top: 40px;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
  background: linear-gradient(135deg, #45a049 0%, #7cb342 100%);
}

.slider-btn {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(139, 195, 74, 0.9) 100%);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 1) 0%, rgba(139, 195, 74, 1) 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.search-box:focus-within {
  border-color: #4CAF50;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.search-box button {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.search-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.category-filter select:focus {
  border-color: #4CAF50;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #4CAF50;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(76, 175, 80, 0.1);
}

.cart-total {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  color: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 25px 0;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.mini-cart-checkout {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.mini-cart-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.banner-text {
  animation: fadeInUp 1s ease-out;
}

.banner-visual {
  animation: fadeInRight 1s ease-out 0.3s both;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature {
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
  transition: left 0.5s ease;
}

.feature:hover::before {
  left: 100%;
}

.cta-btn {
  position: relative;
  overflow: hidden;
}

.cta-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;
}

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

.fruit-item {
  position: relative;
}

.fruit-item::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #4CAF50, #8BC34A, #CDDC39);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fruit-item:hover::after {
  opacity: 0.3;
  animation: pulse 2s infinite;
}

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

.nav-links li.active {
  background: rgba(76, 175, 80, 0.9) !important;
  color: white !important;
  border-color: rgba(76, 175, 80, 0.8) !important;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4) !important;
  transform: translateY(-2px);
}

.nav-links li.active::after {
  background: linear-gradient(90deg, #ffffff, #e8f5e8) !important;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.6) !important;
}

.nav-links.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

.nav-links::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 73, 61, 0.8);
  backdrop-filter: blur(10px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-links.active::before {
  opacity: 1;
}

.hamburger {
  position: relative;
  z-index: 1001;
}

.nav-links li {
  position: relative;
  overflow: hidden;
}

.nav-links li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-links li:hover::before {
  left: 100%;
}

html {
  scroll-behavior: smooth;
}

.nav-links li:focus {
  outline: 2px solid #4CAF50;
  outline-offset: 2px;
}

.nav-links li {
  animation: navItemFadeIn 0.5s ease-out forwards;
}

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

.footer-bottom {
  background: #1f493d;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.forgot-link {
  color: #2d6a5a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.forgot-link:hover {
  color: #1f493d;
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
  
  .nav-links {
    width: 50%;
    right: -50%;
  }
  
  .nav-links li {
    min-width: 180px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .hamburger {
    padding: 6px;
  }
  
  .hamburger div {
    width: 24px;
    margin: 4px;
  }

@media (max-width: 768px) {
  .hamburger {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }
  
  .nav-links li {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
}

.welcome-message {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 10000;
  animation: slideInRight 0.5s ease-out;
}

.welcome-content {
  background: linear-gradient(135deg, #2d6a5a 0%, #336659 100%);
  color: #ffffff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(31, 73, 61, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  max-width: 300px;
}

.welcome-content h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.welcome-content p {
  margin: 0 0 15px 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.welcome-content button {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.welcome-content button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.message {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  animation: slideDown 0.4s ease-out;
  max-width: 400px;
  width: 90%;
}

.message-content {
  background: #ffffff;
  color: #2c3e50;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #3498db;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-weight: 500;
}

.message.error .message-content {
  border-left-color: #e74c3c;
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  color: #c53030;
}

.message.success .message-content {
  border-left-color: #27ae60;
  background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
  color: #22543d;
}

.message.info .message-content {
  border-left-color: #3498db;
  background: linear-gradient(135deg, #f0f8ff 0%, #bee3f8 100%);
  color: #2c5282;
}

.message-content button {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.message-content button:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  display: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .mobile-menu-overlay {
    display: block;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1000 !important;
    background: rgba(76, 175, 80, 0.2) !important;
    border: 1px solid rgba(76, 175, 80, 0.3) !important;
    flex-direction: column !important;
    cursor: pointer !important;
    padding: 8px !important;
    border-radius: 8px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
  }
  
  .hamburger span {
    width: 24px !important;
    height: 3px !important;
    background: white !important;
    margin: 5.9px !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  }
  
  .hamburger:hover {
    background: rgba(76, 175, 80, 0.3) !important;
    border-color: rgba(76, 175, 80, 0.5) !important;
    transform: translateY(-2px) !important;
  }
  
  .hamburger.active {
    background: rgba(76, 175, 80, 0.3) !important;
    border-color: rgba(76, 175, 80, 0.6) !important;
  }
  
  .hamburger.active span {
    background: #4CAF50 !important;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.6) !important;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
  }
  
  .hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
  }
}

.cart-icon {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.cart-icon:hover {
  background: rgba(76, 175, 80, 0.3);
  border-color: rgba(76, 175, 80, 0.5);
}

@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 30px !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    z-index: auto !important;
  }

  .nav-links li {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    min-width: auto !important;
    text-align: center !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
  }

  .nav-links li:hover {
    color: #1f493d !important;
    background: rgba(255, 255, 255, 0.95) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
  }

  .nav-links li::after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #4CAF50, #8BC34A, #CDDC39) !important;
    left: 50% !important;
    bottom: -2px !important;
    transform: translateX(-50%) !important;
    transition: width 0.3s ease !important;
    border-radius: 2px !important;
  }

  .nav-links li:hover::after {
    width: 80% !important;
  }

  .hamburger {
    display: none !important;
  }

  .cart-icon {
    position: relative !important;
    cursor: pointer !important;
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 12px !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
  }

  .cart-icon:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
  }

  .logout-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    border-color: rgba(231, 76, 60, 0.3) !important;
    color: #ffffff !important;
  }

  .logout-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4) !important;
  }

  .cart-count {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4) !important;
    border: 2px solid #ffffff !important;
  }
}

.mobile-close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.mobile-close-btn.active {
  display: flex;
}

.mobile-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.mobile-close-btn i {
  color: #ffffff;
  font-size: 1.2rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100vh; 
}

.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1; 
}

.action-buttons {
  margin-bottom: 50px; 
  display: flex;
  gap: 10px;
  padding-top: 20px; 
}

.buy-btn, .add-to-cart-btn {
  flex: 1;
  text-align: center;
  padding: 12px 5px; 
  white-space: nowrap;
}

.product-price {
  margin-top: auto; 
  margin-bottom: 10px;
  text-align: center;
}

.load-more-btn {
  display: block;
  margin: 40px auto 0;
  padding: 15px 40px;
}
@media (max-width: 768px) {
  .action-buttons {
    flex-direction: column;
  }
  
  .buy-btn, .add-to-cart-btn {
    width: 100%;
  }
  
  .product-price {
    font-size: 1.3rem;
  }
}
