/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Spantax';
}

a{
  text-decoration: none;
  color: #000000;
}


/* Header Styles */
header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
}

/* Top Bar with Scrolling Text */
.header-top-bar {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 4px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 25s linear infinite;
}

.scrolling-text span {
  margin-right: 50px;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Main Navigation */
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(135deg, #511D43, #A91E4A);
  color: white;
  position: relative;
}

.logo img {
  height: 80px;
  padding: 5px 0;
  margin-top: 20px;
}

/* Navbar Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 8px;
  transition: color 0.3s;
  display: block;
  text-transform: uppercase;
  font-weight: 550;
  letter-spacing: 0.8px;
}

.nav-links a:hover {
  color: #eba25d;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 1001 !important;
  border-radius: 0 0 5px 5px;
}

.dropdown-menu li {
  display: block;
  padding: 5px 15px;
}

.dropdown-menu li a {
  color: #333;
  font-size: 15px;
  transition: all 0.3s;
  text-transform: capitalize;
}

.dropdown-menu li a:hover {
  color: #A91E4A;
  padding-left: 5px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Right Nav Icons */
.right-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.right-nav a {
  color: white;
  font-size: 20px;
  position: relative;
  padding: 10px 5px;
}

#cart-count, .wishlist-count {
  background-color: #f19d01;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  right: -5px;
}

.wishlist-count {
  top: 3px;
}

/* User Dropdown */
.user-dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #d5d2d2;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1001 !important;
  border-radius: 4px;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #A91E4A;
}

.user-dropdown:hover .dropdown-content {
  display: block;
}

/* Search Bar */
.search-div {
  padding: 2px 0;
  position: sticky;
  top: 98px;
  z-index: 998;
  background: linear-gradient(135deg, #511D43, #A91E4A);
  margin-bottom: 20px;
}

.search-bar {
  position: relative;
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
}

.search-bar input[type="text"] {
  width: 100%;
  padding: 8px 20px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  outline: none;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.search-bar input[type="text"]:focus {
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.search-bar button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  color: #A91E4A;
  font-size: 18px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .navigation {
    padding: 0 15px;
    flex-wrap: wrap;
  }

  .logo img {
    height: 50px;
  }

  .hamburger {
    display: block;
    order: 1;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
  }

  .logo {
    order: 2;
    flex-grow: 1;
    text-align: center;
  }

  .right-nav {
    order: 3;
    gap: 10px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 150%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    width: 100%;
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
    box-shadow: 0 4px 6px rgb(255, 255, 255);
  }

  .nav-links.active {
    display: flex;
    background-color: #ffffff;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #ffffff;
  }

  .nav-links a {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 20px;
    font-size: 15px;
    text-transform: capitalize;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    padding: 0;
    background-color: #ffffff;
    border-radius: 0;
  }

  .dropdown-menu li {
    padding: 0;
  }

  .dropdown-menu li a {
    padding: 10px 30px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown > a::after {
    float: right;
    font-weight: bold;
  }

  .search-div {
    position: relative;
    top: auto;
    order: 4;
    width: 100%;
    padding: 8px 15px;
  }
  
  .search-bar {
    width: 100%;
  }
}

   /* Slideshow container */
  .slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
  }

  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }

  /* Caption text */
  .slide-caption {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
  }

  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }

  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: #717171;
  }

  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
/* === SECTION STYLING === */
.product-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 4px;
  background-color: #f9f9f9;
  width: 100%;
  box-sizing: border-box;
}

/* Product Card Styling - Reduced height */
.product-card1 {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  width: 300px; /* Default card width */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  padding: 20px 10px; /* Reduced padding */
  position: relative;
  height: auto; /* Let content determine height */
  min-height: 450px; /* Reduced minimum height */
}

/* Hover Effect */
.product-card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

/* Product Image Styling - Reduced height */
.product-card1 img {
  width: 100%;
  height: 280px; /* Reduced from 400px */
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
}

/* Product Name Styling */
.product-card1 h3 {
  font-size: 16px; /* Slightly smaller font */
  margin: 12px 0 8px; /* Reduced margins */
  color: #333;
  font-weight: 500;
  padding: 0 5px;
}

