
:root {
  --primary-color: rgba(110, 5, 110, 0.966);
  --primary-hover: rgb(196, 94, 196);
  --secondary-color: rgb(236, 208, 136);
  --secondary-hover: rgb(207, 132, 33);
  --accent-blue: #0078d4;
  --accent-blue-hover: #005fa3;
  --danger-color: #c2185b;
  --danger-hover: #ad1457;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1da851;
  --footer-gold: #ffd700;
  --text-light: #ffffff;
  --text-dark: #333333;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.beamgold{
    width: 1550px;
    width: 100%;
    margin: auto;
    overflow-x: hidden;
    /* background-color: #800080; */
  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;  
    list-style: none;
}

.header {
  display: flex;
  position: fixed;
  width: 100%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px 0px 0px;
  background-color: var(--primary-color);
  color: var(--text-light);
  flex-wrap: wrap;
  z-index: 1000;
}



.logo img {
  width: 40%;
  margin-left: 20px;
}

/* Navigation links */
.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 16;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  padding: 5px 0;
  font-size: 18px;
}

.nav a:hover {
  color: var(--secondary-hover);
}
/* Help dropdown */
.help-dropdown {
  position: relative;
}

.help-dropdown > a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 180px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.help-dropdown:hover .dropdown-content {
  display: block;
}

/* Right section */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Search bar */
.search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 0px 20px 20px 0px;
  overflow: hidden;
}

.search-bar input {
  padding: 10px 12px;
  border: none;
  outline-style: none;
  width: 400px;
  font-size: 16px;
  border-radius: 0px 0px 0px 0px;
}

.search-btn {
  padding: 10px 12px;
  /* background-color: var(--secondary-color); */
  background-color: rgb(227, 190, 141);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 0px 20px 20px 0px;
  cursor: pointer;
}

.search-btn:hover {
  background-color: var(--secondary-hover);
}

/* Account and cart */
.account-cart {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 20px;
}

.account-dropdown {
  position: relative;
}


.account {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
}

.account-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  border-radius: 4px;
  z-index: 1000;
}

.account-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.account-menu a:hover {
  background-color: #f1f1f1;
}

.account-dropdown:hover .account-menu {
  display: block;
}


.cart-wrapper {
  position: relative;
  font-size: 20px;
  color: var(--text-light);
  cursor: pointer;
  background-color: var(--secondary-hover);
  padding: 10px 15px;
  border-radius: 50%;
  margin-right: 10px;
}


.cart-wrapper:hover .cart-icon {
  color: var(--danger-color);
}




.cart-count-badge {
  background-color: red;
  color: var(--text-light);
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
}


/* Hamburger menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
}



/* ==========SIDEBAR SIGNIN AND REGISTER============ */

.auth-sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  padding: 20px;
}

.auth-sidebar.active {
  right: 0;
  display: block;
}

.auth-box h3 {
  margin-top: 0;
}

.auth-box input,
.auth-box select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

.auth-box button {
  padding: 10px;
  width: 100%;
  margin-top: 10px;
  background-color: rgb(110, 5, 110);
  color: white;
  border: none;
  cursor: pointer;
  transition: border-radius 0.4s ease, background-color 0.3s ease;
}

.auth-box button:hover{
  background-color: rgb(165, 41, 165);
  border-radius: 20px;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 40px;
}

.input-group {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.input-group input {
  width: 100%;
  padding-right: 40px; /* space for icon */
  box-sizing: border-box;
}

.toggle-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #666;
}


.forgot-link {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
}

.close-btn {
  background-color: #ccc;
  margin-top: 10px;
}

.btn-loader {
  margin-left: 10px;
  font-size: 16px;
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}





/* ==========ANIMATED TOASTS============ */

.toast-success {
  animation: bounceIn 0.5s ease;
}

.toast-error {
  animation: shakeIn 0.5s ease;
}

.toast-info {
  animation: fadeInUp 0.5s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes shakeIn {
  0% { transform: translateX(-100px); opacity: 0; }
  50% { transform: translateX(10px); opacity: 1; }
  100% { transform: translateX(0); }
}

@keyframes fadeInUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}






