body {
  margin: 0;

  /* background-color: #ba9544 !important; */
  color: #000;
  position: relative;
  /* 👇 Navbar ke neeche hero dikhane ke liye thoda space */
  /* adjust based on your navbar height */
}

@media (max-width: 768px) {
  body {
    background: #fff !important;
  }
}

.fount {
  font-family: 'Marcellus', serif;
}

.font {
  font-family: 'Cinzel Decorative', serif;
}

/* =========================================================
   🔹 Navbar Base (Desktop)
========================================================= */
.navbar {
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 10px 20px;
}

.nav-link {
  color: #ba9544 !important;
  font-size: clamp(12px, 1.2vw, 16px) !important;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ba9544 !important;
}

.navbar-icons i {
  font-size: 1.4rem;
  color: #ba9544;
  cursor: pointer;
  transition: color 0.3s ease;
}

.navbar-icons i:hover {
  color: #ffb6c1;
}

/* Hide Bootstrap dropdown caret */
.navbar .dropdown-toggle::after {
  display: none;
}

/* =========================================================
   🔹 Mobile Responsive Navbar
========================================================= */
@media (max-width: 991px) {
  .nav-responsive {
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 567px) {
  .navbar {
    width: 100%;
    padding: 0px !important;
    margin: 0px !important;
    border-radius: 0 0 20px 20px !important;
  }

  .nav-link {
    margin-top: 10px !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    padding: 0px !important;
  }

  .navbar-icons i {
    font-size: 1rem !important;
    /* smaller icons */
  }

  /* Optional: tighter spacing in nav items */
  .navbar-nav {
    gap: 5px !important;
  }
}

@media screen and (max-width: 768px) {
  .nav-link {
    font-size: 14px !important; /* readable on mobile */
    font-weight: 400;
  }
}

@media (max-width: 500px) {
  .nav-link {
    font-size: 12px !important; /* still readable, no wrapping */
  }
  .navbar-icons i {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 405px) {
  .nav-link {
    font-size: 10px !important; /* still readable, no wrapping */
  }
  .navbar-icons i {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 376px) {
  .nav-link {
    font-size: 10px !important; /* still readable, no wrapping */
  }
  .navbar-icons i {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 280px) {
  .nav-link {
    font-size: 9px !important; /* still readable, no wrapping */
  }
  .navbar-icons i {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 270px) {
  .nav-link {
    font-size: 8px !important; /* still readable, no wrapping */
  }
  .navbar-icons i {
    font-size: 0.9rem !important;
  }
}
/* ================ HERO SECTION ================ */
.hero-section {
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  filter: brightness(0.85);
}

/* Overlay */
.hero-content-overlay {
  position: relative;
  z-index: 3;
  padding: 2rem;
}

/* ================ TEXT (EXACT LIKE YOUR OUTPUT) ================ */
.hero-main-heading {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 600;
  font-size: clamp(4rem, 9vw, 7rem);
  letter-spacing: 5px;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 3px 12px rgba(0,0,0,0.3);
  white-space: nowrap;
}

/* Star */
.star-container {
  width: 85px;
  height: 85px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(255,255,255,0.6);
}

.header-star {
  width: 55px;
  filter: drop-shadow(0 0 18px rgba(255,255,255,1));
}

/* Button */
.hero-shop-btn {
  background: #fff !important;
  border: 2px solid #fff;
  padding: 14px 42px;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: 50px;
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
}

.hero-shop-btn:hover {
  background: #fff;
  color: #ba9544 !important;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* Indicators */
.indicator {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  transition: all 0.3s;
}

.indicator.active {
  background: #fff;
  width: 12px;
  height: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.9);
}

.bounce-arrow {
  animation: bounce 2s infinite;
  font-size: 1.8rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-8px); }
}

/* ================ RESPONSIVE (Mobile pe bhi same) ================ */
@media (max-width: 992px) {
  .hero-main-heading { font-size: 5rem; letter-spacing: 4px; }
  .star-container { width: 75px; height: 75px; }
  .header-star { width: 48px; }
}

@media (max-width: 768px) {
  .hero-main-heading { 
    font-size: 4rem; 
    letter-spacing: 3px; 
    white-space: normal;
  }
  .star-container { 
    width: 65px; height: 65px; 
    margin: 0 auto 1rem;
  }
  .header-star { width: 42px; }
  .hero-shop-btn { 
    padding: 12px 34px; 
    font-size: 0.95rem; 
  }
}

@media (max-width: 576px) {
  .hero-main-heading { 
    font-size: 2.5rem; 
    letter-spacing: 2px;
  }
  .star-container { width: 55px; height: 55px; }
  .header-star { width: 35px; }
  .hero-shop-btn { 
    padding: 10px 28px; 
    font-size: 0.9rem; 
  }
  .hero-bg { height: 100vh !important;}
  .hero-bg-img {
    height: 100vh !important;
  }
}


/* --- Brand Navbar base --- */
.brand-navbar {
  background-color: #000;
  /* padding: 10px 0; */
}

/* Desktop base */
.brand-slider {
  display: flex;
  gap: 0px !important;
  align-items: center;
  margin: 0;
  padding: 0 40px !important;
  list-style: none;
  overflow: hidden;
}

.brand-slider .brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.25s, transform 0.15s;
}



/* Mobile (≤768px): grid layout + smaller font */
@media (max-width: 768px) {
  .brand-slider {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px !important;
    padding: 0px !important;
    overflow: visible !important;
  }

  /* ↓ apply small font to both li and a */
  .brand-slider .brand,
  .brand-slider .brand a {
    font-size: 15px !important;
    padding: 0px !important;
    letter-spacing: 0.5px;
    line-height: 1.6 !important;
  }
}


/* Extra small phones (≤480px): even smaller text */
@media (max-width: 480px) {
  .brand-slider .brand {
    font-size: 9px !important;
    /* ↓ smaller again for very small phones */

  }
}

/* Optional large screens adjustment */
@media (min-width: 1200px) {
  .brand-slider {
    gap: 7px !important;
    padding: 0 30px;
  }
}







.collections {
  width: 100%;
  padding: 30px 0;
  text-align: center;



}

.collections h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}

.collection-carousel {
  width: 90%;
  margin: auto;
}

.collection-item {
  width: 180px;
  height: 200px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 6px -6px 22px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  background-color: #fff;
  margin: 0 5px;
}

.collection-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.collection-item p {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin: 8px 0 0;
}

.collection-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.collections .d-flex.align-items-center.justify-content-between i {
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.collections .d-flex.align-items-center.justify-content-between i:hover {
  color: #ff4b5c;
}

.collection-carousel a {
  text-decoration: none;
  color: black;
}

.collection-carousel a p {
  text-align: center;
  margin-top: 8px;
  font-weight: bold;
}

/* Adjustments for responsiveness */
@media (max-width: 1200px) {
  .collection-item {
    width: 140px;
    height: 200px;
  }

  .collection-item img {
    height: 160px;
    /* slightly taller */
  }
}

@media (max-width: 768px) {
  .collection-item {
    width: 200px;
    height: auto;
    align-items: center;
  }

  .collection-item img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    /* shows full image without cropping */
  }

  .collections h3 {
    font-size: 16px;
    /* smaller for tablets */
    white-space: nowrap;
    /* keeps text in one line */
  }
}

@media (max-width: 480px) {
  .collection-item {
    width: 120px;
    height: auto;
    align-items: center;
  }

  .collection-item img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    /* prevent side cropping */
  }

  .collections h3 {
    font-size: 25px !important;
    /* smaller for phones */
    white-space: nowrap;
    /* forces single line */
    text-overflow: ellipsis;
    /* optional: add "..." if text is too long */
    overflow: hidden;
  }
}



