:root {
  --heading-font-family: "Univers Next", sans-serif;
  --heading-font-weight: 400;
  --heading-letter-spacing: 0.18em;
  --heading-background-color: #efefef;
  --bs-primary-color: rgba(33, 37, 41, 0.75);
}

@font-face {
  font-family: "Univers Next";
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
  src: url("./fonts/universnext_n4.4a48456b2aa8cb8990a7d6b6607281eacb472319.woff2")
      format("woff2"),
    url("//www.azga.in/cdn/fonts/univers_next/universnext_n4.e7b32b8a5d75b6d38cb12ac00ad755e127451884.woff?h1=YXpnYS5pbg&h2=YXpnYS5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=621624b560245df60f7f3bb338b377e650f4200ca6fcd10c665083374632f36c")
      format("woff");
}
body {
  margin-top: 0px !important;
}
.offcanvas.show-cart-sidebar {
  z-index: 1055;
}
.offcanvas.offcanvas-start {
  z-index: 1100;
}

/* Optional: fix if header has a high z-index */

/*===============search model section ===== */
.modal .modal-content {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.primary-text {
  color: var(--bs-primary-color);
  text-decoration: none;
  font-family: var(--heading-font-family);
}
.modal-header {
  border-bottom: none;
}
.modal-body input {
  font-size: 1.1rem;
  padding: 10px 15px;
}
.model-form .btn-close {
  top: 25%;
  position: absolute;
  right: 10%;
}
.model-form .search-icon {
  top: 25%;
  position: absolute;
  left: 10%;
}
/*====================== buttons================== */
/*====================== button dark================== */
.btn-custom-light {
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding: 13px 40px;
  background-color: black;
  border: 1px solid #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #050505;
  text-decoration: none;
  overflow: hidden;
  border-radius: 3px;
  z-index: 1;
}
.btn-custom-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  transform: translateX(0);
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-custom-light:hover::before {
  transform: translateX(100%) !important;
}

.btn-custom-light:hover::after {
  transform: translateX(100%) !important;
}
.btn-custom-light:hover {
  border: 1px solid white !important;
  color: white !important;
}

/* Root Button Style */
.hero-button-3 {
  position: relative;
  display: inline-block;
  padding: 12px 85px;
  font-size: 17px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  background-color: transparent;
  border: 1px solid black;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Background fill (before hover) */
.hero-button-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.5s ease;
  z-index: -1;
}

/* Hover – remove black fill */
.hero-button-3:hover::before {
  transform: scaleX(0);
}

/* Hover Text Color */
.hero-button-3:hover {
  color: black;
}

/* Base Button */
.btn-custom-dark {
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding: 18px 40px;
  background-color: black;
  border: 1px solid black;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white !important;
  text-decoration: none;
  overflow: hidden;
  border-radius: 3px;
  z-index: 1;
  transition: color 0.4s ease, border-color 0.4s ease,
    background-color 0.4s ease;
}

/* Sliding Layer */
.btn-custom-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

/* Hover Animation */
.btn-custom-dark:hover::before {
  transform: translateX(0);
}

/* Hover Text + Border */
.btn-custom-dark:hover {
  color: black !important;
  border-color: black;
  background-color: black;
}

/*====================== button light================== */

/* red button  */

.btn-red {
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding: 10px 20px;
  background-color: #dc3545;
  border: 1px solid #dc3545;
  color: white !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  overflow: hidden;
  border-radius: 3px;
  z-index: 1;
  transition: color 0.4s ease, border 0.4s ease;
}

/* Background layer for hover slide */
.btn-red::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

/* Slide effect on hover */
.btn-red:hover::before {
  transform: translateX(0%);
}

.btn-red:hover {
  color: #dc3545 !important;
  border: 1px solid #dc3545 !important;
  background-color: transparent !important;
}

/*====================== buttons================== */

.sidebar-menu .menu-item {
  position: relative;
  padding: 10px 5px;
  cursor: pointer;
}

.menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
}

.arrow-icon,
.sub-arrow {
  transition: transform 0.3s ease;
}

