* {
  font-family: "Tuffy", sans-serif;
}

/* navbar css starts here  */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* Fix for alignment typo in your original code */
.countdown-container {
  align-items: center;
  /* corrected from aliign-items */
}

.navbar-nav .nav-item .nav-link {
  font-size: 15px;
  font-weight: 500;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu.custom-dropdown {
  background-color: #fff;
  /* border-top: 5px solid #b5fd0d; */
  /* box-shadow: 0px 8px 25px rgba(134, 181, 25, 0.15); */
  padding: 2rem 2.5rem;
  border-radius: 0 0 12px 12px;
  min-width: 180px;
}

.dropdown-menu.custom-dropdown .col {
  /* min-width: 200px; */
  padding: 0 1rem;
}

.dropdown-menu.custom-dropdown h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
  font-size: 1.1rem;
  position: relative;
}

.dropdown-menu.custom-dropdown h6::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #c70808;
  border-radius: 2px;
}

.dropdown-menu.custom-dropdown a {
  text-decoration: none;
  display: block;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 0;
  color: #212529;
  position: relative;
  transition: all 0.3s ease;
}

.dropdown-menu.custom-dropdown a:hover {
  color: #fd6d0d;
  transform: translateX(5px);
}

.dropdown-menu.custom-dropdown a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #fd6d0d;
  transition: width 0.3s ease;
}

.dropdown-menu.custom-dropdown a:hover::before {
  width: 100%;
}

/* navbar css ends her  */

/* ------------------------------------ */

/* footer css starts here  */
.footer-link a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.8rem;
}

.footer-text {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.footer-link ul li {
  display: flex;
}


.footer-social-icon i {
  height: 1.5rem;
  width: 1.5rem;
  background-color: #000;
  color: #E1CFB9;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.footer-social-icon i:hover {
  color: #E1CFB9;
  background-color: #000;
}

/* footer css ends here  */

/* ---------------------------------------- */

/* product card css starts here */
.filter-buttons {
  margin-bottom: 20px;
  text-align: center;
}

.filter-btn {
  margin: 0 5px;
  padding: 8px 15px;
  background-color: #fff;
  color: #000;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: #c70808;
  color: white;
}

.filter-btn.active {
  background-color: #c70808;
  color: white;
}

.product-item {
  display: none;
}

.product-item.show {
  display: block;
}

.product-image {
  height: 400px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s ease-in-out;
}

.product-image .primary-image {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.product-image .secondary-image {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.product-image:hover .primary-image {
  opacity: 0;
}

.product-image:hover .secondary-image {
  opacity: 1;
}

.spot span {
  font-size: 14px;
}

.spot-name {
  font-size: 10px;
  background-color: #7a5d49;
  color: #fff;
  padding: 0 2px 0 2px;
}

.cart {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background-color: #E1CFB9;
  color: #000;
}

/* product card css ends here */

/* --------------------------------------- */

/* testimonial css starts here  */
.testimonial-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.testimonial-card {
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 15px;
  position: relative;
  transition: transform 0.3s ease;
}

.client-image {
  height: 350px;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.client-info p {
  color: #000;
  font-size: 15px;
}

.swiper-pagination-bullet-active {
  background: red !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: red;
  opacity: 1;
  width: 44px;
  height: 44px;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex !important;
  /* Force display */
  align-items: center;
  justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
}

/* testimonial css ends here  */

/* ---------------------------------------- */

/* side icons css starts here  */
.side-icon-bar {
  position: fixed;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
  /* border-radius: 10px 0 0 10px; */
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* Individual Icons */
.icon-hover {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  /* background-color: #000; */
  /* border-radius: 50%; */
  transition: background-color 0.3s, color 0.3s;
}

/* Icon Styling */
.icon-hover i {
  color: #000;
  font-size: 17px;
}

/* Hover Effects */
.icon-hover:hover {
  background-color: rgb(221, 218, 218);
  color: black;
}

/* side icons css ends here  */

/* ---------------------------------------- */

/* bestseller page css  */
.filter-section {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.filter-title {
  font-weight: 500;
  cursor: pointer;
}

/* celebrity spotlight */
.image-wrapper {
  position: relative;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-wrapper:hover .product-overlay {
  opacity: 1;
}

/* bestseller page css ends here */

/* ---------------------------------------- */

/* mobile Bottom Navigation css starts here  */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 8px 0;
}

.mobile-bottom-nav .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  font-size: 0.8rem;
}

.mobile-bottom-nav .nav-link i {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.mobile-bottom-nav .nav-link span {
  font-size: 0.7rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

.whatsapp-float i {
  font-size: 1rem;
}

/* Add padding to the body to prevent content from being hidden behind the mobile nav */
@media (max-width: 991.98px) {
  body {
    padding-bottom: 60px;
  }
}

/* mobile bottom navigation css ends here   */


        .policy-card {
            background: white;
            border-left: 4px solid #000;
            padding: 25px 30px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .policy-card h4 {
            font-weight: 600;
            margin-bottom: 15px;
        }

        .policy-card ul {
            padding-left: 1.2rem;
        }
        .policy-card i {
           color: #E1CFB9;
        }