.banner.midil {
  position: relative;
  width: 100%;
  /* height: 436px !important; */
  overflow: hidden;
}

/*.banner.midil img {*/
/*  width: 100%;*/
/*  height: 100% !important;*/
/*  object-fit: cover;*/
/*}*/
.banner.midil img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✅ MOBILE FIX */
@media (max-width: 768px) {
  .banner.midil img {
    height: auto !important;
    object-fit: contain;
  }
}

.banner.midil .banner-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  padding: 10px;
  border-radius: 10px;
  /*background-color: rgba(0,0,0,0.5);*/
  padding: 10px;
}

.banner.midil .banner-content h1 {
  /*font-size: 100px;*/
  /*margin-bottom: 15px;*/
  /*color: #ba9544;*/
    font-size: 75px;
    margin-bottom: 15px;
    color: #ba9544;
    width: 100%;
}

.banner.midil .banner-content p {
  font-size: 20px;
  margin-bottom: 20px;
  color: black;
}

.banner.midil .banner-content button {
  padding: 12px 30px;
  font-size: 16px;
  background-color: black;
  color: gold;
  border: none;
  border-radius: 30px;
  cursor: pointer;

  position: relative;
  /*left: 10%;*/

}



.banner.midil .banner-content button:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  /*.banner.midil {*/
  /*  height: 400px;*/
  /*}*/

  .banner.midil .banner-content {
    left: 5%;
    max-width: 90%;
    padding: 15px;
  }

  .banner.midil .banner-content h1 {
    font-size: 5rem;
  }

  .banner.midil .banner-content p {
    font-size: 1rem;
  }

  .banner.midil .banner-content button {
    font-size: 14px;
    padding: 10px 20px;
    /*top: 560%;*/
  }
}

