body {
  background: #f8f5f1;
  font-family: 'Poppins', sans-serif;
}

/* Section */

.sec4{
  margin-bottom: 30px;
}
/* Title */
.lux-title {
  font-weight: 600;
  color: #4A0F1A;
  letter-spacing: 1px;
}

/* Card */
.lux-card {
  position: relative;
  height: 420px;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Image */
.lux-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Glass Overlay */
.lux-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,15,26,0.7), transparent);
}

/* Content */
.lux-content {
  position: absolute;
  bottom: 30px;
  left: 25px;
  z-index: 2;
  color: #fff;
}

.lux-content h4 {
  font-weight: 600;
  margin-bottom: 12px;
}

/* GOLD BUTTON */
.gold-btn {
  background: linear-gradient(135deg, #C9A227, #f5d76e);
  border: none;
  padding: 10px 20px;
  color: #4A0F1A;
  font-weight: 600;
  border-radius: 40px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* Button shine */
.gold-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
}

.gold-btn:hover::before {
  animation: btnShine 0.8s;
}

@keyframes btnShine {
  100% {
    left: 120%;
  }
}

.gold-btn:hover {
  box-shadow: 0 0 20px rgba(201,162,39,0.6);
  transform: translateY(-2px);
}

/* CARD HOVER */
.lux-card:hover img {
  transform: scale(1.12);
}

.lux-card:hover {
  transform: translateY(-12px);
}

/* CARD SHINE SWEEP */
.lux-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-25deg);
  z-index: 3;
}

.lux-card:hover::before {
  animation: shineMove 1s forwards;
}

@keyframes shineMove {
  100% {
    left: 120%;
  }
}



/* SECTION */
.lusso-hero {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Glow */
.lusso-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.15), transparent 70%);
  top: -100px;
  right: -100px;
}

/* TEXT */
.hero-title {
  font-size: 52px;
  font-weight: 600;
  color: #222;
}

.hero-tagline {
  font-style: italic;
  color: #8a6d2f;
  margin: 20px 0;
}

.hero-desc {
  color: #666;
 
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-gold {
  background: linear-gradient(135deg, #C9A227, #f5d76e);
  padding: 12px 26px;
  border-radius: 40px;
  color: #222;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
}

.btn-outline {
  border: 1px solid #ddd;
  padding: 12px 26px;
  border-radius: 40px;
  color: #333;
  text-decoration: none;
  transition: 0.4s;
}

/* IMAGE */
.image-wrap {
  position: relative;
}

.image-wrap::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(201,162,39,0.25), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

.hero-img {
  max-width: 260px;
  transform: rotate(-15deg);
  transition: 0.6s ease;
}

/* HOVER */
.image-wrap:hover .hero-img {
  transform: rotate(0deg) scale(1.05);
}

/* ========================= */
/* 📱 RESPONSIVE BREAKPOINTS */
/* ========================= */

@media (max-width: 992px) {
  .lusso-hero {
    padding: 70px 0;
    text-align: center;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-img {
    max-width: 220px;
    transform: rotate(0deg);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}

.shop-lux {
  background: #faf7f2;
}

/* LEFT TEXT */
.lux-sub {
  color: #C9A227;
  font-weight: 500;
}

.lux-heading {
  font-size: 42px;
  font-weight: 600;
  color: #222;
  margin: 10px 0;
}

.lux-desc {
  color: #666;
  margin-bottom: 20px;
}

.lux-link {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  padding-bottom: 3px;
}

.lux-link:hover {
  color: #C9A227;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* 🔥 SQUARE IMAGE BOX */
.img-box {
  width: 100%;
  aspect-ratio: 1 / 1;   /* 🔥 PERFECT SQUARE */
  overflow: hidden;
  background: #f8f5f1;
}

/* IMAGE FULL COVER */
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 fills square perfectly */
  transition: 0.5s;
}

/* INFO */
.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h6 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 15px;
}

.cat {
  font-size: 13px;
  color: #888;
}

/* STARS */
.stars {
  color: #C9A227;
  margin: 6px 0;
  font-size: 14px;
}

/* PRICE */
.price {
  font-weight: 600;
  margin-bottom: 10px;
}

/* BUTTON */
.shop-btn {
  background: linear-gradient(135deg, #C9A227, #f5d76e);
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

/* HOVER EFFECT */
.product-card:hover {
  transform: translateY(-8px);
}

.product-card:hover img {
  transform: scale(1.08);
}

@media (max-width: 576px) {
  /* .img-box {
    height: 150px;
  } */
   .lux-card{
    height: 100%;
   }
}

/* SECTION */
.gender-section {
  background: #ffffff;
}

/* CARD */
.gender-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.4s;
}

/* SQUARE IMAGE */
.gender-card .img-box {
  width: 100%;
  aspect-ratio: 1 / 1;  /* 🔥 perfect square */
  overflow: hidden;
  background: #f8f5f1;
}

/* IMAGE */
.gender-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 full fill */
  transition: 0.6s ease;
}

/* BOTTOM INFO */
.gender-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.gender-info h4 {
  color: #fff;
  font-weight: 600;
  font-size: 28px;
  margin: 0;
}

/* DARK OVERLAY FOR TEXT */
.gender-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* HOVER EFFECT */
.gender-card:hover img {
  transform: scale(1.08);
}

.gender-card:hover {
  transform: translateY(-8px);
}

/* OPTIONAL GOLD ACCENT LINE */
.gender-info h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #C9A227;
  margin-top: 6px;
}
/* SECTION */
.lusso-premium {
  background: linear-gradient(135deg, #4A0F1A, #2b0a11);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  color: #FAF7F2;
}

/* BACKGROUND GLOW */
.lusso-premium::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.15), transparent 70%);
  top: -150px;
  right: -150px;
}