.submenu,
.sub-submenu {
  display: none;
  padding-left: 15px;
}

.menu-item:hover > .submenu {
  display: block;
}

.submenu-item:hover > .sub-submenu {
  display: block;
}

.submenu-item {
  padding: 6px 0;
}

.submenu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-submenu a {
  padding: 3px 0;
  display: block;
  font-size: 14px;
}

.dropdown-content {
  background: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* dropdown shadow */
}

/* Hover open behavior already working */
.mobile-dropdown-btn:hover + .dropdown-content {
  display: block !important;
}
.dropdown-content:hover {
  display: block !important;
}
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  background-color: #efefef;
  font-size: 12px;
  font-family: "Univers Next", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 5px 0;
  height: 35px;
  color: #000;
}

.top-header p {
  margin: 0;
}

.navbar-section {
  position: fixed; /* stays on top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* above all content */
  background: transparent; /* transparent background */
  transition: background-color 0.3s ease;
}
.navbar-section:hover {
  background: #fff;
}

/* Optional: when user scrolls, add solid background */
.navbar-section.scrolled {
  background-color: rgba(255, 255, 255, 0.9); /* white with opacity */
  backdrop-filter: blur(10px); /* nice glass effect */
}

/* Remove Bootstrap’s default navbar background */
.navbar,
.navbar-desktop {
  background: transparent !important;
  box-shadow: none !important;
}
.navbar-section.popup-active {
  background: #ffffff !important;
  transition: background 0.3s ease;
}

.logo {
  height: 100px;
}
.navbar-section {
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

/* Add background after scroll */
.navbar-section.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Transparent text/icons */

/* Logo sizing */
.logo {
  height: 55px;
  object-fit: contain;
}

/* Desktop nav links */
.nav-links a {
  color: white;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: #ffcc00;
}

/* Responsive tweaks for tablets (768px–991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  .logo {
    height: 50px;
  }
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}

.nav-links a {
  position: relative;
  font-size: 9px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.3s;
  padding: 30px 5;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: rgb(0, 0, 0);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0%;
  height: 2px;
  background-color: rgb(0, 0, 0);
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  gap: 16px;
  font-size: 18px;
  flex-shrink: 0;
}

.fullscreen-popup {
  border-top: 1px solid #ddd;
  padding: 50px;
  position: fixed;
  overflow-y: scroll;
  top: 72px;
  left: 0;
  width: 100%;
  height: 90%;
  background-color: white;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  pointer-events: auto;
}

.fullscreen-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.popop-li-heading {
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.3s;
  padding: 10px 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.fullscreen-popup a {
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.3s;
  padding: 4px 0;
  letter-spacing: 1.5px;
  text-transform: capitalize;
}
.fullscreen-popup:hover {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.custom-slider-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.custom-slider-img {
  width: 100%;
  height: 600px; /* Fixed height */
  object-fit: cover; /* Cover the slide */
  object-position: center; /* Center image */
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.slider-title {
  text-transform: uppercase;
  line-height: 26.9893px;
  letter-spacing: 3.23871px;
  font-weight: 400;
  font-size: 30.9928px !important;
  color: rgb(255, 255, 255);
  box-sizing: border-box;
}
.fullscreen-popup a:hover {
  color: rgb(0, 0, 0);
}

.image-hover-wrapper {
  overflow: hidden;
}

.zoom-image {
  transition: transform 5.5s ease;
}

.zoom-image:hover {
  transform: scale(1.5);
}

.video-title,
.hero-title {
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  transition: color 0.3s;
  padding: 10px 0;
  letter-spacing: 1.5px;
  text-transform: capitalize;
}
.shop-now a {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  transition: color 0.3s;

  letter-spacing: 1.5px;
  text-transform: capitalize;
}
.hero-title {
  color: white !important;
}
.shop-link {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;

  text-decoration: none;

  transition: color 0.3s ease;
}

.shop-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; /* Start from right */
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: width 0.3s ease, right 0.3s ease;
}

.shop-link:hover::after {
  width: 0;
  right: 0;
}