@media (max-width: 576px) {
  .banner.midil .banner-content {
    left: 5%;
    max-width: 90%;
    padding: 19px;
    top: 80%;
  }

  .banner.midil .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content .line1,
  .banner-content .line2 {
    display: inline;
    font-size: 22px !important;
  }

  .customer-reviews h2 {
    /* font-size: 27px; */
    margin-bottom: 40px;
    color: #fff;
  }
}

/* .view-all-btn {
  padding: 12px 30px;
  font-size: 16px;
  background-color: black;
  color: gold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.view-all-btn:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .view-all-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
} */

.customer-reviews {
  padding: 20px 0;
  background-color: #ba9544;
  text-align: center;
  font-family: Arial, sans-serif;
}

.customer-reviews h2 {
  /* font-size: 30px; */
  /* margin-bottom: 40px; */
  padding-bottom: 30px;
  color: #fff;
}

.review-card {
  background: #fff;
  border-radius: 50px;
  width: 100%;
  padding: 0;
  margin-bottom: 15px;
  box-shadow: 6px -6px 22px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: inline-block;
}

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

.customer-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}

.stars {
  color: black;
  font-size: 25px;
  margin-bottom: 10px;
}

.customer-reviews p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .customer-reviews .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .customer-img {
    height: 300px;
  }
}

.section-header h3 {
  font-size: 2rem;
  letter-spacing: 1px;
}

.view-all-btn {
  background-color: #000;
  color: #ba9544;
  border: none;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Marcellus', serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 15px rgba(255, 75, 92, 0.3); */
  text-decoration: none;
  display: inline-block;
}

.view-all-btn:hover {
  /* background: linear-gradient(135deg, #e03a4a, #c32f3f); */
  transform: translateY(-2px);
  /* box-shadow: 0 6px 20px rgba(255, 75, 92, 0.4); */
  color: #fffc5c;
  text-decoration: none;
}

/* Responsive arrows */
@media (max-width: 767.98px) {
  .view-all-btn { padding: 10px 24px; font-size: 0.9rem; }
}

@media (max-width: 576px) {
  .view-all-btn { 
    padding: 9px 20px; 
    font-size: 0.85rem; 
    letter-spacing: 1px;
  }
}

.brand-navbar {
  background-color: #000;
  height: 100px;
  overflow: hidden;
  padding: 10px 0;
}

.brand-navbar ul {
  list-style: none;
  margin: -24px;
  padding: 0;
}

.brand-navbar li {
  padding: 10px;
}

.brand-navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  display: block;
  transition: color 0.3s ease;
}



/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .brand-navbar {
    height: auto;
  }

  .brand-navbar a {
    font-size: 20px;
  }
}






.fount {
  font-family: 'Marcellus', serif;
}

.font {
  font-family: 'Cinzel Decorative', serif;
}

/* .brand-navbar {
  background-color: #000;
  height: 60px;
}

.brand-navbar ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between; 
  gap: 10px; 
}

.brand-navbar li {
  flex: 0 auto;
  padding: 25px;
  padding-top: 0px;
}


.brand-navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0px 20px;
  display: block;
  text-align: center;
}


@media (max-width: 768px) {
  .brand-navbar {
    background-color: #000;
    height: auto;
  
   
  }

  .brand-navbar ul {
    justify-content: flex-start; 
    width: 100%;
    padding: 0 10px;
  }

  .brand-navbar li {
   
   
    padding: 5px; 
    text-align: center;
  }

  .brand-navbar a {
    display: block;
    width: 100%;
    font-size: 20px;
  }
} */