/* ==========MOVING INFORMATIONE============ */

.info-ticker {
  /* position: fixed; */
  /* top: 90px; */
  width: 100%;
  background-color:white;
  color: rgb(176, 31, 176);
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  /* z-index: 10; */
  height: 40px;
  display: flex;                                    
  align-items: center;
  /* padding-left: 10px; */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ticker-content {
  display: inline-block;
  animation: scrollTicker 50s linear infinite;
}

@keyframes scrollTicker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}




/* ==========HERO SECTION LANDINGPAGE============ */


.landing-hero {
  position: relative;
  /* height: 100vh; */
  overflow: hidden;
}

.carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}

.carousel-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  /* color: rgb(110, 5, 110); */
  color:black;
  text-align: center;
  padding: 250px 0px;
}

.hero-content h1{
 font-weight: 700;
 font-size: 50px;
 width: 80%;
 margin: auto;
 margin-bottom: 25px;
 /* color: #DA70DC; */
 color: #fff;
}

.hero-content p{
 /* font-weight: 700; */
 font-size: 30px;
 width: 50%;
 margin: auto;
 color: #fff;
 margin-bottom: 10px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  /* margin-bottom: 300px; */
  padding: 13px 40px;
  background-color: rgb(227, 190, 141);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
}

.cta-btn:hover {
  background-color: var(--secondary-hover);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.5s;
}

.delay-2 {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🎥 Video Background Styling */
/* .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
} */



/* ================PRODUCTS / CATEGORIES============= */


 .featured-categories {
  position: relative;
  z-index: 10;
  padding: 25px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  margin: 20px 0PX;
  color: #333;
}
 .category-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px;
}

.category-card {
  background-color: #800080;
  border-radius: 12px;
  padding: 55px;
  width: 300px;
  /* height: 300px; */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px);
}

.overlay h3 {
  font-size: 21px;
  margin-bottom: 10px;
  color: #fff;
}

.category-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: rgb(227, 190, 141);
  padding: 8px 16px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
}

.category-btn:hover{
  background-color: var(--secondary-hover);
  color: #800080;
}

.category-count{
  font-size: 21px;
  color: #fff;
}
/* Subcategory Section */
.subcategory-grid {
  margin-top: 50px;
  text-align: center;
}

.subcategory-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.subcategory-card {
  background-color: #f9f9f9;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.subcategory-card:hover {
  background-color: #C8A2C8;
}

/* Fade-in Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  display: none;
}






    <!-- /* ================FEATURES PRODUCTS / SEARCH AND FILTER SECTION============= */ -->

.product-page {
  padding: 10px 20px;
  text-align: center;
}

#pageTitle {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--text-dark);
}



.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 60px;
  padding: 0 20px;
}



.product-card {
  width: 250px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  transform: scale(1.02);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* Ensures image fills space without distortion */
  border-radius: 6px;
}

.product-name {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px;
  text-align: center;
}

.product-price {
  font-size: 15px;
  color: var(--success-color);
  text-align: center;
  font-weight: 600;
}

#productDisplay {
  margin-top: 60px; /* Increased from 40px */
}

.product-stock {
  font-size: 17px;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 700;
}

.product-rating {
  margin: 8px 0;
  color: var(--secondary-color);
  font-size: 16px;
}

.no-products {
  text-align: center;
  padding: 2rem;
  color: #555;
  font-style: italic;
}

.add-to-cart {
  width: 90%;
  margin-top: 10px;
  background-color: var(--primary-color);
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  align-self: center;
  color: var(--text-light);
}

.add-to-cart:hover {
  background-color: var(--primary-hover);
}

.pagination-controls {
  text-align: center;
  margin: 30px 0;
}

.pagination-controls button {
  padding: 8px 16px;
  margin: 0 10px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#pageIndicator {
  font-weight: bold;
}

.add-to-cart:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}


<!-- /* ================TESTIMONIAL SECTION============= */ -->

/* TESTIMONIAL PAGE */


.testimonial-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f0f4f8, #d9e4f5);
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
}