/* IMAGE WRAP */
.premium-img-wrap {
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* GOLD BORDER EFFECT */
.premium-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 25px;
  pointer-events: none;
}

/* IMAGE */
.premium-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* IMAGE HOVER */
.premium-img-wrap:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.premium-content h2 {
  font-size: 44px;
  font-weight: 600;
  margin: 20px 0;
  line-height: 1.3;
}

.premium-content p {
  color: #e8dcd6;
  max-width: 520px;
  margin-bottom: 35px;
  font-size: 16px;
}

/* BADGE */
.lux-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(201,162,39,0.15);
  color: #C9A227;
  font-size: 13px;
  letter-spacing: 1px;
}

/* BUTTON */
.lux-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #C9A227, #f5d76e);
  color: #4A0F1A;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

/* SHINE EFFECT */
.lux-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.8), transparent);
}

/* ANIMATION */
.lux-btn:hover::before {
  animation: shineMove 0.9s forwards;
}

@keyframes shineMove {
  100% {
    left: 120%;
  }
}

/* BUTTON HOVER */
.lux-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(201,162,39,0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .lusso-premium {
    text-align: center;
    padding: 70px 0;
  }

  .premium-content h2 {
    font-size: 32px;
  }

  .premium-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* SECTION */
.lusso-features-pro {
  background: #fff;
  padding: 60px 0;
}

/* 🔥 PERFECT GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Desktop = 5 equal */
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* ITEM */
.feature-item {
  text-align: center;
  padding: 30px 15px;
  position: relative;
  transition: 0.4s;
}

/* DIVIDER LINES */
.feature-item:not(:last-child) {
  border-right: 1px solid #eee;
}

/* ICON */
.feature-item i {
  font-size: 28px;
  color: #C9A227;
  margin-bottom: 12px;
  display: inline-block;
  transition: 0.4s;
}

/* TEXT */
.feature-item h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.feature-item p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* HOVER EFFECT 🔥 */
.feature-item:hover {
  background: linear-gradient(180deg, #fff, #faf7f2);
}

.feature-item:hover i {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(201,162,39,0.7);
}

/* GOLD TOP LINE ON HOVER */
.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #C9A227;
  transition: 0.4s;
}

.feature-item:hover::before {
  width: 100%;
}

/* ================= */
/* 📱 RESPONSIVE */
/* ================= */

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-item:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item {
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  .feature-item:nth-child(2n) {
    border-right: none;
  }
}