.shop-link:hover {
  color: #000; /* Optional: change text color on hover */
}

.footer-section h5 {
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.3s;
  padding: 10px 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mail {
  color: #777;
  letter-spacing: 0.03em;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 20px;
  font-weight: 400;
}

.hero-section {
  height: 480px;
  position: relative;
  color: #000;
}
.jewels-section {
  position: relative;
  color: #000;
}
.hero-section-2 {
  background-image: url("../../assets/images/background-images/image3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  position: relative;
  color: #000;
}

.hero-section .content {
  z-index: 2;
}

.hero-title-content {
  text-transform: uppercase;
  line-height: 26.9893px;
  letter-spacing: 3.23871px;
  font-weight: 400;
  font-size: 30.9928px !important;
  color: rgb(255, 255, 255);
  box-sizing: border-box;
}
.hero-button {
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding: 18px 40px;
  background-color: transparent;
  border: 1px solid #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  text-decoration: none;
  overflow: hidden;
  border-radius: 3px;
  z-index: 1;
}

.hero-button-2 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding: 18px 40px;
  background-color: black;
  border: 1px solid #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #050505;
  text-decoration: none;
  overflow: hidden;
  border-radius: 3px;
  z-index: 1;
}
/* White layer that animates */
.hero-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: translateX(0);
  transition: transform 0.4s ease;
  z-index: -1;
}
.hero-button-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  transform: translateX(0);
  transition: transform 0.4s ease;
  z-index: -1;
}
.hero-section-3 {
  background-image: url("../../assets/images/background-images/img5.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  position: relative;
  color: #000;
}
.hero-title-3 {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  transition: color 0.3s;
  padding: 10px 0;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  font-family: "Univers Next", sans-serif;
}
.hero-title-content-3 {
  text-align: center;
  text-transform: uppercase;
  line-height: 30.9893px;
  font-weight: 500;
  font-size: 12.9928px !important;
  color: rgb(255, 255, 255);
  box-sizing: border-box;
  font-family: "Univers Next", sans-serif;
}

.hero-section-3 input {
  width: 350px;
  font-size: 17px;
  position: relative;
  display: inline-block;
  padding: 12px 35px;
  background-color: transparent;
  text-transform: uppercase;
  color: black;
  text-decoration: none;
  border: 1px solid black;
  overflow: hidden;
  z-index: 1;
}

/* On hover, slide white background out (left → right) */
.hero-button:hover::before {
  transform: translateX(100%) !important;
}

.hero-button:hover::after {
  transform: translateX(100%) !important;
}
.hero-button:hover {
  border: 1px solid white !important;
  color: white !important;
}
.hero-button-2:hover::before {
  transform: translateX(100%) !important;
}

.hero-button-2:hover::after {
  transform: translateX(100%) !important;
}
.hero-button-2:hover {
  border: 1px solid white !important;
  color: white !important;
}

.scroll-video-card {
  position: relative;
}

.scroll-video-content {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  transition: background 0.3s ease;
}

.scroll-video-card:hover .scroll-video-content {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.scroll-video-title {
  font-size: 1rem;
  font-weight: 600;
}

.scroll-video-btn {
  font-size: 0.9rem;
  cursor: pointer;
}
.video-carousel-section video {
  border-radius: 6px;
  height: 200px;
  object-fit: cover;
}

/* Hero Section */
.hero {
  background: url("https://via.placeholder.com/1200x400") no-repeat center
    center/cover;
  height: 400px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}
.hero-slider-section {
  position: relative;
  overflow: hidden;
}

.hero-slider-img {
  height: 80vh; /* Adjust as needed (e.g., 70vh or 600px) */
  object-fit: cover;
  width: 100%;
}

/* ====== Optional Overlay ====== */

/* ====== Center Caption ====== */
.carousel-caption {
  position: absolute;
  z-index: 2;
  text-align: center;
}

/* Video Background Section */
.video-section {
  position: relative;
  height: 300px !important;
  overflow: hidden;
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.video-content {
  position: relative;
  z-index: 1;
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

/* ✅ Marquee Section */
.six-marquee {
  width: 100%;
  overflow: hidden;
  background: #f0f0f0;
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.marquee-track-wrapper {
  display: flex;
  width: 100%;
}

.marquee-track {
  display: flex;
  animation: scrollLoop 25s linear infinite;
}

.scroll-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 50px;
  flex-shrink: 0;
}
.title-slider-section {
  position: relative;
  top: 0 !;
  z-index: 1;
}
.scroll-item span {
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.3s ease;
  padding: 10px 0;
  letter-spacing: 1.5px;
  text-transform: capitalize;
}

.scroll-item img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

#carouselExampleFade {
  height: 560px; /* Adjust height as needed */
  overflow: hidden;
}

#carouselExampleFade .carousel-inner,
#carouselExampleFade .carousel-item,
#carouselExampleFade .carousel-item img {
  height: %;
}

.slider-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.carousel-caption span {
  font-size: 12px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  letter-spacing: 1.5px;
  text-transform: capitalize;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
  padding: 10px 0px;
}

/* ========================= tabs  ==================================  */

.off-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #dc3545; /* red */
  color: #fff;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  z-index: 10;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}

.product-card {
  transition: all 0.3s ease;
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
}

.product-img-wrapper img {
  transition: opacity 0.4s ease;
}

.product-img-wrapper .img2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .img1 {
  opacity: 0;
}

.product-card:hover .img2 {
  opacity: 1;
}

/* + Add to Cart Button */
.add-to-cart-btn {
  position: absolute;
  z-index: 5;
  bottom: -40px;
  left: 85%;
  transform: translateX(-50%);
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 20px !important;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: auto !important;
}

.product-card:hover .add-to-cart-btn {
  color: #000;
  bottom: 10px;
}

.add-to-cart-btn:hover {
  color: #fff;
  transform: translateX(-50%) rotate(90deg);
}

.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
}
.product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.product-img-wrapper .img2 {
  opacity: 0;
}
.product-card:hover .img2 {
  opacity: 1;
}
.product-card:hover .img1 {
  opacity: 0;
}
.nav-tabs {
  border: none !important;
}

.nav-tabs .nav-link {
  position: relative; /* underline ko sahi jagah rakhne ke liye */
  color: rgb(28, 28, 28);
  font-family: "Instrument Sans", sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 3px;
  border: none !important;
  background: transparent;
  transition: color 0.3s ease;
}

/* Underline animation base */
.nav-tabs .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #000;
  transition: width 0.4s ease;
}

