
    body {
      padding-top: 70px; /* Space for fixed navbar */
    }
.navbar {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1040;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .navbar-brand {
      font-family: 'Georgia', serif;
      font-weight: 700;
      font-size: 1.8rem;
      color: #2c2c2c;
      letter-spacing: 1px;
      transition: all 0.3s ease;
    }

    .navbar-brand:hover {
      color: #8B0000;
      transform: scale(1.03);
    }

    .nav-link {
      color: #333;
      font-weight: 500;
      position: relative;
      transition: all 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #8B0000;
      bottom: 0;
      left: 0;
      transition: width 0.3s;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-link:hover {
      color: #8B0000;
    }

    .nav-icon {
      font-size: 1.2rem;
      margin-right: 8px;
    }

    .cart-count {
      position: absolute;
      top: -4px;
      right: -6px;
      background-color: crimson;
      color: white;
      border-radius: 50%;
      font-size: 0.7rem;
      padding: 2px 5px;
    }

    .nav-user {
      font-size: 0.9rem;
      color: #555;
    }

    .mobile-top {
      display: none;
    }

    @media (max-width: 768px) {
      .mobile-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        background-color: #fff;
        border-bottom: 1px solid #ddd;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1050;
      }

      .navbar {
        display: none;
      }
    }



/*  product card design  */

.gradient-title {
background: linear-gradient(90deg, #111, #333, #111);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.product-card {
transition: all 0.3s ease;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-body button {
transition: all 0.3s ease;
}

.card-body button:hover {
background-color: #000;
color: #fff;
transform: scale(1.05);
}



/*  Footer section css   */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

body {
font-family: 'Poppins', sans-serif;
}

.glass-footer {
background: linear-gradient(to bottom right, #f1f1f1, #e4e4e4);
box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.1);
border-top-left-radius: 50px;
border-top-right-radius: 50px;
position: relative;
overflow: hidden;
z-index: 1;
}

.footer-title {
font-weight: 600;
margin-bottom: 1rem;
color: #222;
}

.footer-link {
color: #555;
text-decoration: none;
transition: all 0.3s ease;
}

.footer-link:hover {
color: #000;
transform: translateX(5px);
}

.social-icons a {
color: #333;
font-size: 18px;
margin-right: 15px;
transition: all 0.3s ease;
}
.social-icons a:hover {
color: #000;
transform: scale(1.2);
}

#particles-js {
position: absolute;
width: 100%;
height: 100%;
background: transparent;
z-index: 0;
top: 0;
left: 0;
}

.blockquote {
font-size: 14px;
font-style: italic;
color: #333;
}

.quote-box img {
filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}



/*  Footer css   */

.brand-logo {
font-family: 'Playfair Display', serif;
font-weight: 800;
font-size: 2.2rem;
color: #212529;
letter-spacing: 2px;
display: flex;
gap: 0.3rem;
cursor: default;
}

.brand-letter {
display: inline-block;
opacity: 0;
transform: translateY(40px);
}

.badge-feature {
background-color: #e5dac6;
color: #3d2f1f;
font-size: 0.85rem;
padding: 4px 10px;
border-radius: 20px;
margin: 4px 4px 4px 0;
display: inline-block;
font-weight: 600;
}

.trust-feature {
font-size: 0.9rem;
color: #6c757d;
margin-top: 0.5rem;
display: flex;
align-items: center;
}

.trust-feature i {
color: #b28d4f;
margin-right: 8px;
}



/* Flip logo animation */
.flip-text {
  display: inline-block;
  animation: flipIn 1s ease-in-out;
  transform-origin: left;
  font-weight: 700;
  font-size: 2rem;
  color: #212529;
}

@keyframes flipIn {
  0% { transform: rotateY(90deg); opacity: 0; }
  100% { transform: rotateY(0deg); opacity: 1; }
}

/* Background container with Lottie */
.footer-bg {
  position: relative;
  background-color: #f8f9fa;
  overflow: hidden;
}

.footer-bg .lottie-bg {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
}

.footer-content {
  position: relative;
  z-index: 1;
}

/* Hover underline luxury effect */
.footer-link {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background-color: #b28d4f;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #b28d4f !important;
}

.footer-link:hover::after {
  width: 100%;
}

/* Button and input styles */
.btn-gold {
  background-color: #b28d4f;
  color: white;
  border: none;
}

.btn-gold:hover {
  background-color: #98743b;
}

.form-control:focus {
  border-color: #b28d4f;
  box-shadow: 0 0 0 0.2rem rgba(178, 141, 79, 0.25);
}

/* hero section css that will fit the image in mobile view as well as */


.hero-suit-banner-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: white;
  padding: 1rem;
  width: 90%;
  max-width: 600px;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}


.hero-banner-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding: 5%;
}

.hero-banner-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-btn {
  border: 2px solid white;
  transition: all 0.4s ease-in-out;
  padding: 0.6rem 2rem;
}

.hero-btn:hover {
  background-color: white;
  color: black;
}

@media (max-width: 768px) {
  .hero-banner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }


  .hero-banner-title {
    font-size: 1.8rem;
    padding: 0%;
  }

  .hero-banner-subtitle {
    font-size: 1rem;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }

  .hero-banner-content {
    padding: 0.5rem;
    width: 95%;
  }
}



@media (max-width: 576px) {
  .hero-banner-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.5rem;
    width: 90%;
  }

  .hero-banner-title {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .hero-banner-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    margin-top: -3%;
  }

  .hero-btn {
    font-size: 0.9rem;
    padding: 0.4rem 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-btn {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    margin-top: 0.5rem;
  }

  .hero-banner-content {
    padding-bottom: 0.5rem;
  }
}

/* End of css for hero section */