/* Shop Now Button Styling */
.shop-btn1 {
  display: inline-block;
  margin-top: 12px; /* Reduced margin */
  padding: 8px 16px; /* Smaller button */
   background: linear-gradient(135deg, #9e3783, #A91E4A);

  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  font-size: 18px; /* Smaller font */
}

.shop-btn1:hover {
  background-color: #444;
}

/* === RESPONSIVE ADJUSTMENTS === */

/* For medium screens (1024px and below) */
@media screen and (max-width: 1024px) {
  .product-card1 {
    width: calc(50% - 30px);
    max-width: 350px;
    min-height: 420px; /* Slightly smaller for tablets */
  }
  
  .product-card1 img {
    height: 250px; /* Adjusted for medium screens */
  }
}

/* For mobile screens (768px and below) */
@media screen and (max-width: 768px) {
  .product-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 10px;
  }
  
  .product-card1 {
    width: 100%;
    max-width: none;
    min-height: 380px; /* Smaller for mobile */
    padding: 15px 8px;
  }
  
  .product-card1 img {
    height: 220px; /* Smaller images on mobile */
  }
  
  .product-card1:nth-child(4n+1),
  .product-card1:nth-child(4n+2) {
    margin-bottom: 20px; /* Reduced spacing */
  }
}

/* For very small screens (480px and below) */
@media screen and (max-width: 480px) {
  .product-section {
    grid-template-columns: 1fr;
  }
  
  .product-card1 {
    min-height: 350px; /* Most compact */
  }
  
  .product-card1 img {
    height: 200px; /* Smallest image size */
  }
  
  .product-card1 h3 {
    font-size: 15px;
  }
  
  .product-card1:nth-child(4n+1),
  .product-card1:nth-child(4n+2) {
    margin-bottom: 15px;
  }
}

/* One Image Banner Styling */
.single-banner {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.single-banner .banner-wrapper {
  position: relative;
  width: 100%;
  max-height: 500px;
}

.single-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


.section4{
  padding: 40px 80px;
}
#feature{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#feature img{
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
#feature .fe-box{
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
border: 1px solid #cce7d0;
border-radius: 4px;
margin: 15px 0;
}

#feature .fe-box:hover{
  box-shadow:10px 10px 54px rgba(0, 0, 0, 0.03);
}

#feature .fe-box h6{
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: rgb(3, 3, 3);
font-size: 12px;
}

#feature .fe-box:nth-child(2) h6{
background-color: #FFE5B4;
}


#feature .fe-box:nth-child(3) h6{
  background-color: #FFE5B4;
  }


  #feature .fe-box:nth-child(4) h6{
    background-color: #FFE5B4;
    }


    #feature .fe-box:nth-child(5) h6{
      background-color: #FFE5B4;
      }


      #feature .fe-box:nth-child(6) h6{
        background-color: #FFE5B4;
        }


        #feature .fe-box:nth-child(1) h6{
          background-color: #FFE5B4;
          }
          @media (max-width: 1024px) {
            #feature {
              justify-content: center;
              gap: 20px;
            }
          
            #feature .fe-box {
              width: 30%;
            }
          }
          
          @media (max-width: 768px) {
            #feature {
              justify-content: center;
              gap: 15px;
            }
          
            #feature .fe-box {
              width: 30%;
              min-width: 100px;
            }
          }
          
          @media (max-width: 480px) {
            #feature {
              justify-content: center;
              gap: 10px;
            }
          
            #feature .fe-box {
              width: 30%;
            }
          
            .section4 {
              padding: 20px;
            }
          }
          

          .featured-products {
            padding: 40px;
            background-color: #f9f9f9;
            text-align: center;
          }
          .featured-products h2 {
            font-size: 2em;
            margin-bottom: 20px;
          }
          .product-grid1 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
          }
          .product-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 10px;
            transition: transform 0.2s ease;
          }
          .product-card:hover {
            transform: translateY(-5px);
          }
          
          .product-card img {
            width: 100%;
            height: auto;
            border-radius: 4px;
          }
          .product-card h3 {
            font-size: 1.1em;
            margin: 10px 0 5px;
          }
          .product-card p {
            color: #444;
            font-weight: bold;
          }
          .add-to-cart {
            margin-top: 10px;
            background-color: #000000;
            color: white;
            padding: 8px 12px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
          }
          .add-to-cart:hover {
            background-color: #218838;
          }
          .buy-now{
            margin-top: 10px;
            background-color: #000000;
            color: white;
            padding: 8px 12px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
          }

          .buy-now:hover {
            background-color: #218838;
          }