/* Hover par left se right underline */

/* Active tab ke niche border hamesha visible */
.nav-tabs .nav-link.active::after {
  width: 100%;
  background-color: #000;
}

/* Hover hatne par border smooth hat jaye */
.nav-tabs .nav-link:not(:hover):not(.active)::after {
  width: 0%;
  transition: width 0.4s ease;
}

/* Hover and active color adjustments */
.nav-tabs .nav-link:hover {
  color: #000;
  border: none !important;
}

.nav-tabs .nav-link.active {
  color: #000; /* text black hi rahe */
  background: transparent; /* background na aaye */
  border: none !important;
}

.product-card {
  bottom: 0px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-content {
  transition: all 0.4s ease;
  opacity: 1;
}

.hero-button-2:hover {
  background-color: #000;
  color: #fff;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  /* height: 360px !important; */
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-wrapper {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.product-card {
  line-height: 0;
}

.product-card img {
  display: block;
  width: 100%;
  height: auto;
}

.section-heading {
  font-size: 25px;
  position: relative;
  border: none;
  text-transform: uppercase;
  background: none;
  font-weight: 400;
  padding: 10px 20px;
  color: #000;
}

.shopify-section h5 {
  font-size: 16px;
  color: rgb(28, 28, 28);
  font-family: "Univers Next", sans-serif;
  font-weight: 400;
  line-height: 23.61px;
  letter-spacing: normal;
}

.shopify-section img {
  width: 70px !important;
}

/* ====== Three Column Banner Section ====== */
.three-column-banner {
  background-color: #fff;
}

/* Banner Box */
.three-column-banner .banner-box {
  position: relative;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
}

/* Background Image Layer */
.three-column-banner .banner-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.6s ease;
  z-index: 1;
}

/* Apply actual background image from inline style */
.three-column-banner .banner-box[style]::after {
  background-image: inherit;
}

/* Dark Overlay Layer */
.three-column-banner .banner-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  transition: background 0.4s ease;
}

/* Hover zoom only on image */
.three-column-banner .banner-box:hover::after {
  transform: scale(1.2);
}

.three-column-banner .banner-box:hover::before {
  background: rgba(0, 0, 0, 0.55);
}

/* ====== Overlay Text Content ====== */
.three-column-banner .overlay-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  z-index: 3; /* above image + overlay */
}