.carousel-wrapper {
  max-width: 80%;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.testimonial-card {
  flex: 0 0 90%;
  max-width: 90%;
  min-width: 250px;
  scroll-snap-align: start;
  margin: 0 auto;
  padding: 50px;
  background: #DA70DC;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  animation: fadeIn 0.8s ease forwards;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.customer-name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.review-date {
  font-size: 12px;
  color: #dfd0d0;
  margin-bottom: 10px;
}

.stars {
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.feedback {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.testimonial-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #DA70DC;
}

/* Tablet: 2 cards per row */
@media (min-width: 600px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

/* Desktop: 3 cards per row */
@media (min-width: 900px) {
  .testimonial-card {
    flex: 0 0 calc(33.33% - 15px);
    max-width: calc(33.33% - 15px);
  }
}

/* Large desktop: 4 cards per row */
@media (min-width: 1200px) {
  .testimonial-card {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
  }
}

.swipe-hint {
  text-align: center;
  font-size: 14px;
  color: rgb(114, 3, 114);
  margin-top: 10px;
  display: none;
}

@media (max-width: 599px) {
  .swipe-hint {
    display: block;
  }
}
<!-- /* ================CUSTOMER DASHBOARD============= */ -->


#dashboardWrapper,
#adminDashboardWrapper {
  clear: both;
  position: relative;
  z-index: 1;
  margin-top: 20PX;
  width: 100%;
  background-color: #fdfdfd;
  padding: 120px 20px;
}
.customer-dashboard,
.admin-dashboard {
  display: flex;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}
.dashboard-sidebar {
  width: 300px;
  background-color: rgb(110, 5, 110);
  color: white;
  padding: 20px;
  border-radius: 8px;
}
.dashboard-sidebar h2 {
  margin-bottom: 20px;
  font-size: 18px;
}
.dashboard-sidebar ul {
  list-style: none;
  padding: 0;
}
.dashboard-sidebar li {
  margin: 15px 0;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}
.dashboard-sidebar li:hover {
  background-color: rgb(133, 11, 133);
  padding-left: 10px;
}
.dashboard-content {
  flex: 1;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.dashboard-section {
  display: none;
}
.dashboard-section.active {
  display: block;
}


/* DASHBOARD PROFILE */
#profileForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

#profileForm label {
  font-weight: bold;
  margin-top: 10px;
}

#profileForm input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#profileForm button {
  margin-top: 15px;
  padding: 10px;
  background-color: rgb(110, 5, 110);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#profileForm button:hover {
  background-color: rgb(165, 41, 165);
}


/* DASHBOARD ORDER */
.order-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.order-table th, .order-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.order-table th {
  background-color: greenyellow;
  font-weight: bold;
}

.status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
}

.status.shipped {
  background-color: #d4edda;
  color: #155724;
}

.status.pending {
  background-color: #fff3cd;
  color: #856404;
}

.order-table button {
  padding: 6px 12px;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.order-table button:hover {
  background-color: #005a9e;
}

.status {
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
}
.status.pending { background-color: orange; }
.status.shipped { background-color: green; }
.status.delivered { background-color: blue; }
.status.cancelled { background-color: red; }

.order-filter {
  margin-bottom: 20px;
}

.order-filter select {
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
}


/* DASHBOARD ORDER ORDER-MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 20px;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}

.close-btn1 {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: rgb(110, 5, 110);
}




/* image preview modal */
.previewmodal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}



.previewmodal-content {
  max-width: 90%;
  max-height: 80%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
}

.previewclose {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


/* Wallet Section Container */

.dashboard-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

/* Balance Display */
#walletBalance {
  font-weight: bold;
  color: #007bff;
}

/* Fund Wallet Button */
.dashboard-section button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.dashboard-section button:hover {
  background-color: #218838;
}

/* Transaction History Header */
.dashboard-section h4 {
  margin-top: 30px;
  font-size: 20px;
  color: #444;
}

/* Transaction Table */
.transaction-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.transaction-table th,
.transaction-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.transaction-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #555;
}

.transaction-table tr:hover {
  background-color: #f1f1f1;
}