/* ------------------------------
   BANNER BASE STYLING
--------------------------------*/
.banner {
  position: relative;
  /*height: 550px;*/
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------- Desktop & Large Screens ------- */
.banner-content {
  position: absolute;
  top: 50%;
  left: 10%;
  /* 👈 Move content to left side */
  transform: translateY(-50%);
  /* Center vertically */
  text-align: left;
  /* 👈 Align text to left */
  width: auto;
  max-width: 600px;
  padding: 0 20px;
  z-index: 2;
}

.banner-content h1 {
  font-size: 60px;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.1;
  margin: 0 0 15px 0;
  font-weight: 400;
}



.banner-content p {
  font-size: 22px !important;
  color: #fff;
  margin: 0 0 30px 0;
  font-weight: 300;
}

.banner-content .shop-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  text-align: left;
  /*left: -15% !important;*/
}



/* ------------------------------
   MOBILE RESPONSIVE STYLING
--------------------------------*/
@media (max-width: 767px) {
  /*.banner {*/
  /*  height: 510px;*/
  /*}*/

  .banner-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    height: 100%;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 35px !important;
    margin-bottom: 12px;
    white-space: nowrap;
  }

  .banner-content .line1,
  .banner-content .line2 {
    display: inline;
    
  }

  .banner-content p {
    font-size: 15px !important;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  /* SHOP NOW Button - Fixed at Bottom */
  .banner-content .shop-btn {
    position: absolute;
    bottom: -5px !important;
    left: 60% !important;
    transform: translateX(-50%);
    padding: 12px 35px;
    font-size: 15px;
    z-index: 10;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 35px !important;
  }

  .banner-content p {
    font-size: 14px !important;
  }

  .banner-content .shop-btn {
    padding: 11px 30px;
    font-size: 14px;
    bottom: 25px;
  }
}


@media (max-width: 480px) {
  .newsletter-input {
    padding-left: 45px !important;
    font-size: 14px !important;
  }

  .newsletter-icon {
    left: 25px !important;
    font-size: 1rem !important;
  }
}



/* ------------------------------
   SECOND-LAST SECTION BASE
--------------------------------*/
.second-last {
  position: relative;
  /*height: 550px !important;*/
  overflow: hidden;
  /* background-color: #FDFBD4; */

}

.second-last-img {
  width: 100%;
  height: 100% !important;

}


/* ------- Desktop & Large Screens ------- */
.second-last-content {
  /*position: absolute;*/
  /*top: 50%;*/
  /*left: 10%;*/
  /*transform: translateY(-50%);*/
  /*text-align: left;*/
  /*max-width: 600px;*/
  /*padding: 0 20px;*/
  /*z-index: 2;*/
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 600px;
    padding: 0 20px;
    z-index: 2;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    /*padding: 15px;*/
}

.second-last-content h1 {
  font-size: 50px;
  color: #ba9544;
  line-height: 40px;
  /* margin-bottom: 35px; */
  letter-spacing: 2px;
  font-weight: 400;
  margin: 0;
}

.second-last-content .line1,
.second-last-content .line2 {
  display: block;
}

.second-last-content p {
  font-family: 'Marcellus', serif;
  font-size: 23px;
  color: #ba9544;
  margin-bottom: 30px;
  font-weight: 300;
}

.second-last-content .shop-btn {
  /* background-color: #000; */
  color: #ba9544;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.second-last-content .shop-btn:hover {
  background-color: #444;
}

/* ------------------------------
   MOBILE RESPONSIVE STYLING
--------------------------------*/
@media (max-width: 767px) {
  /*.second-last {*/
  /*  height: 360px !important;*/
  /*}*/

  /*.second-last-img {*/
  /*  height: 360px !important;*/
  /*}*/

  .second-last-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    height: 100%;
    text-align: center;
  }

  .second-last-content h1 {
    font-size: 50px;
    margin-bottom: 12px;
    white-space: nowrap;
    line-height: 20px;
    padding-top: 50px;
  }

  .second-last-content p {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .second-last-content .shop-btn {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 35px;
    font-size: 15px;
    z-index: 10;
  }
}

/* ------- Extra Small Phones ------- */
@media (max-width: 480px) {
  .second-last-content h1 {
    font-size: 40px;
    padding-top: 53px;
  }

  .second-last-content p {
    font-size: 20px;
  }

  .second-last-content .shop-btn {
    top: 75%;
    padding: 10px 28px;
    font-size: 13px;
  }
}