/* ====== Shop Button ====== */

/* ====== Responsive Scroll ====== */
.three-column-banner .row {
  scrollbar-width: none; /* Firefox */
}
.three-column-banner .row::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.celebrity-closet .scroll-row {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.celebrity-closet .product-card {
  transition: transform 0.3s ease;
}

.celebrity-closet .product-card:hover {
  transform: translateY(-5px);
}

.celebrity-closet .product-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.celebrity-closet .product-img-wrapper img {
  transition: opacity 0.4s ease;
}

.celebrity-closet .product-img-wrapper .img2 {
  opacity: 0;
}

.celebrity-closet .product-img-wrapper:hover .img2 {
  opacity: 1;
}

.celebrity-closet h3 {
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 3px;
  line-height: 31px;
}
/*==========================login ===================== */
.login-section .login-title {
  text-transform: uppercase;
  font-family: "Univers Next", sans-serif;
  line-height: 26.2818px;
  color: rgb(33, 37, 41);
  font-size: 16.4261px;
  font-weight: 400;
  letter-spacing: 2.95671px;
}
.login-section .login-text {
  font-family: system-ui, -apple-system, "Segoe UI";
  line-height: 24px;
  color: rgb(33, 37, 41);
  font-size: 16px;
  font-weight: 400;
}
.login-section form .input-number {
  font-family: "Univers Next", sans-serif;
  font-size: 14px;
  padding: 13px 15px;
  border: 1px solid #000000;
  letter-spacing: 1px;
  color: #050505;
  text-decoration: none;
  overflow: hidden;
  border-radius: 3px;
  z-index: 1;
}

/*==========================signup ===================== */
.signup-section .signup-title {
  text-transform: uppercase;
  font-family: "Univers Next", sans-serif;
  line-height: 26.2818px;
  color: rgb(33, 37, 41);
  font-size: 16.4261px;
  font-weight: 400;
  letter-spacing: 2.95671px;
}
.signup-section .signup-text {
  font-family: system-ui, -apple-system, "Segoe UI";
  line-height: 24px;
  color: rgb(33, 37, 41);
  font-size: 16px;
  font-weight: 400;
}
.signup-section form .input-number {
  font-family: "Univers Next", sans-serif;
  font-size: 14px;
  padding: 13px 15px;
  border: 1px solid #000000;
  letter-spacing: 1px;
  color: #050505;
  text-decoration: none;
  overflow: hidden;
  border-radius: 3px;
  z-index: 1;
}
/*================================= about us ============================ */
.heading-title {
  font-weight: var(--heading-font-weight);
  line-height: 1.5;
  font-family: var(--heading-font-family);
  letter-spacing: 0.18em;
  font-size: 20.0523px;
}
.page_description {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 23.1px !important;
}

/* =================================product =============================== */
.add-to-cart-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.add-to-cart-icon a:hover {
  transform: rotate(-45deg);
}
.filter-section {
  background-color: #fff;
}
#filterBar {
  transition: top 0.3s ease;
}
.section-product-top h5 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0.12em;
  font-family: var(--heading-font-family);
}
.section-product-top p {
  font-family: var(--heading-font-family) !important;
  color: rgb(28 28 28 / 70%) !important;
  text-align: start;
  font-size: 14px;
  font-weight: 400;
  text-transform: unset;
  letter-spacing: 0.3;
}
.card-img-top {
  object-fit: cover;
  height: 250px;
}
.image-wrapper {
  position: relative;
  height: 300px;
}