/* Wallet Payment Checkbox */
label[for="useWallet"],
#useWallet {
  font-size: 15px;
  color: #333;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wallet-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #333;
  margin-top: 15px;
}

.wallet-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

#walletBalance {
  font-weight: bold;
  color: #007bff;
}

/* Confirm Button */
#confirmBtn {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #28a745;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#confirmBtn:hover {
  background-color: #218838;
}

#confirmBtn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Spinner */
#spinner {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  animation: pulse 1s infinite;
}

.spinner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  font-weight: bold;
  color: #555;
}

.spinner-icon {
  width: 40px;
  height: 40px;
  border: 5px solid #ccc;
  border-top: 5px solid var(--accent-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Simple pulse animation for spinner */
@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}


<!-- /* ================ADMIN USER DASHBOARD============= */ -->

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  padding: 8px 12px;
  border: 1px solid #ccc;
  text-align: left;
}

thead {
  background-color: #f4f4f4;
}
th {
  background-color: #f4f4f4;
}


.adminsearch {
  margin-bottom: 10px;
  padding: 8px 12px;
  background-color: rgb(165, 41, 165);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.adminsearch:hover {
  background-color: var(--secondary-color);
}

.admininputsearch {
  width: 100%;
  max-width: 300px;
  padding: 10px 12px;
  margin-bottom: 15px;
   border: 1px solid var(--secondary-color);
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.admininputsearch:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  outline: none;
} 

.search-wrapper {
  position: relative;
  display: inline-block;
}

.search-wrapper input {
  padding-left: 30px;
}

.search-wrapper::before {
  /* content: "🔍"; */
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888;
}

/* Container styling (optional) */
.order-filter-wrapper {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Dropdown styling */
#orderStatusFilter {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover and focus effects */
#orderStatusFilter:hover,
#orderStatusFilter:focus {
  border-color: goldenrod;
  background-color: #fff;
  outline: none;
}

/* Optional: style each option */
#orderStatusFilter option {
  padding: 6px;
  background-color: #fff;
  color: #333;
}

/* Wallet Section Wrapper */
.wallet-section {
  padding: 20px;
  background-color: #fdfdfd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Section Title */
.wallet-section h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #333;
}

/* Search Input */
#walletSearchInput {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid goldenrod;
  border-radius: 6px;
  margin-bottom: 12px;
  width: 250px;
  max-width: 100%;
  transition: border-color 0.2s ease;
}

#walletSearchInput:focus {
  border-color: #007bff;
  outline: none;
}

/* Wallet Table */
#walletTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.exportbtn{
  margin-bottom: 10px;
  padding: 8px 12px;
  background-color: purple;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
.exportbtn:hover{
  background-color: rgb(176, 31, 176);
}

#walletTable th,
#walletTable td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

#walletTable th {
  background-color: #f5f5f5;
  font-weight: 600;
  color: #444;
}

#walletTable tr:hover {
  background-color: #f0f8ff;
}

#productSearchInput {
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 250px;
}

#productTable {
  width: 100%;
  border-collapse: collapse;
}

#productTable th,
#productTable td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

#productTable th {
  background-color: #f5f5f5;
  font-weight: bold;
}


.product-form {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  max-width: 600px;
  width: 100%;
}

.product-form h3 {
  margin-bottom: 16px;
  font-size: 22px;
  color: #333;
}

.product-form input[type="text"],
.product-form input[type="number"],
.product-form input[type="file"],
.product-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.product-form input:focus,
.product-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.product-form button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.product-form button:hover {
  background-color: #0056b3;
}

.delete-button {
  background-color: #dc3545;
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.2s ease;
}

.delete-button:hover {
  background-color: #c82333;
}




#editProductForm {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: 'Segoe UI', sans-serif;
}

#editProductForm input[type="text"],
#editProductForm input[type="number"],
#editProductForm input[type="file"],
#editProductForm select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

#editProductForm button[type="submit"] {
  padding: 0.75rem;
  background-color: #0078D4;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#editProductForm button[type="submit"]:hover {
  background-color: #005fa3;
}



