/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.hero-main {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: white;
}

.heart {
  font-size: 1.5rem;
  color: #e74c3c;
}

/* About Section */
.about {
  padding: 4rem 0;
 
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5rem;
}

.about-card {
  padding: 2rem;
  border-radius: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

.about-card.green {
  background-color: #27ae60;
  color: white;
}

.about-card.white {
  background-color: white;
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-card.red {
  background-color: #e74c3c;
  color: white;
}

/* Featured Products */
.featured-products {
  padding: 4rem 0;
  
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5rem;
}

.product-card {
  background-color: #FFB9B9;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

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

.product-badge {
  position: absolute;
  top: -10px;
  right: -45px;
  background-color: #ff0000;
  color: white;
  padding: 5px 20px;
  border-radius: 15px 15px 15px 0px;
  border: 1px solid black;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 1;
}

.product-image {
  margin-bottom: 1rem;
}

.product-image img {
  width: 150px;
  height: 150px;
  
  border-radius: 10px;
}

.product-name {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.product-price {
  margin-bottom: 1rem;
}

.old-price {
  text-decoration: line-through;
  color: #666;
  font-size: 0.9rem;
  display: block;
}

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

.add-to-cart-btn {
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
  background-color: #219a52;
}

/* Responsive Design */
@media (max-width: 768px) {

  .product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 15px 15px 15px 0px;
    border: 1px solid black;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
  }

  .hero-main {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}