.image-wrapper img {
  object-fit: cover;
  height: 100%;
  transition: opacity 0.3s ease;
}

.hover-img {
  opacity: 0;
  z-index: 2;
}

.image-wrapper:hover .hover-img {
  opacity: 1;
}

.image-wrapper:hover .main-img {
  opacity: 0;
}
.grid-icon {
  display: flex;
  gap: 2px;
  cursor: pointer;
  padding: 4px;
  background: #f0f0f0;
  border-radius: 4px;
}

.grid-icon div {
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 1px;
}

.grid-2 div {
  width: 10px;
  height: 10px;
}

.grid-3 div {
  width: 6px;
  height: 6px;
}

.grid-4 div {
  width: 5px;
  height: 5px;
}

.product-quntity p {
  color: rgba(28, 28, 28, 0.65);
  font-family: var(--heading-font-family);
  font-size: 9.6px;
  letter-spacing: 1.728px;
  line-height: 16.32px;
  text-transform: uppercase;
  text-align: center;
}
.short-by-filter button {
  color: rgba(28, 28, 28, 0.65);
  font-size: 11px;
  font-weight: 400;
  font-family: var(--heading-font-family);
  letter-spacing: 1.98px;
  line-height: 18.15px;
  text-transform: uppercase;
}
/* Parent wrapper must be relative */
.image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-title,
.product-price {
  font-family: var(--heading-font-family);
  font-family: 400;
  color: rgb(28, 28, 28);
  font-size: 9.6px;
  letter-spacing: 1.728px;
  text-transform: uppercase;
  line-height: 16.32px;
}
/* Dropdown container */
.dropdown-menu {
  inset: 15px -53px auto auto !important;
  min-width: 220px;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  font-size: 14px;
  background-color: #fff;
  z-index: 999;
}

/* Dropdown items */
.dropdown-item {
  font-family: var(--heading-font-family);
  padding: 10px 20px;
  color: rgb(28, 28, 28);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 23.1px;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #ffffff;
  color: #000;
}

/* Optional: active state */
.dropdown-item.active,
.dropdown-item:active {
  background-color: #e9ecef;
  font-weight: 500;
}

.accordion-item {
  border-bottom: 1px solid var(--bs-primary-color) !important;
}

.accordion-button::after {
  display: none !important; /* remove default arrow */
}
.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-title {
  flex-grow: 1;
  text-align: left;
}
.custom-icon {
  font-weight: bold;
  font-size: 20px;
  margin-left: 10px;
  flex-shrink: 0;
}
.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #ffffff;
  box-shadow: none;
}
.accordition-title1 {
  text-transform: uppercase;
  font-size: 14px !important;
  color: rgb(28 28 28 / 70%) !important;
  font-family: var(--heading-font-family);
  font-weight: 400;
  line-height: 23.1px;
  letter-spacing: 1.2;
}
.accordition-title2 {
  text-transform: uppercase;
  font-size: 20px !important;
  color: rgb(28 28 28 / 70%) !important;
  font-family: var(--heading-font-family);
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 3.24px;
}
.accordion-header span.accordion-title {
  line-height: 23.1px;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2;
  font-family: var(--heading-font-family);
  color: rgb(28 28 28 / 70%) !important;
}
.accordion-body p,
.accordion-body ul li {
  line-height: 23.1px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1.2;
  font-family: var(--heading-font-family);
  color: rgb(28 28 28 / 70%) !important;
}

/* ===============add to cart =========== */

.product-name {
  font-family: var(--heading-font-family);
  font-family: 400;
  color: rgb(28, 28, 28);
  font-size: 9.6px;
  letter-spacing: 1.728px;
  text-transform: uppercase;
  line-height: 16.32px;
}
.product-price,
.product-size {
  font-family: var(--heading-font-family);
  font-family: 400;
  color: rgb(28, 28, 28);
  font-size: 9.6px;
  letter-spacing: 1.728px;
  text-transform: uppercase;
  line-height: 16.32px;
}
.input-wrapper {
  position: relative;
  width: 125px;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  background: #fff;
}

