 #preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #fdfcfb, #e2d1c3); /* Soft elegant background */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

.loader {
  text-align: center;
}

.loader img {
  width: 90px;
  margin: 20px auto 10px;
  animation: fadeIn 2s ease-in-out;
}

.loader p {
  font-family: 'Playfair Display', serif;
  color: #555;
  font-size: 1.1rem;
  animation: fadeIn 2.5s ease-in-out;
}

.circle-animation {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.circle-animation .dot {
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  animation: mist 1.5s infinite ease-in-out;
}

.circle-animation .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.circle-animation .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes mist {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .loader img {
    width: 70px;
  }

  .loader p {
    font-size: 1rem;
  }

  .circle-animation .dot {
    width: 10px;
    height: 10px;
  }
}

/*tricker */
    .ticker-wrapper {
      background: #0b6907;
      color: #fff;
      overflow: hidden;
      white-space: nowrap;
      font-family: Arial, sans-serif;
      font-size: 1.2rem;
      font-weight: bold;
      padding: 12px 0;
      position: relative;
      margin-bottom: 2px;
    }

    .ticker-track {
      display: inline-flex;
      white-space: nowrap;
      will-change: transform;
    }

    .ticker-text {
      padding: 0 80px;
    }
@media (max-width: 768px) {
  .ticker-wrapper {
    font-size: 1rem;
    padding: 10px 0;
  }

  .ticker-text {
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .ticker-wrapper {
    font-size: 0.95rem;
    padding: 8px 0;
  }

  .ticker-text {
    padding: 0 30px;
  }
}

@media (max-width: 360px) {
  .ticker-wrapper {
    font-size: 0.9rem;
    padding: 6px 0;
  }

  .ticker-text {
    padding: 0 20px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #000;
}

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px 30px;
  background: rgba(17, 17, 17, 0.7); /* Transparent black */
  backdrop-filter: blur(10px);       /* Blur glass effect */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
}

.brand-name {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
}


.menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.menu ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #f0c000;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.menu ul li a:hover {
  color: #f0c000;
}

.menu ul li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 60px; /* below navbar */
    right: 20px;
    width: 200px;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 20px;
    display: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .menu.active {
    display: block;
  }

  .menu ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
  }

  .menu ul li {
    list-style: none;
  }

  .menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .menu ul li a:hover {
    background-color: #f0c000;
    color: #000;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
  }
}


/* spray appear */

/* Advertisement Banner Section */
.ad-banner {
  margin-top: 66px; /* Space below navbar */
  width: 100%;
  overflow: hidden;
}

.ad-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: cover;
}



/* new ariivals*/
.new-arrivals {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  justify-items: center;
}

.perfume-item {
  background-color: #fafafa;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  width: 100%;
  max-width: 180px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f39c12;
  color: white;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 8px;
  z-index: 2;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.badge.off {
  background-color: #e74c3c; /* red */
}

.badge.best-seller {
  background-color: #2ecc71; /* green */
}



.perfume-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.perfume-item h3 {
  font-size: 1rem;
  margin: 10px 0 5px;
}

.perfume-item p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 10px;
}

.perfume-item .subtitle {
  font-size: 0.85rem;
  font-style: italic;
  color: #777;
  margin-bottom: 4px;
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background-color: #111;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.shop-btn i {
  margin-right: 6px;
}

.shop-btn:hover {
  background-color: #f0c000;
  color: #000;
  transform: scale(1.05);
}




/* Product Detail Page */
.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 5%;
  background: #fff;
  color: #111;
  align-items: flex-start;
   margin-top: 10px; /* Space below navbar */
}

.product-images {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.product-images #main-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-images .thumbs {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.product-images .thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.product-images .thumbs img:hover {
  border-color: #f0c000;
}

.product-info {
  flex: 1;
  min-width: 280px;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-info .price {
  font-size: 1.5rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-info .notes {
  font-size: 1rem;
  margin-bottom: 15px;
}

.product-info .desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.order-btn {
  background-color: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.order-btn:hover {
  background-color: #f0c000;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .product-detail {
    flex-direction: column;
    align-items: center;
  }
}


/* Container for Men's and Women's Fragrances */
/* Section Title */
.fragrance-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
  padding: 12px 30px;
  border-radius: 18px; /* Slight round corners */
  background: linear-gradient(90deg, #3b31078f, #462a2ac4); /* yellow to white (main state) */
  color: #f7f6ed; /* dark text for contrast */
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* light shadow */
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  cursor: default;
}


.fragrance-section {
  text-align: center; 
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}


/* Grid container unique for fragrance items */
.fragrance-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Single perfume item card */
.fragrance-item {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease;
}

.fragrance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}


.fragrance-item img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.fragrance-item h3 {
  font-size: 1.2rem;
  margin: 8px 0 4px;
  font-weight: 600;
  color: #222;
}

.fragrance-item p {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #333;
}

.subtitle {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-bottom: 4px;
}

.price {
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
  font-weight: 400;
  font-size: 0.95rem;
}

/* Shop Now Button unique class */
.fragrance-shop-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.fragrance-shop-btn i {
  margin-right: 6px;
}

.fragrance-shop-btn:hover {
  background-color: #444;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .fragrance-title {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .fragrance-products {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .fragrance-shop-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 320px) {
  .fragrance-products {
    grid-template-columns: 1fr;
  }
}


/* Responsive */


@media (max-width: 1024px) {
  .perfume-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .perfume-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .menu {
    position: absolute;
    top: 70px;
    right: 30px;
    background: #111;
    width: 200px;
    display: none;
    border-radius: 10px;
  }

  .menu ul {
    flex-direction: column;
    padding: 15px 0;
    gap: 15px;
  }

  .menu.show {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}


.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1 1 220px;
}

.footer-logo {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.footer h2,
.footer h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.footer p,
.footer li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social .social-icons a {
  color: #ccc;
  font-size: 18px;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #aaa;
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}

/* whatapp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: #25D366;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }

  .whatsapp-label {
    position: absolute;
    right: 70px;
    background-color: #25D366;
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInRight 0.5s ease-in-out;
  }

  .whatsapp-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
  }

  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

/* About us */
.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-heading {
  font-family: 'Cormorant', serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222222;
}

.about-text {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.8;
  color: #555555;
}

/* contact us*/
.contact-order-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 1rem;
  background: #fdfdfd;
  border-top: 1px solid #eee;
  justify-content: center;
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  justify-content: space-around;
}

.form-box {
  flex: 1 1 400px;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-box h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.2rem;
  color: #222;
  font-size: 1.6rem;
  text-align: center;
}

.input-group {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.input-group textarea {
  height: 100px;
}

.order-now-logo-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1rem 0;
}

.order-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
}




button[type="submit"] {
  background: #222;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background: #444;
}

.popup-message {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #6ada5c;
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(56, 68, 11, 0.829);
  z-index: 1000;
  animation: fadeInOut 3s ease forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(20px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px); }
}


/*review section*/
.review-section {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
  display: none;
}
.review-heading {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
}
.review-carousel {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.review-card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
}
.review-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.review-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}
.rating {
  color: gold;
  margin-bottom: 10px;
}
.review-dots {
  margin-top: 20px;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.dot.active {
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .review-carousel {
    flex-direction: column;
    align-items: center;
  }
}