/* Container for buttons (optional) */
.action-buttons {
  display: flex;
  gap: 0.5rem;
}

/* Edit Button */
.edit-btn {
  background-color: #0078D4;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.edit-btn:hover {
  background-color: #005fa3;
}

/* Delete Button */
.delete-btn {
  background-color: #d83b01;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.delete-btn:hover {
  background-color: #a52800;
}


/* General styling for both dropdowns */
select[name="main"],
select[name="category"] {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  appearance: none; /* Removes default arrow styling */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35 50 L70 90 L105 50' stroke='%23333' stroke-width='15' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
  margin: 0.5rem 0;
}

select[name="mainCategory"]:focus,
select[name="subcategory"]:focus {
  border-color: #0078D4;
  outline: none;
}

/* Optional: Label styling */
label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  color: #444;
}


<!-- /* ================SIDEBAR CART AND CHECKOUT============= */ -->


/* SIDEBAR CARTS */

.cart-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  padding: 20px;
  z-index: 1000;
}


.cart-sidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-cart {
  font-size: 24px;
  cursor: pointer;
}

.cart-items {
  margin-top: 20px;
  max-height: 60vh;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.qty-controls {
  margin-top: 8px;
  display: flex;
  gap: 6px;
}



.qty-controls button {
  margin-right: 5px;
  padding: 4px 8px;
  font-size: 14px;
}

.cart-footer {
  margin-top: 20px;
}

.cart-footer button {
  width: 100%;
  padding: 10px;
  background-color: rgb(110, 5, 110);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.cart-footer button:hover {
background-color: rgb(165, 41, 165);
}

.cart-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}



/* CHECK OUT PAGES */

.checkout-page {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.checkout-page h2 {
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.checkout-section {
  margin-bottom: 30px;
}

.checkout-section h3 {
  margin-bottom: 15px;
  color: #c2185b;
}

.checkout-section ul {
  list-style: none;
  padding: 0;
}

.checkout-section ul li {
  margin-bottom: 8px;
}

.checkout-section input, .checkout-section select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.checkout-section button {
  width: 100%;
  padding: 12px;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  cursor: pointer;
}


.payment-option input[type="radio"] {
  margin: 0;
  accent-color: #0078d4;
  transform: scale(1.2);
}

.payment-option label {
  cursor: pointer;
}

.spinner {
    display: none;
    margin-top: 10px;
    text-align: center;
  }
  .spinner img {
    width: 40px;
  }
  .disabled {
    opacity: 0.6;
    pointer-events: none;
  }



/* THANK YOU PAGE */
.thank-you-page {
  max-width: 700px;
  margin: 60px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.thank-you-page h2 {
  color: #c2185b;
  margin-bottom: 20px;
}

.order-summary, .delivery-info, .track-order {
  text-align: left;
  margin-top: 30px;
}

.order-summary ul {
  list-style: none;
  padding: 0;
}

.order-summary ul li {
  margin-bottom: 8px;
}

.thankyoubtn {
  margin-top: 30px;
  padding: 12px 20px;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}


/* INVOICE PAGE */

.invoice-container {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.invoice-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table th, table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

table th {
  background-color: #f0f0f0;
}

.actions {
  margin-top: 30px;
  text-align: center;
}

.actions button {
  padding: 10px 20px;
  background-color: #0078D4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.actions button:hover {
  background-color: #005fa3;
}

.actions a {
  display: inline-block;
  margin-left: 20px;
  color: #0078D4;
  text-decoration: none;
}


ABOUY ME MODAL
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.modal-content.about-modal {
  background: #fff;
  padding: 30px;
  max-width: 800px;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.close-btn2 {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: rgb(110, 5, 110);
}

.about-image img {
  width: 300px; /* ⬆️ Increased from 200px */
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.about-image img:hover {
  transform: scale(1.05); /* Optional: subtle zoom on hover */
}
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-highlights {
  list-style: none;
  padding: 0;
}

.about-highlights li {
  margin: 8px 0;
  font-size: 1.05em;
}


/* LAST FOOTER */

.site-footer {
  
  color: white;
  padding: 40px 20px 20px;
  font-size: 14px;
  overflow-x: auto;
  background-color: rgb(110, 5, 110);
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 30px;
  max-width: 100%;
  overflow-x: auto;
}

.footer-section {
  flex: 0 0 auto;
  min-width: 220px;
  max-width: 300px;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #ffd700;
}

.footer-section p {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: white;
  padding: 6px 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background-color: #ffd700;
  color: rgb(110, 5, 110);
  transform: scale(1.2);
}


.footer-map .map-container {
  margin-top: 10px;
  position: relative;
}

.footer-map .map-container iframe {
  width: 100%;
  max-width: 280px;
  height: 180px;
}


.direction-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #ffd700;
  color: #333;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
}

.direction-btn:hover {
  text-decoration: none;
  background-color: #e0c200;
}

.whatsapp-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #25D366;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.whatsapp-link i {
  margin-right: 6px;
}

.whatsapp-link:hover {
  text-decoration: none;
  background-color: #1da851;
}

.business-hours {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.business-hours li {
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  width: 100%;
}


.footer-bottom a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 5px;
}

/* scroll up */
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  /* display: none; */
  /* background-color:  rgb(227, 190, 141); */
  /* color: white; */
  border: none;
  padding: 6px 8PX;
  border-radius: 70%;
  cursor: pointer;
  font-size: 20px;
  z-index: 1200;
}

#scrollToTop:hover {
  background-color:  rgb(207, 132, 33);
}



/* WHATSAPP FLOATING */
.whatsapp-wrapper {
  position: fixed;
  bottom: 20px;
  right: 1400px;
  z-index: 1000;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.3);
  animation: ripple 2s infinite ease-out;
  z-index: 1;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 1.5;
  }
  100% {
    transform: scale(2);
    opacity: 1;
  }
}


<!-- /* ================SIDEBAR CART AND CHECKOUT============= */ -->









@media (max-width: 480px) {
  .header {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px 0px 0px 0px;
    position: relative;
  }

  .logo img {
    width: 140px;
    margin-bottom: 10px;
  }

  .search-bar {
    display: flex;
    width: 100%;
    margin: 0px 10px 5px 5px;
  }

  .search-bar input {
    width: 75%;
    font-size: 14px;
    padding: 8px;
  }

  .search-btn {
    font-size: 14px;
    width: 25%;
    padding: 8px;
    white-space: nowrap;
  }

  .account-cart {
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    gap: 10px;
  }

  .menu-toggle {
    display: block;
    font-size: 24px;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--primary-color);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 10px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

.account {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  cursor: pointer;
}
  /* Account Menu */
  .account-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }

  .account-menu a {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

    .cart-sidebar {
    right: -100%;
    transition: right 0.3s ease;
  }

  .cart-sidebar.open {
    right: 0;
  }

  /* Info Ticker */
  .info-ticker {
    width: 100%;
    font-size: 13px;
    height: 30px;
    padding-left: 10px;
  }

  /* Hero Section */
  .hero-content {
    padding: 100px 0px;
  }

  .hero-content h1,
  .hero-content p {
    width: 90%;
    font-size: 24px;
  }

  .cta-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  /* Category Grid */
  .category-grid {
    flex-direction: column;
    align-items: center;
  }

  .category-card {
    width: 90%;
    margin-bottom: 20px;
  }

  .subcategory-list {
    flex-direction: column;
    gap: 10px;
  }

  .subcategory-card {
    width: 90%;
    margin: auto;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    padding: 0 10px;
  }

  .product-card {
    width: 100%;
    height: auto;
  }

  .product-card img {
    height: 160px;
  }

  /* Dashboard */
  .customer-dashboard,
  .admin-dashboard {
    display: flex;
    flex-direction: column;
    padding: 10px;
   
  }

  .dashboard-sidebar {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 6px;
  }

  .dashboard-content {
    width: 100%;
    padding: 10px;
  }


   .dashboard-section {
    display: none;
    width: 100%;
  }

  .dashboard-section.active {
    display: block;
  }

  /* Table responsiveness */
  table {
    font-size: 13px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Buttons and form spacing */
  .dashboard-section button,
  .dashboard-section input,
  .dashboard-section select {
    font-size: 14px;
    width: 100%;
    margin-bottom: 10px;
  }

  /* Tables */
  table {
    font-size: 12px;
    overflow-x: auto;
    display: block;
  }

  /* Modals */
  .modal-content,
  .previewmodal-content {
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
  }

  /* Cart Sidebar */
  .cart-sidebar {
    width: 100%;
    padding: 15px;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-thumb {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-section {
    width: 100%;
  }

  .footer-map .map-container iframe {
    max-width: 100%;
    height: 150px;
  }

  /* WhatsApp Float */
   .whatsapp-wrapper {
  position: fixed;
  bottom: 20px;
  right: auto;
  margin-left: 15px;
  z-index: 1000;
   
  }

   .whatsapp-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.wave {
  width: 30px;
  height: 30px;
}
  /* Scroll to Top Button */
  #scrollToTop {
    right: 20px;
    left: auto;
    bottom: 20px;
    font-size: 20px;
    padding: 8px 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  #scrollToTop:hover {
    background-color: var(--secondary-hover);
  }
}




@media (min-width: 481px) and (max-width: 768px) {
  /* Header */
.header {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px 0px 0px 0px;
    position: relative;
  }

  .logo img {
    width: 160px;
    margin-bottom: 10px;
  }

  .search-bar {
    display: flex;
    width: 100%;
    margin: 0px 10px 5px 5px;
  }


  .search-bar input {
    width: 80%;
    font-size: 14px;
    padding: 8px;
  }

  .search-btn {
    font-size: 14px;
    width: 20%;
    padding: 8px;
    white-space: nowrap;
  }

  .account-cart {
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--primary-color);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .account-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;

  }

   .account-menu a {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
     .cart-sidebar {
    right: -100%;
    transition: right 0.3s ease;
    /* padding: 10px 20px; */
  }

  .cart-sidebar.open {
    right: 10px;
  }

    /* Info Ticker */
 .info-ticker {
    width: 100%;
    font-size: 13px;
    height: 30px;
    padding-left: 10px;
  }
  /* Hero Section */
  .hero-content {
    padding: 100px 0px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 45px;
    width: 90%;
  }

  .hero-content p {
    font-size: 30px;
    width: 90%;
  }

  .cta-btn {
    font-size: 16px;
    padding: 12px 24px;
  }

  /* Category Grid */
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 0 15px;
  }

  .category-card {
    width: 100%;
  }

  .subcategory-list {
    flex-wrap: wrap;
    gap: 15px;
  }

  .subcategory-card {
    width: 48%;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 0 15px;
  }

  .product-card img {
    height: 180px;
  }

  /* Dashboard */
  .customer-dashboard,
  .admin-dashboard {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
  }

  .dashboard-sidebar {
    width: 35%;
  }

  .dashboard-content {
    width: 65%;
  }

  .dashboard-section {
    display: none;
    width: 100%;
  }

  .dashboard-section.active {
    display: block;
  }

  /* Tables */
  table {
    font-size: 14px;
    overflow-x: auto;
    display: block;
  }

  /* Modals */
  .modal-content,
  .previewmodal-content {
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }

  /* Cart Sidebar */
  .cart-sidebar {
    width: 100%;
    padding: 20px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .footer-section {
    width: 100%;
  }

  .footer-map iframe {
    width: 100%;
    height: 180px;
  }

  /* Floating Buttons */

  /* WhatsApp Float */
  /* WhatsApp Float */
   .whatsapp-wrapper {
  position: fixed;
  bottom: 20px;
  right: auto;
  margin-left: 25px;
  z-index: 1000;
   
  }

   .whatsapp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.wave {
  width: 40px;
  height: 40px;
}

  /* Scroll to Top Button */
  #scrollToTop {
    right: 20px;
    left: auto;
    bottom: 20px;
    font-size: 20px;
    padding: 8px 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  #scrollToTop:hover {
    background-color: var(--secondary-hover);
  }
}

  
@media (min-width: 769px) and (max-width: 1104px) {

.header {
  width: 100%;
  justify-content: center;
  height: 110px;
}

.logo{
  width: 15%;
  display: flex;
  justify-content: space-evenly;
}

.logo img {
  margin-left: 15px;
}

.nav{
  width: 20%;
  justify-content: center;
}

.header-right{
  width: 65%;
  gap: 5px;
  justify-content: space-evenly;
  margin-right: -10px;
  /* margin-bottom: 15px; */
}
.account {

  font-weight: 400;
  font-size: 15px;

}
.search-bar {
width: 50%;
height: 40px;
margin-left: 10px;
}
.search-bar input {
  width: 80%;
}
.search-btn {
  width: 20%;
}

.nav a {
font-weight: 400;
font-size: 12px;
}

 .hero-content {
    padding: 150px 0px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 45px;
    width: 70%;
    margin: 20px auto;
  }

  .hero-content p {
    font-size: 30px;
    width: 70%;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
  }

  .footer-section {
    flex: 1 1 45%; /* Two columns per row */
    min-width: 300px;
  }

  .footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-section p,
  .footer-section ul li,
  .footer-section a {
    font-size: 15px;
    line-height: 1.6;
  }

  .social-icons a {
    font-size: 18px;
    margin-right: 15px;
  }

  .footer-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 6px;
  }

  .direction-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    padding: 8px 12px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
  }

  .whatsapp-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
    color: #25D366;
    text-decoration: none;
  }

  .business-hours li {
    font-size: 14px;
    margin-bottom: 5px;
  }

  #scrollToTop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    font-size: 20px;
    padding: 10px 12px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
  }

  .footer-bottom {
    text-align: center;
    font-size: 14px;
    padding: 20px;
  }

  .footer-bottom a {
    text-decoration: underline;
    margin: 0 5px;
  }

   /* WhatsApp Float */
   .whatsapp-wrapper {
  position: fixed;
  bottom: 20px;
  right: auto;
  margin-left: 25px;
  z-index: 1000;
   
  }

   .whatsapp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.wave {
  width: 40px;
  height: 40px;
}
}