/* INPUT BOX */
.input-wrapper input[type="number"] {
  width: 100%;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 20px;
  color: #000;
  background: transparent;
  pointer-events: none; /* readonly look */
}

/* BUTTONS */
.input-wrapper .minus,
.input-wrapper .plus {
  position: absolute;
  width: 26px;
  height: 100%;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 25px;
  font-weight: bold;
  color: #444;
  user-select: none;
}

/* LEFT BTN */
.input-wrapper .minus {
  left: 0;
  border-radius: 6px 0 0 6px;
}

/* RIGHT BTN */
.input-wrapper .plus {
  right: 0;
  font-size: 20px;
  border-radius: 0 6px 6px 0;
}

.product-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.input-wrapper input[type="number"]::-webkit-inner-spin-button,
.input-wrapper input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.card-product {
  margin-bottom: 30px;
}

.accorditions-links {
  position: relative;
  text-decoration: none;
}
.links {
  border-right: 1px solid var(--bs-primary-color);
  padding: 0px 5px;
}

.accorditions-links::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: currentColor; /* uses text color */
  transition: all 0.3s ease;
}

.accorditions-links:hover::after {
  width: 0;
  left: 0%;
}

/****************** blog  ******************** */
.read-more-link {
  position: relative;
  display: inline-block;
  color: var(--bs-primary-color);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 2px;
}

.read-more-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--bs-primary-color);
  transition: all 0.3s ease;
}

.read-more-link:hover::after {
  transition: all 0.9s ease;
  width: 0;
  left: 0%;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--bs-primary-color);
  padding: 0;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease;
  font-family: var(--heading-font-family);
}

.read-more-btn:hover {
  text-decoration: underline;
  color: var(--bs-primary-color);
}
.blog-title {
  color: var(--bs-primary-color);
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--heading-font-family);
  font-size: 13.4135px;
  letter-spacing: 2.41442px;
  line-height: 21.4615px;
}
.blog-description {
  color: rgba(33, 37, 41, 0.75);
  cursor: pointer;
  font-weight: 400;
  font-family: var(--heading-font-family);
  font-size: 12px;
  letter-spacing: 2.41442px;
  line-height: 21.4615px;
}

/* **************dashboard ************* */
.dashboard-title {
  color: rgb(28, 28, 28);
  font-size: 18.6269px;
  font-family: var(--heading-font-family);
  font-weight: 400;
  letter-spacing: 2.81285px;
  line-height: 25.0031px;
  text-transform: uppercase;
}
.dashboard-title {
  color: rgb(28, 28, 28);
  font-size: 18.6269px;
  font-family: var(--heading-font-family);
  font-weight: 400;
  letter-spacing: 2.81285px;
  line-height: 25.0031px;
  text-transform: uppercase;
}
.dashboard-order-title {
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.3s;
  padding: 10px 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.animated-underline {
  position: relative;
  text-decoration: none;
  color: #000; /* adjust color as needed */
}

.animated-underline::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.animated-underline:hover::after {
  transform: scaleX(0);
  transform-origin: left;
}
.custom-dark-checkbox {
  width: 20px !important;
  height: 24px !important;
  cursor: pointer;
}

/* Set background when checked */
.custom-dark-checkbox:checked {
  background-color: #000 !important; /* Black background */
  border-color: #000 !important; /* Optional: force border match */
}

/* ******************contact us ************ */
.contact-us p {
  color: rgb(28, 28, 28);
  font-family: var(--heading-font-family);
  font-size: 15px;
  font-weight: 400;
  list-style-position: normal;
  line-height: 23.1px;
}

/* ******************contact us ************ */

/* cheakout *************************** */
.checkout-page {
  padding: 40px 15px;
}

.checkout-page h3.mb-4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.checkout-page .list-group-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 1px solid #000;
}

.checkout-page .list-group-item img {
  width: 80px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 15px;
}

.checkout-page .list-group-item .align-items-center div {
  font-size: 16px;
  font-weight: 500;
}

