/* header nav */
/* Navbar logo style */
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}
.footer-link:hover {
    /* text-decoration: underline; */
    color: #1591ca; /* or change to any color you like */
  }

/* Center the primary nav list (≥ lg) */
@media (min-width: 992px) {
  .navbar-nav-center {
    margin: 0 auto;
  }
}

/* Mega menu positioning */
.dropdown-mega {
  position: static;
}

/* Mega menu content */
.dropdown-mega > .dropdown-menu {
  position: absolute;
  top: 100%; /* Just below nav */
  
  right: 100;
  width: 100vw;
  padding: 4rem 6rem 2rem 6rem;
  background-color:white;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

/* Show mega menu on hover (for large screens) */
@media (min-width: 992px) {
  .dropdown-mega:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* 🔧 Extend hover area above dropdown so it doesn’t close quickly */
@media (min-width: 992px) {
  .dropdown-mega {
    position: relative;
  }

  .dropdown-mega::before {
    content: "";
    position: absolute;
    top: -20px; /* hover zone above menu */
    left: 0;
    height: 20px;
    width: 100%;
    z-index: 1;
  }
}

/* Mega menu titles and links */
.mega-title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.mega-link {
  display: block;
  color: #6c757d;
  margin-bottom: 0.25rem;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

.mega-link:hover {
  color: #212529;
}

/* Responsive image in dropdown */
.dropdown-menu img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.05);
}

/* Adjust form input height */
.form-control {
  height: 38px;
}

/* Hover open for 'Pages' dropdown */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* Optional: fixes small gap jump */
  }
}

/* Remove default caret arrow */
.navbar .dropdown-toggle::after {
  display: none;
}
/* Remove default Bootstrap container padding for mega menu only */
.dropdown-mega > .dropdown-menu .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


/* hover */

/* Base style */
.nav-link.dropdown-toggle {
  color: #333;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
.nav-link.dropdown-toggle:hover {
  color: #000; /* Darker text on hover */
  text-decoration: underline;
}

/* Optional: Rotate arrow icon on hover */
.nav-link.dropdown-toggle:hover .bi-chevron-down {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}












/* navbar cart  */
 /* ========== NAVBAR (unchanged) ========== */
    .navbar-nav-center {                     /* centres menu */
      margin: 0 auto;
    }

    /* ========== OFF‑CANVAS CART ========== */
    .cart-wrapper { position: fixed; inset: 0; pointer-events: none; z-index: 1990; }
    /* sidebar panel */
    .cart-sidebar {
      position: absolute; inset: 0 0 0 auto; /* stick right */
      width: 320px;
      background: #fff;
      box-shadow: -4px 0 15px rgba(0,0,0,.25);
      transform: translateX(100%);
      transition: transform .4s ease;
      overflow-y: auto;
      pointer-events: auto;                  /* keep clickable */
      z-index: 2000;
    }
    /* reveal when targeted */
    #cartSidebar:target { transform: translateX(0); }

    /* header / footer */
    .cart-header,
    .cart-footer { background:#fff; }
    .cart-header { padding:1rem; display:flex; justify-content:space-between; align-items:center; }
    .close-cart { font-size:1.25rem; color:#000; text-decoration:none; }
    .cart-body  { padding:1rem; }

    /* item thumb */
    .item-thumb { width:60px; height:60px; object-fit:cover; border-radius:6px; }

    /* overlay */
    .cart-overlay{
      position:absolute; inset:0;
      background:rgba(0,0,0,.55);
      opacity:0; visibility:hidden;
      transition:opacity .4s;
      pointer-events:auto;
    }
    #cartSidebar:target ~ .cart-overlay{
      opacity:1; visibility:visible;
    }

    /* empty‑state text */
    .empty-cart { color:#666; }
  
/* profile login */
  .dropdown-menu {
  border: none !important;
  box-shadow: none !important;
  background-color: white; /* or your theme color */
}

  















/* slider */
 .carousel-item img {
      height: 450px;
      object-fit: cover;
      filter: brightness(80%);
    }

    .carousel-caption {
      bottom: 20%;
      right: 60%;
    }

    .carousel-caption h2 {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .carousel-caption p {
      font-size: 1.2rem;
    }



    /* discount */

    body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f4f3;
}

.features-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #f8f4f3;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 220px;
  max-width: 320px;
  margin: 10px 0;
}

.icon {
  width: 60px;
  height: 60px;
  border: 2px dashed #f08cc0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 30px;
  height: 30px;
  filter: invert(39%) sepia(88%) saturate(715%) hue-rotate(286deg) brightness(97%) contrast(95%);
}

.feature h4 {
  margin: 0;
  font-weight: 600;
  color: #333;
}

.feature p {
  margin: 3px 0 0;
  font-size: 14px;
  color: #555;
}
.features-section{
    background-color:lightgray;
}






/* product card */

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #333;
}

.collection-section {
  text-align: center;
  padding: 60px 20px;
  max-width: 1400px;
  margin: auto;
}

.sub-heading {
  text-transform: uppercase;
  color: #d63384;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 14px;
}

.main-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.collection-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px 50px; /* vertical gap, horizontal gap */
}

