/* =========================
   HERO SLIDER
========================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;       
  min-height: 500px;   
  overflow: hidden;
  padding-top: 80px;   
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.slider-item {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease;
}
.slider-item.active {
  opacity: 1;
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
}

.hero-content p {
  font-size: 20px;
  margin-top: 15px;
  color: #f1f1f1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   HERO BUTTON
========================= */
.btn-hero {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 35px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #f5537b, #F43866);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  text-decoration: none;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, #F43866, #f5537b);
  color: #000;
}

/* =========================
   NAVIGATION ARROWS
========================= */
.slider-nav span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  user-select: none;
}
.slider-nav .prev { left: 20px; }
.slider-nav .next { right: 20px; }
.slider-nav span:hover { color: #F43866; }

/* =========================
   LINE INDICATORS
========================= */
.slider-lines {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.slider-lines span {
  width: 40px; height: 4px;
  background: #bbb;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
}
.slider-lines span.active {
  background: #F43866;
  width: 50px;
}

/* =========================
   RESPONSIVE HERO CONTENT
========================= */

/* Tablet */
@media (max-width: 992px) {
  .hero-slider {
    height: 70vh;
    min-height: 400px;
  }
  .hero-content {
    top: 48%;
    transform: translate(-50%, -48%);
    width: 80%;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
    max-width: 500px;
  }
  .btn-hero {
    font-size: 16px;
    padding: 10px 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-slider {
    height: 55vh;
    min-height: 300px;
    padding-top: 60px;
  }
  .hero-content {
    top: 45%; 
    transform: translate(-50%, -45%);
    width: 90%;
  }
  .hero-content h1 {
    font-size: 20px;
    line-height: 1.3;
    word-break: break-word;
  }
  .hero-content p {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 10px;
    max-width: 300px;
  }
  .btn-hero {
    font-size: 13px;
    padding: 6px 20px;
    margin-top: 15px;
  }
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translate(-50%, -40%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}


/* About Section */
.about-section {
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

/* Heading */
.about-heading .small-tag {
    color: #F43866;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 14px;
}

.about-heading h2.theme-color {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #F43866;
}

/* Image Column */
.about-image {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Image Hover */
.about-image:hover img {
    transform: scale(1.1);
}
.about-image:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Text Column */
.about-content {
    padding: 20px 30px;
}

.about-content.black-bg {
    background: #000; /* Black background */
    color: #fff;      /* White text */
    border-radius: 12px;
    padding: 30px 25px;
}

.about-content .small-heading {
    font-size: 22px;
    color: #F43866;  /* Heading color */
    margin-bottom: 15px;
    font-weight: 600;
}

/* Paragraphs */
.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;  /* White text */
    margin-bottom: 15px;
}

/* Button */
.btn-about {
    display: inline-block;
    padding: 12px 35px;
    background: #F43866;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.4s ease;
    text-decoration: none;
}
.btn-about:hover {
    background: #e22d5b;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .about-section { padding: 60px 20px; }
    .about-heading h2.theme-color { font-size: 28px; }
    .about-content .small-heading { font-size: 20px; }
    .about-content p { font-size: 15px; }
    .btn-about { font-size: 14px; padding: 10px 28px; }
}

@media (max-width: 576px) {
    .about-section { padding: 50px 15px; }
    .about-heading h2.theme-color { font-size: 22px; }
    .about-content .small-heading { font-size: 18px; }
    .about-content p { font-size: 14px; }
    .btn-about { font-size: 14px; padding: 8px 25px; }
}

/* =========================
   PREMIUM PRODUCTS SECTION
========================= */
.premium-products {
  background: #f9fbfd;
  font-family: 'Poppins', sans-serif;
  padding: 60px 0;
  position: relative;
}

.small-tag-products {
  font-size: 14px;
  text-transform: uppercase;
  color: #777;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.theme-color-products {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
}

/* Slider wrapper */
.premium-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.premium-slider {
  display: flex;
  transition: transform 0.6s ease;
}

/* Product cards */
.product-card {
  flex: 0 0 33.333%;
  padding: 15px;
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
}

.product-card:hover .overlay {
  opacity: 1;
}

.product-card .overlay h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.product-card .overlay p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* Overlay button */
.btn-overlay {
  display: inline-block;
  background: #F43866;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-overlay:hover {
  background: #c51d4c;
  transform: translateY(-2px);
  color: #000;
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%; /* ✅ perfect circle */
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 10;
  transition: 0.3s;
  color: #F43866;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #F43866;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

/* Indicators */
.slider-indicators {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.slider-indicators span {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: 0.3s;
}

.slider-indicators span:hover {
  background: #888;
}

.slider-indicators .active {
  background: #F43866;
  transform: scale(1.2);
}

/* See More button */
.btn-products-unique {
  display: inline-block;
  padding: 12px 28px;
  background: #F43866;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.btn-products-unique:hover {
  background: #c51d4c;
  transform: translateY(-2px);
}

/* ✅ Responsive */
@media (max-width: 991px) {
  .product-card { flex: 0 0 50%; }
  .product-card img { height: 220px; }
}

@media (max-width: 576px) {
  .product-card { flex: 0 0 100%; }
  .product-card img { height: 200px; }
}
