.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.categories-section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.category-overlay h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.featured-products-section {
  padding: 80px 0;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

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

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

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

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff4757;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
}

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: #667eea;
}

.product-price {
  margin-bottom: 15px;
}

.current-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

.original-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}

.blog-section {
  padding: 80px 0;
}

.blog-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: #667eea;
}

.blog-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.blog-excerpt {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonials-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-author p {
  color: #666;
  font-size: 0.9rem;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-image {
    margin-top: 30px;
  }
  
  .cta-section {
    text-align: center;
  }
  
  .cta-section .text-right {
    text-align: center;
    margin-top: 20px;
  }
}