/* ========== Base Styles ========== */
body {
  font-family: 'Segoe UI', sans-serif;
}

/* ========== Hero Section ========== */
.hero-section {
  background-color: #fff;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 2.8rem;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-carousel-img {
    height: 50vh;
  }

  .hero-section .col-lg-6:last-child {
    margin-top: 30px;
  }
}

.hero-carousel-img {
  height: 100vh;
  object-fit: cover;
}

/* ========== Cards & Collection ========== */
.card-img-top {
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card img {
  height: 250px;
  object-fit: cover;
}

.price-tag {
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card img {
  max-height: 200px;
  object-fit: cover;
}

/* ========== Carousel Arrow Custom Icons ========== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  width: 2.5rem;
  height: 2.5rem;
  background-color: black;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 60% 60%;
}

.carousel-control-prev-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L6.707 7l4.647 4.646a.5.5 0 0 1-.708.708l-5-5a.5.5 0 0 1 0-.708l5-5a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l5 5a.5.5 0 0 1 0 .708l-5 5a.5.5 0 0 1-.708-.708L9.293 7 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* ========== Footer ========== */
footer a {
  color: #ccc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ========== Floating WhatsApp & Call Buttons ========== */
.floating-buttons-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn img {
  width: 35px;
  height: 35px;
}

.whatsapp-btn {
  background-color: #25D366;
}

.call-btn {
  background-color: #007bff;
}

@media only screen and (max-width: 768px) {
  .floating-buttons-wrapper {
    right: 10px;
    bottom: 10px;
  }
}