@media (min-width: 1105px) and (max-width: 1280px) {

.header {
  display: flex;
  position: fixed;
  width: 100%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px 0px 0px;
  background-color: var(--primary-color);
  color: var(--text-light);
  flex-wrap: wrap;
  z-index: 1000;
}

.logo{
  width: 15%;
  display: flex;
  justify-content: space-evenly;
}

.logo img {
  margin-left: 15px;
}

.nav{
  width: 20%;
  justify-content: center;
}

.header-right{
  width: 65%;
  gap: 5px;
  justify-content: space-evenly;
  margin-right: -10px;
  /* margin-bottom: 15px; */
}
.account {

  font-weight: 400;
  font-size: 15px;

}
.search-bar {
width: 50%;
height: 40px;
margin-left: 10px;
}
.search-bar input {
  width: 75%;
}
.search-btn {
  width: 25%;
}

.nav a {
font-weight: 400;
font-size: 15px;
}

  /* WhatsApp Float */
   .whatsapp-wrapper {
  position: fixed;
  bottom: 20px;
  right: auto;
  margin-left: 25px;
  z-index: 1000;
   
  }

   .whatsapp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.wave {
  width: 40px;
  height: 40px;
}


}


@media (min-width: 1281px) and (max-width: 1550px) {

.logo{
  width: 15%;
  display: flex;
  justify-content: space-evenly;
}

.logo img {
  margin-left: 15px;
}

.nav{
  width: 20%;
  justify-content: center;
}

.header-right{
  width: 65%;
  gap: 5px;
  justify-content: space-evenly;
  margin-right: -10px;
  /* margin-bottom: 15px; */
}
.account {

  font-weight: 400;
  font-size: 15px;

}
.search-bar {
width: 50%;
height: 40px;
margin-left: 10px;
}
.search-bar input {
  width: 80%;
}
.search-btn {
  width: 20%;
}

.navqqq a {
font-weight: 400;
font-size: 12px;
}

}