.checkout-page .list-group-item span {
  font-weight: 600;
  color: #333;
}

.checkout-page h5 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 15px;
}

.checkout-page form label {
  font-weight: 500;
  margin-bottom: 5px;
}

.checkout-page form .form-control,
.checkout-page form textarea {
  border-radius: 5px;
  border: 1px solid #ced4da;
  padding: 10px 12px;
  font-size: 14px;
}

.checkout-page .btn-custom-dark.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  color: #fff !important;
  padding: 12px 30px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.checkout-page .btn-custom-dark.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
  color: #fff !important;
}

/* pagination */
.dots {
  font-size: 22px;
  font-weight: bold;
  padding: 0 7px;
  display: inline-block;
  line-height: 36px; /* same as bootstrap page-link height */
  vertical-align: middle;
  color: #000;
}

.pagination-wrapper ul {
  justify-content: center !important;
  display: flex !important;
}
.pagination li {
  margin: 1px;
}
.pagination-wrapper ul li a {
  color: #000;
}
.pagination-wrapper ul li a.active {
  color: rgb(253, 253, 253);
  background-color: #000000;
}
.active > .page-link,
.page-link.active {
  z-index: 3;
  color: rgb(255, 255, 255) !important;
  background-color: #000 !important;
  border-color: #000 !important;
}
.order-detail-page {
  margin-top: 100px;
}

.press-detail-img {
  height: 500px; /* desktop me badi image */
  width: 100%;
  object-fit: cover; /* image distort na ho */
  border-radius: 8px;
}
.press-description {
  font-family: "Roboto", sans-serif; /* custom font */
  font-size: 18px; /* font size */
  line-height: 1.6; /* spacing between lines */
  color: #333333; /* text color */
  margin-top: 15px;
}
/* ====================================footer ============================== */
.footer-section ul li a {
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.3s;
  padding: 10px 0;
  letter-spacing: 1.5px;
  text-transform: capitalize;
}

.footer-content {
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  /* white-space: nowrap; */
  /* display: inline-block; */
  transition: color 0.3s;
  padding: 10px 0;
  letter-spacing: 1.5px;
  text-transform: capitalize;
}

.footer-section ul li a:hover {
  color: rgb(0, 0, 0);
}
.social-icons {
  color: #777;
  font-size: 20px;
  padding-right: 10px;
}

@media (max-width: 576px) {
  .hero-title {
    text-align: center !important;
  }
  .nav-pills li button {
    font-size: 8.9928px !important;
  }
  .hero-section-3 {
    height: 320px;
  }
  .hero-title-3 {
    text-align: start !important;
  }
  .hero-title-content-3 {
    font-size: 12px !important;
    text-align: start !important;
  }
  .hero-section-3 .content {
    margin: 20px !important;
  }
  .hero-section-3 input {
    width: 100%;
  }

  .login-section,
  .signup-section {
    padding-top: 50px;
  }

  .footer-section h5 {
    font-size: 13px;
    margin-bottom: 1rem;
  }

  .hero-section-2 {
    background-image: url("../../assets/images/background-images/image4.webp");
  }
  .jewels-section {
    background-image: url("../../../assets/images/background-images/mobileimg6.webp");
    height: 70vh;
  }
}
@media (max-width: 768px) {
  .show-cart-sidebar {
    width: 100vw; /* Full screen on mobile */
  }
}

@media (max-width: 991px) {
  body {
    margin-top: 50px !important;
  }
  .offcanvas .nav-links {
    flex-direction: column;
    gap: 12px;
  }

  .offcanvas .nav-links a {
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #eee;
  }
  .navbar-section {
    top: 0px !important;
    position: fixed;
    left: 0px;
    width: 100%;
    z-index: 1050;
    background-color: rgb(255, 255, 255) !important;
    border: 1px solid rgb(221, 221, 221);
  }
  .hero-section {
    height: 256px;
  }
}
@media (min-width: 992px) {
  .add-to-cart-icon {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 20px);
  }

  .product-card:hover .add-to-cart-icon {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}