@media (max-width: 1024px) {
  .product-grid1 {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
}

@media (max-width: 480px) {
  .product-grid1 {
    grid-template-columns: repeat(2, 1fr); /* Still 2 cards per row on mobile */
  }
}
.read-more {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #9e3783, #A91E4A);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
  text-align: center;
}

.read-more:hover {
  background-color: #555;
}

/* Bottom Banner Section */
#bottom-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.big-banner {
  position: relative;
  width: 100%;
  height: 300px;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Optional: Overlay for styling or color tint */
.big-banner {
 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay */
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .big-banner {
    /* height: 200px; */
  }

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

@media (max-width: 480px) {
  .big-banner {
    
  }

  .banner-image img {
    object-fit: cover;
  }
}



.section7{
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

.tagline {
  font-size: 1.6rem;
  color: #64045e;
  font-weight: 400;
  margin-top: 2%;
  font-family: spantax;
  text-align: center;
}

.sticky-container {
  display: flex;
  gap: 20px;
  padding: 40px 20px;
  justify-content: center;
  flex-wrap: wrap;
  height: 70%;
}

.sticky-note {
  background-image: url(IMAGES/bgq1.jpg);
  background-size: cover;
  width: 200px;
  height: 200px;
  padding: 20px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
  border: 2px solid #41013d;
  transform: rotate(-2deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
  transition: transform 0.2s ease;
  border-radius: 10px;
  font-family: "Comic Neue", cursive;
  font-weight: 550;
  font-style: normal;
  color: #41013d;
}

.sticky-note:nth-child(2n) {
  transform: rotate(2deg);
}

.sticky-note:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 2;
}

/* Carousel styles */
.sticky-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.carousel-arrow {
  background: rgba(100, 4, 94, 0.7);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 10;
  display: none; /* Hidden by default */
}

.carousel-arrow:hover {
  background: #64045e;
}

/* Mobile styles */
@media (max-width: 768px) {
  .tagline {
    font-size: 1rem; /* Slightly smaller on mobile */
    width: 70%;
    text-align: center;
    padding: 0 20px;
margin-left: 150px;

  }
  
  .sticky-container {
    overflow: hidden;
    width: 240px; /* Slightly larger than note width */
    padding: 40px 0;
  }
  
  .sticky-note {
    display: none;
    margin: 0 auto;
  }
  
  .sticky-note.active {
    display: flex;
  }
  
  .carousel-arrow {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .prev {
    left: 10px;
 font-size: 13px;
  }
  
  .next {
    right: 10px;
     font-size: 13px;
  }
}

  


footer {
  background:linear-gradient(135deg, #511D43, #A91E4A);
  font-family: spantax;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container {
  padding: 20px;
  display: flex;
  gap: 110px;
}

.footer-logo-section {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 100%;
  height: auto;
}

.social-icons-below-logo {
  margin-top: 15px;
}

.social-icons-below-logo .social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.social-icons-below-logo .social-icons li a {
  width: 40px;
  height: 40px;
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons-below-logo .social-icons li a:hover {
  transform: scale(1.1);
  background-color: #f0f0f0;
}

.footer-content {
  flex: 1;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 120px;
}

.footer-section h3 {
  font-size: 14px;
  margin-bottom: 12px;
  color: #fff6f6;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 19px;
  transition: color 0.2s ease;
}

.business-address {
  color: #fff;
  font-size: 19px;
  line-height: 1.5;
  margin-top: 10px;
  max-width: 250px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 2px 2px;
  font-size: 16px;
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }
  
  .footer-logo-section {
    flex: 0 0 auto;
    text-align: center;
    margin-bottom: 5px;
  }
  
  .footer-logo {
    max-width: 100px;
  }
  
  .footer-sections {
    flex-direction: column;
    gap: 15px;
  }
  
  .company-section {
    display: none;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .social-icons-below-logo .social-icons {
    justify-content: center;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 10px 15px;
    font-size: 11px;
  }
  
  /* Hide Shop section on smaller screens */
  .footer-section:nth-child(1) {
    display: none;
  }
  
  .business-address {
    margin: 10px auto;
    text-align: center;
    max-width: 100%;
  }
}

/* Center the footer bottom text */
.footer-bottom .footer-container {
  justify-content: center;
  display: flex;
}
#page-header{
  background-image: url(IMAGES/shop2.jpg);
  width: 100%;
  height: 40vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align:center;
  flex-direction: column;
}

#page-header p,
#page-header h2{
padding: 12px;
margin-right: 40%;
font-weight: 600;
}

#pagination{
 text-align: center;

}

#pagination a{
  text-decoration: none;
  background-color: rgb(5, 5, 5);
  padding: 15px 20px;
  border-radius: 5px;
  color: #ddd;
  font-weight: 600;
}

#pagination a i{
  font-size: 16px;
  font-weight: 600;
}



#prodetails{
  display: flex;
  margin-top:20px ;
}
#prodetails .single-pro-image{
  width: 30%;
  margin-right: 50px;
}