.collection-card {
  width: 220px;
  text-align: center;
    text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.circle-bg {
  background: linear-gradient(to bottom, #f2f2f2 0%, #fbd6f4 100%);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}

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

.collection-card p {
  font-weight: 600;
  font-size: 17px;
  margin: 0;
}

.collection-card span {
  color: #d63384;
  font-weight: 500;
  font-size: 16px;
}
.collection-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}



/* product category layout */
 .collection-card p {
  color: #000;            /* normal text colour */
  text-decoration: none;  /* underline hatao */
  cursor: default;        /* arrow cursor hi dikhe */
  pointer-events: none;   /* poora card clickable rahe, text pe click allowed na ho */
}




/* ----------mens and wman  Perfume Banner Overall Layout ---------- */
.perfume-banner {
  min-height: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
}

/* Banner side wrapper */
.banner-side {
  position: relative;
  flex: 1 1 50%;
  overflow: hidden;
  min-height: 500px;
}

/* Pseudo element for zoom effect */
.banner-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}

/* Assign background images */
.banner-women::before {
  background-image: url('../img/woman.webp');
}

.banner-men::before {
  background-image: url('../img/man.webp');
  background-position: top center;
}

/* Zoom on hover without moving layout */
.banner-side:hover::before {
  transform: scale(1.05);
}

/* Center overlay */
.banner-overlay {
  background: rgba(225, 0, 150, 0.25);
  backdrop-filter: blur(2px);
  padding: 3rem 6rem;
  border-radius: 0.5rem;
  z-index: 2;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

/* Text box */
.banner-box {
  text-align: center;
  transition: transform 0.3s ease;
}
.banner-box:hover {
  transform: scale(1.05);
}

/* Headings */
.banner-overlay h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

/* Button links */
.banner-overlay a {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid #fff;
  transition: all 0.3s ease;
}
.banner-overlay a:hover {
  color: #ffc2e0;
  border-bottom-color: #ffc2e0;
}

/* Page load animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .perfume-banner {
    flex-direction: column;
  }
  .banner-side {
    min-height: 250px;
  }
  .banner-overlay {
    padding: 2rem 2.5rem;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .banner-overlay h2 {
    font-size: 1.5rem;
  }
}.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



      




    /* latest product */

/* Pink heading */
.text-pink {
  color: #e83e8c;
  letter-spacing: 2px;
}

/* Left Promo Banner */
.promo-banner {
  background: url('../img/latestbanner.webp') center center / cover no-repeat;
  min-height: 100%;
  padding: 40px 20px;
  border-radius: 8px;
}

/* right banner */
.promo-banners {
  background: url('../img/latestbanner.2webp.webp') center center / cover no-repeat;
  min-height: 100%;
  padding: 40px 20px;
  border-radius: 8px;
}
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card hover effect - move up and add shadow */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Smooth zoom for image inside the card */
.card img {
  transition: transform 0.4s ease;
}

/* Zoom effect on image */
.card:hover img {
  transform: scale(1.05);
}



/* journey */

body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #222;
    }

    .brand-story-section {
      padding: 80px 0;
    }

    .brand-heading {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .brand-subheading {
      font-size: 1.25rem;
      color: #555;
      margin-bottom: 20px;
    }

    .brand-description {
      font-size: 1rem;
      color: #666;
      margin-bottom: 30px;
      line-height: 1.7;
    }

    .btn-shop-now {
      background-color: #e52cc5;
      color: #fff;
      padding: 12px 28px;
      border-radius: 30px;
      border: none;
      font-weight: 500;
      transition: 0.3s ease;
    }

    .btn-shop-now:hover {
      background-color: #c91cae;
    }

    .brand-images {
      position: relative;
    }

    .main-product-img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }

    .overlay-thumbnail {
      position: absolute;
      top: -40px;
      left: -30px;
      width: 150px;
      border-radius: 8px;
      box-shadow: 0 0 12px rgba(0,0,0,0.2);
      border: 4px solid #fff;
    }

    @media(max-width: 767px) {
      .overlay-thumbnail {
        position: static;
        margin-top: 20px;
      }
    }



  /* bestseller */
  body{font-family:"Inter",sans-serif;background:#fff;color:#222}

    /* ----------  SECTION PADDING  ---------- */
    .menu-section{padding:70px 0}

    /* ----------  COLUMN HEADINGS  ---------- */
    .menu-title{
      font-size:1.4rem;font-weight:700;margin-bottom:25px;letter-spacing:.5px;
      position:relative;display:inline-block;color:#222
    }
    .menu-title::after{content:"";position:absolute;left:0;bottom:-8px;width:50%;height:3px;background:#e52cc5;border-radius:2px}

    /* ----------  PRODUCT CARD  ---------- */
    .product-card{
      display:flex;                         /* side‑by‑side image + info  */
      gap:18px;align-items:center;
      background:#f8f8f8;border-radius:12px;
      padding:14px 18px;margin-bottom:20px;
      height:140px;                        /* कम height  */
      box-shadow:0 4px 12px rgba(0,0,0,0.05);
      transition:.25s ease;
    }
    .product-card:hover{transform:translateY(-4px);box-shadow:0 6px 18px rgba(0,0,0,0.08)}
    .product-img{flex:0 0 120px;height:100%;border-radius:10px;object-fit:cover}
    .product-info h6{font-size:1rem;font-weight:600;margin-bottom:6px}
    .product-info .price{font-weight:700;color:#e52cc5}
    .product-info .old-price{margin-left:6px;color:#888;text-decoration:line-through;font-size:.9rem}




    /*banner  */
    body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  margin: 0;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1);
}

.overlay-box {
  position: absolute;
  top: 50%;
  left: 5%;  /* 👈 From left edge */
  transform: translateY(-50%);  /* 👈 Only vertical centering */
  background: #fff;
  padding: 40px;
  width: 380px;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: left;  /* Optional: left-align text */
}

.overlay-box h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.overlay-box p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.btn-shop {
  background-color: #e52cc5;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-shop:hover {
  background-color: #c91cae;
}

@media(max-width: 768px) {
  .overlay-box {
    left: 50%;  /* 👈 Center for mobile */
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    padding: 25px;
  }
}




/* luxury product */
.section-heading {
  font-weight: 700;
  font-size: 2rem;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: #e52cc5;
  margin: 10px auto 30px;
  border-radius: 2px;
}


/* reviews */

.hero-banner {
  height: 500px;          /* adjust as needed */
  overflow: hidden;
}

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



/* =====  THREE SQUARE BOXES  ===== */
.info-box-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);   /* perfectly centered */
}

.info-box {
  width: 220px;            /* square-ish */
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* mobile: stack the squares */
@media (max-width: 767.98px) {
  .info-box { width: 90%; }
}




/* latest blog */

.blog-card {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      flex: 0 0 40%;  
      border-radius: 0 !important;
               /* two cards in one row */
    }
    .blog-img {
      width: 100%; height: 450px;
      object-fit: cover;
      transition: transform .4s ease;
       border-radius: 0 !important;
    }
    .blog-card:hover .blog-img { transform: scale(1.05); }

    /* bottom overlay */
    .blog-overlay {
      position: absolute;
      bottom: 0; left: 0;
      width: 100%;
      padding: 18px 20px 22px;
      background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.15) 80%, transparent 100%);
      color: #fff;
    }
    .blog-meta { font-size: .8rem; opacity: .9; }
    .blog-meta i { margin-right: .35rem; }
    .blog-title { font-size: 1.05rem; margin-top: 4px; font-weight: 600; }

    /* stack on xs */
    @media (max-width: 575.98px){
      .blog-card { flex: 0 0 100%; }
    }






    /* our post */
    .gallery-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
     
    }
     .body { margin: 0; }





     /* footer */

    .footer-section {
  background-color: #000;
}

.footer-section h5 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-section p, .footer-section a {
  font-size: 0.95rem;
  color: #ccc;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}
