* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.5;
}

/* ========== HERO SECTION ========== */
.hero {
  background: url('assets/hero.jpg') center/cover no-repeat;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.brand {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  font-family: 'Georgia', serif;
  z-index: 1000;
}
#cartIcon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 1.5rem;
  color: white;
}
#cartBadge {
  background: crimson;
  color: white;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 0.8rem;
  margin-left: 5px;
  display: none;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.btn {
  background: #bfa56a;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover {
  opacity: 0.9;
}

/* ========== SWIPER DOTS BOTTOM FIX ========== */
.hero .swiper-pagination {
  position: absolute !important;
  bottom: 20px !important;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  margin: 0 4px;
}
.hero .swiper-pagination-bullet-active {
  background: #bfa56a;
  opacity: 1;
}

/* ========== COLLECTION CARDS ========== */
.collections {
  padding: 2rem;
  text-align: center;
}
.cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.card {
  width: 200px;
  text-align: center;
}
.card img {
  width: 100%;
  border-radius: 8px;
}
.card h3 {
  margin: 0.5rem 0;
}

/* ========== PRODUCT GRID ========== */
.products {
  padding: 2rem;
  background: #f7f7f7;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.product {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}
.product:hover {
  transform: scale(1.03);
}
.product img {
  width: 100%;
  border-radius: 6px;
}
.product h4 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}
.product p {
  color: #bfa56a;
  font-weight: bold;
}
.product del {
  color: #888;
  font-size: 0.9rem;
  margin-right: 5px;
}
.product .btn {
  margin-top: 0.5rem;
}
#sale h2::after {
  content: " 🔥";
}

/* ========== TESTIMONIAL ========== */
.testimonial {
  padding: 2rem;
  text-align: center;
  font-style: italic;
}
.testimonial footer {
  font-size: 1.5rem;
  color: #bfa56a;
}

/* ========== CONTACT FORM ========== */
.contact-form {
  padding: 2rem;
  background: #fff;
  text-align: center;
}
.contact-form form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
#formStatus {
  margin-top: 1rem;
  color: green;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 1.5rem;
  text-align: center;
}
.site-footer a {
  color: #ccc;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
  z-index: 1000;
}
.whatsapp-button:hover {
  background: #1da851;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .brand {
    font-size: 1.4rem;
    top: 15px;
    left: 15px;
  }
}