.small-img-group{
  display: flex;
  justify-content: space-between;
}

.small-img-col{
flex-basis: 24%;
 cursor: pointer;
}


#prodetails .single-pro-details{
  width: 50%;
  padding-top: 30px;
}



#prodetails .single-pro-details h4{
  padding: 40px 0 20px 0;
}


#prodetails .single-pro-details h2{
  font-size: 26px;
}

#prodetails .single-pro-details select{
  display: block;
  padding: 5px 10px;
  margin-bottom: 10px;
}

#prodetails .single-pro-details input{
  width: 50px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
  margin-right: 10px;
}


#prodetails .single-pro-details input:focus{
  outline: none;
}
#prodetails .single-pro-details button{
  background: #000000;
  color: #ffffff;
border-radius: 5px;
font-size: 20px;
}






.product-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

.product-image .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-image:hover .default-img {
  opacity: 0;
}

.product-image:hover .hover-img {
  opacity: 1;
}

#logoutOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.692);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    
}

#logoutOverlay div {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 300px;

    
}

.logout-confirm-box{
    border: 1px solid #636060;
}

#logoutOverlay button {
    margin-right: 10px;
    padding: 5px 15px;
    background-color: #511D43;
    border: none;
    cursor: pointer;
    color: whitesmoke;
    border-radius: 4px;
}

#logoutOverlay button:hover{
   background-color: #511d43d4;
}


/* Floating buttons */
    .floating-icons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .floating-icons a {
      background-color: #25D366; /* WhatsApp green */
      color: white;
      padding: 14px;
      border-radius: 50%;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
    }

    .floating-icons a.phone-icon {
      background-color: #007bff; /* Phone blue */
    }

    .floating-icons a:hover {
      opacity: 0.8;
    }

    .floating-icons i {
      font-size: 20px;
    }







/* Suggestions dropdown */
.search-suggestions {
  display: none;
  position: absolute;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  margin-top: 4px;
  box-sizing: border-box;
}

/* Individual suggestion items */
.suggestion-item {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s ease;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item:focus {
  background-color: #f9f9f9;
  color: #b8a07e;
}

.suggestion-item:active {
  background-color: #f0f0f0;
}

/* Scrollbar styling (optional) */
.search-suggestions::-webkit-scrollbar {
  width: 6px;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: #d4c8b1;
  border-radius: 4px;
}

.search-suggestions::-webkit-scrollbar-track {
  background: #f9f9f9;
}

/* Responsive styles */
@media (max-width: 480px) {
  .search-bar {
    max-width: 100%;
    padding: 0 12px;
  }

  .search-bar input[type="text"] {
    font-size: 15px;
    padding: 10px 42px 10px 14px;
  }

  .search-bar button {
    font-size: 16px;
    right: 4px;
    width: 22px;
    height: 22px;
   
  }

  .suggestion-item {
    font-size: 14px;
    padding: 10px 14px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 30px;
    gap: 15px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .right-nav {
    gap: 15px;
  }


}