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

/* 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: #e9e0e0;
  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;
  }

  .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%;
  }
}

/* Product Section */
#product1 {
  padding: 40px 20px;
  background: #f2f2f2;
}

.pro-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.pro {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.pro:hover {
  transform: translateY(-5px);
}

.pro img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.des {
  padding: 15px;
  text-align: center;
}

.des span {
  display: block;
  color: #999;
  font-size: 14px;
  margin-bottom: 5px;
}

.des h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.add-to-cart {
background: linear-gradient(135deg, #9e3783, #A91E4A);
  color: #ffffff;
  border: none;
  padding: 9px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-family: serif;
  font-size: 15px;
  transition: background 0.3s;
  width: 100%;
  margin-bottom: 8px;
}

.add-to-cart:hover {
  background: linear-gradient(135deg, #9e3783, #A91E4A);
  color: #fff;
}

.buy-now {
  text-decoration: none;
  background: linear-gradient(135deg, #9e3783, #A91E4A);
  color: #ffffff;
  border: none;
  padding: 9px 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
  width: 100%;
  font-family: serif;
  display: inline-block;
  text-align: center;
}

.buy-now:hover {
  background: linear-gradient(135deg, #9e3783, #A91E4A);
  color: #ffffff;
}

/* Responsive Design */
/* Desktop - 4 columns */
@media (min-width: 1200px) {
  .pro-container {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* Tablet - 3 columns */
@media (min-width: 768px) and (max-width: 1199px) {
  .pro-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  #product1 {
    padding: 30px 15px;
  }
}

/* Mobile - 2 columns */
@media (max-width: 767px) {
  .pro-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  #product1 {
    padding: 20px 10px;
  }
  
  .pro img {
    height: 200px;
  }
  
  .des {
    padding: 12px;
  }
  
  .des h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .des span {
    font-size: 13px;
  }
  
  .add-to-cart,
  .buy-now {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Very small mobile - still 2 columns but smaller */
@media (max-width: 480px) {
  .pro-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  #product1 {
    padding: 15px 8px;
  }
  
  .pro img {
    height: 180px;
  }
  
  .des {
    padding: 10px;
  }
  
  .des h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .des span {
    font-size: 12px;
    margin-bottom: 4px;
  }
  
  .add-to-cart,
  .buy-now {
    padding: 7px 10px;
    font-size: 13px;
  }
}

  /* Banner Container Styling */
  #main-banner {
    width: 100%;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

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

  /* Responsive adjustments (optional) */
  @media screen and (max-width: 768px) {
    #main-banner {
      margin-top: 6px;
    }
  }

  @media screen and (max-width: 480px) {
    #main-banner {
      margin-top: 4px;
    }
  }
.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;
  }
}

.image-highlight {
    width: 100%;
    padding: 10px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .image-container {
    max-width: 1400px;
    width: 100%;
    animation: fadeInUp 1.5s ease forwards;
    opacity: 0;
  }

  .image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* Animation Keyframes */
  @keyframes fadeInUp {
    0% {
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .image-highlight {
      padding: 30px 15px;
    }

    .image-container img {
      border-radius: 15px;
    }
  }

  @media (max-width: 480px) {
    .image-highlight {
      padding: 20px 10px;
    }

    .image-container img {
      border-radius: 10px;
    }
  }


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;
}
#view-more-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #000000;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 2%;
    border-radius: 10px     ;
  }
  #view-more-btn:hover {
    background-color: #555;
  }


/* Wishlist Badge Styles */
  .wishlist-badge {
    position: relative;
    display: inline-block;
    margin-left: 5px;
   font-size: 22px;
  }
  
  .wishlist-icon {
    position: relative;
  
    color: #ffffff;
    transition: all 0.3s ease;
  }
  
  .wishlist-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: #f19d01; /* Gold color */
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  /* Animation when adding to wishlist */
  @keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  @keyframes countPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
  }
  
  .wishlist-added {
    animation: heartBeat 0.6s ease;
    color: #ffffff; /* Red color when in wishlist */
  }
  
  .count-updated {
    animation: countPop 0.4s ease;
    background-color: #ff4757; /* Flash red when updated */
  }
  
  /* Floating notification */
  .wishlist-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .wishlist-notification.show {
    opacity: 1;
    bottom: 40px;
  }
  
  .wishlist-notification i {
    color: #d4af37;
  }

 .wishlist-icon-card {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .wishlist-icon-card:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .wishlist-icon-card i {
            font-size: 16px;
            color: #666;
            transition: all 0.3s ease;
        }

      .wishlist-icon-card.active i {
  background-color: #ffffff;
  color: #f70000;
  transform: scale(1.2);
  padding: 8px;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}
.wishlist-icon-card.active {
            background: rgba(255, 71, 87, 0.1);
        }

        /* Animation for adding to wishlist */
        @keyframes heartPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }

        .wishlist-icon-card.pulse {
            animation: heartPulse 0.6s ease;
        }

        /* 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;
    }
/* Discount badge styling */
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
background: linear-gradient(135deg, #dd00a2, #ee004b);
  color: white;
  padding: 5px 8px;
  border-radius: 4px;
  font-weight: bold;
  z-index: 1;
  display: flex;
  margin-left: 7px;
  margin-top: 7px;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.discount-percent {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.discount-amount {
  font-size: 11px;
  opacity: 0.9;
  line-height: 1.2;
}

/* Price styling */
.price-container {
  display: flex;
  flex-direction: column;
  margin: 8px 0;
  gap: 2px;
}

.new-price {
  color: #0a0a0a;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.old-price-container {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-left: 80px;
  margin-bottom: 2px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
}

.dash {
  color: #999;
  margin-right: 5px;
  font-size: 14px;
}

/* Product card */
.pro {
  position: relative;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left; /* Default alignment */
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .pro {
    text-align: center; /* Center all text content */
    padding: 15px 10px; /* Slightly more padding */
  }

  .des {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center children horizontally */
  }

  .price-container {
    align-items: center; /* Center price elements */
  }

  .old-price-container {
    margin-left: 0; /* Remove the large left margin */
    justify-content: center; /* Center the old price elements */
  }

  .discount-badge {
    left: 25%;
    transform: translateX(-50%);
    top: 5px;
    margin-left: 0;
    margin-top: 10px;
  }

  /* Adjust button alignment if needed */
  .add-to-cart, .buy-now {
    width: 80%; /* Make buttons slightly narrower */
    margin-left: auto;
    margin-right: auto;
  }
}

/* For very small devices */
@media (max-width: 480px) {
  .pro {
    padding: 12px 8px;
  }
  
  .new-price, .old-price {
    font-size: 16px; /* Slightly smaller font */
  }
  
  .discount-badge {
    padding: 4px 6px;
  }
  
  .discount-percent {
    font-size: 12px;
  }
  
  .discount-amount {
    font-size: 10px;
  }
}
