@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
* {margin:0; padding:0; box-sizing:border-box; font-family: 'Poppins', sans-serif;}
body {background:#1e1e1e; color:#f1f1f1; font-size:16px; line-height:1.6;}

/* Top Navbar */
.top-navbar {
  background:#2c2c2c;
  color:#f1f1f1;
  font-size:0.95rem;
  padding:0.8rem 2rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.top-navbar .left {display:flex; gap:2rem;}
.top-navbar .right {display:flex; gap:1.5rem;}
.top-navbar a {color:#f1f1f1; text-decoration:none; transition:0.2s;}
.top-navbar a:hover {color:#9400D3;}

/* Mid Navbar */
.mid-navbar {
  background:#121212;
  padding:1.2rem 2rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 4px 10px rgba(0,0,0,0.5);
  position:sticky;
  top:0;
  z-index:100;
}
.mid-navbar .logo {
  font-size:2rem;
  font-weight:bold;
  color:#9400D3;
  cursor:pointer;
  transition:0.3s;
}
.mid-navbar .logo:hover {color:#f1f1f1; transform:scale(1.05);}
.search-container {flex:1; margin:0 2rem; position:relative;}
.search-container input {
  width:100%;
  padding:0.8rem 1.5rem;
  border-radius:30px;
  border:1px solid #444;
  outline:none;
  background:#1e1e1e;
  color:#f1f1f1;
  transition:0.3s;
}
.search-container input::placeholder {color:#888;}
.search-container input:focus {border-color:#9400D3; box-shadow:0 0 8px #9400D3;}
.search-container i {position:absolute; right:10px; top:50%; transform:translateY(-50%); color:#9400D3;}
.actions {display:flex;}
.actions button {
  margin-left:1rem;
  padding:0.7rem 1.5rem;
  border:none;
  border-radius:30px;
  cursor:pointer;
  font-weight:600;
  font-size:0.95rem;
  transition:0.3s;
}
.buy-now {background:#9400D3 !important; color:#fff;}
.buy-now:hover {background:#f1f1f1 !important; color:#121212;}
.add-cart {background:transparent; border:2px solid #9400D3; background-color:#121212 !important; color:#9400D3 !important;}

/* Bottom Navbar */
.bottom-navbar {
  background:#2c2c2c;
  color:#f1f1f1;
  display:flex;
  justify-content:center;
  gap:2rem;
  padding:1rem 2rem;
  font-weight:500;
  box-shadow:0 2px 8px rgba(0,0,0,0.2);
}
.bottom-navbar a {
  color:#f1f1f1;
  text-decoration:none;
  position:relative;
  transition:0.2s;
  font-size:1rem;
}
.bottom-navbar a:hover {color:#9400D3;}
.bottom-navbar a:hover::after {
  content:'';
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:2px;
  background:#9400D3;
}

/* Mobile Navbar */
.nav-toggle {display:none; font-size:1.8rem; cursor:pointer; color:#9400D3;}
#mobile-menu {
  display:none;
  flex-direction:column;
  gap:1rem;
  background:#121212;
  padding:1rem 2rem;
}
#mobile-menu .search-container, #mobile-menu .actions, #mobile-menu .bottom-navbar {
  display:flex;
  flex-direction:column;
  gap:0.5rem;
  width:100%;
}
#mobile-menu .actions {flex-direction:column;}
#mobile-menu .bottom-navbar {flex-direction:column; align-items:flex-start; gap:0.5rem;}
#mobile-menu .search-container {margin-left:0;}

/* Responsive */
@media(max-width:900px){
  .mid-navbar .search-container, .mid-navbar .actions, .bottom-navbar:not(#mobile-menu .bottom-navbar) {display:none;}
  .nav-toggle {display:block;}
  #mobile-menu.show {display:flex;}
  .top-navbar {display:none;}
}


.hero-slider {
  position: relative;
  width: 95%;
  height: 500px;
  overflow: hidden;
  margin-top: 20px;
  margin: 20px auto 0;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  opacity:0;
  transition: opacity 1s ease-in-out;
  pointer-events: none; 
}

.slide.active {
  opacity:1;
  pointer-events: auto;
}
.slide-content {
  position: absolute;
  top:50%;
  left:10%;
  transform: translateY(-50%);
  color:#fff;
  max-width: 500px;
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.slide-content .buy-now {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 30px;
  background:#004aad;
  color:#fff;
  cursor:pointer;
  font-size:1rem;
  transition:0.3s;
}
.slide-content .buy-now:hover {
  background:#0073e6;
}

.prev, .next {
  position: absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:2rem;
  color:#fff;
  background:rgba(0,0,0,0.3);
  border:none;
  border-radius:50%;
  width:50px;
  height:50px;
  cursor:pointer;
  transition:0.3s;
}
.prev:hover, .next:hover {
  background: rgba(0,0,0,0.6);
}
.prev {left:20px;}
.next {right:20px;}

@media(max-width:900px){
  .slide-content {
    left:5%;
    max-width: 80%;
  }
  .slide-content h2 {font-size:1.8rem;}
  .slide-content p {font-size:1rem;}
  .slide-content .buy-now {font-size:0.9rem; padding:0.6rem 1.5rem;}
}

.product-section {
  width: 90%;
  max-width: 1400px;  
  margin: 30px auto 40px auto;  
  text-align: center;
  box-sizing: border-box;
}


.product-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #9400D3;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, max-content));
  justify-content: center; 
  gap: 25px;
}


/* Product Card - rounded inside container */
.product-card {
  background: #2c2c2c;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  animation: tingle 0.4s ease-in-out;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #9400D3;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
}
.product-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  margin-bottom: 15px;
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-details {
  text-align: center;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.product-specs {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 10px;
}

.price-section {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.current-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #9400D3; 
}

.old-price {
  font-size: 1rem;
  color: #777;
  text-decoration: line-through;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}

.star {
  color: #ff9900; 
  font-size: 1.1rem;
}

.star-empty {
  color: #ccc; 
  font-size: 1.1rem;
}

.review-count {
  color: #fff;
  font-size: 0.85rem;
}

.product-actions {
  display: flex;
  flex-direction: column; /* stack buttons vertically */
  gap: 10px; /* space between buttons */
  margin-top: 10px;
}

.product-actions button {
  flex: 1;
  padding: 0.6rem 0;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
  width: 100% !important;
}

.buy-now {
  background: #004aad;
  color: #fff;
}

.buy-now:hover {
  background: #0073e6;
}

.add-cart {
  background: transparent;
  border: 2px solid #0073e6;
  color: #0073e6;
}

.add-cart:hover {
  background: #0073e6;
  color: #fff;
}

@media(max-width:600px){
  .product-actions {
    flex-direction: column;
  }
}

#cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  height: 100%;
  background: #2c2c2c;
  box-shadow: -4px 0 15px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 1000;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

#cart-drawer.active { right: 0; }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

#cart-items {
  list-style: none;
  padding: 0;
  flex: 1;
  overflow-y: auto;
  margin-bottom: 15px;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-info img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 10px; 
}

.cart-controls button {
  background: #9400d3; /* main orange */
  color: #fff; /* text white */
  border: 1px solid #9400d3; /* border orange */
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 60%; 
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cart-controls button:hover {
  background: #fff; /* hover white */
  color: #9400D3; /* hover orange text */
  border-color: #9400D3; /* border stays orange */
}

.cart-controls span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  min-width: 25px;
  text-align: center;
  display: inline-block;
}

.remove-btn {
  background: #9400D3;
}

.cart-footer {
  border-top: 1px solid #ddd;
  padding-top: 12px;
}

#checkout-btn {
  width: 100%;
  padding: 10px;
  background: #9400d3;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

#checkout-btn:hover {
  background: #fff; /* hover white */
  color: #9400D3; /* hover orange text */
  border: 1px solid #9400D3; /* border orange */
  transition: all 0.3s ease; /* smooth effect */
}

#close-cart {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff4d4d;
  color: white;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

#close-cart:hover {
  background: #cc0000;
  transform: rotate(90deg);
}
#cart-items li {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  gap: 8px;
}


.banner {
  width: 95%;
  max-width: 1400px;   
  height: 500px;     
  background: url(img/slider-img1.jpg) no-repeat center center/cover;
  margin: 20px auto 30px auto;  
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4); 
}

.banner-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.banner-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #004aad;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.banner-btn:hover {
  background: #0073e6;
}

.why-us {
  width: 90%;
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 40px;
  background: #121212; /* lighter background */
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.why-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff; /* dark purple title */
  margin-bottom: 10px;
}

.why-header p {
  color: #fff; /* text same dark purple */
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 50px;
}

.why-layout {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  flex-wrap: wrap;
}

.why-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  flex: 1;
  min-width: 300px;
}

.why-card {
  background: #2c2c2c; /* inner card stays white */
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: 0.3s ease;
  border-left: 4px solid #9400D3; /* accent left border */
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.why-card img {
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff; /* card title color */
  margin-bottom: 10px;
}

.why-card p {
  color: #fff; /* card text color */
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.image-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #f9f9f9;
  padding: 20px 0;
}

.image-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

.image-track img {
  height: 60px;
  margin: 0 30px;
  object-fit: contain;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-70%);
  }
}
.best-selling {
  width: 90%;
  margin: 50px auto;             
  text-align: center;
  padding: 80px 20px;
  background: #9400d3; /* light background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;          
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff; /* dark purple title */
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 15px;
}

.product-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.product-slider-track {
  display: flex;
  transition: transform 0.7s ease;
}

.product-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 40px;
}

.poster-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff; /* inner card */
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 40px;
}

.poster-text {
  flex: 1;
  text-align: left;
}

.poster-text h2 {
  font-size: 1.5rem;
  color: #9400D3; /* primary accent */
}

.poster-text h3 {
  font-size: 1.8rem;
  margin: 10px 0;
  color: #9400d3; /* secondary text */
}

.rating {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  color: #9400D3; /* stars in orange */
}

.poster-image {
  flex: 1;
  text-align: right;
}

.poster-image img {
  width: 400px;
  animation: zoomInOut 4s ease-in-out infinite alternate;
}

.poster-image-1 {
  flex: 1;
  text-align: right;
}

.poster-image-1 img {
  width: 400px;
  height: 250px;
  object-fit: contain;
  animation: zoomInOut 4s ease-in-out infinite alternate;
}

@keyframes zoomInOut {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.product-prev, 
.product-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(71, 71, 71, 0.15); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #9400d3; /* arrow color */
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
  .poster-content {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .poster-text {
    text-align: center;
  }

  .poster-image {
    text-align: center;
  }

  .poster-image img {
    max-width: 320px;
  }

  .section-title {
    font-size: 1.7rem;
  }
}
@media (max-width: 600px) {
  .best-selling {
    padding: 30px 4%;
  }

  .poster-content {
    padding: 20px;
    gap: 20px;
  }

  .poster-text .heading {
    font-size: 1.2rem;
  }

  .poster-text .model {
    font-size: 1.4rem;
  }

  .specs li {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
    font-size: 0.95rem;
  }

  .poster-image img {
    max-width: 250px;
  }

  .product-prev,
  .product-next {
    font-size: 1.2rem;
    padding: 8px 10px;
  }
}

.product-prev:hover, 
.product-next:hover {
  background: rgba(154, 152, 152, 0.4);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.product-prev { left: 40px; }
.product-next { right: 40px; }

@keyframes shinePulse {
  0% { box-shadow: 0 0 10px rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 25px rgba(255,255,255,0.5); }
  100% { box-shadow: 0 0 10px rgba(255,255,255,0.3); }
}

.product-prev, 
.product-next {
  animation: shinePulse 3s infinite ease-in-out;
}

.product-prev {
  left: 25px;   
}

.product-next {
  right: 25px;  
}

.product-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  z-index: 5;
}
.contact-section {
    margin: auto;
    border-radius: 30px;
    width: 95% !important;
    margin-top: 50px;
  /* background: #d8e6fe; */
  color: #000;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
}

.contact-container {
  width: min(90%, 1200px); 
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  background: #2c2c2c !important;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: clamp(30px, 5vw, 60px); 
}

.contact-container {
  width: min(90%, 1200px); 
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.15),
    rgba(0,0,0,0.05)
  ),
  #4d3347; /* main background */
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: clamp(30px, 5vw, 60px); 
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Glossy shine layer */
.contact-container::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 60%;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.25),
    rgba(255,255,255,0)
  );
  transform: rotate(-8deg);
  pointer-events: none;
}


.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-info p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 30px;
}


.info-block h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #fff;
}

.info-block p {
  margin-bottom: 15px;
  color: #fff;
}

.socials {
  margin-top: 20px;
  color: #fff !important;
}

.socials a {
  display: inline-block;
  /* color: #000; */
  margin-right: 15px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #00b4d8;
}

.contact-form {
  flex: 1;
  min-width: 320px;
  background: #a72edb;
  padding: clamp(25px, 4vw, 40px);
  border-radius: 20px;
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 10px 25px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

/* Glossy shine layer */
.contact-form::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 60%;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0)
  );
  transform: rotate(-8deg);
  pointer-events: none;
}


.contact-form h3 {
    color: #fff;
  text-align: center;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  /* background: rgba(56, 11, 11, 0.1); */
  border: none;
  border-radius: 10px;
  padding: 12px 15px;
  color: #000;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #000;
}

.contact-form button {
  background: #2c2c2c;
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  color: #000;
  background: #fff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .contact-form {
    margin-top: 40px;
  }
}
.footer {
  background-color: #2c2c2c; /* dark purple background */
  padding: clamp(40px, 6vw, 60px) 20px 30px;
  font-family: 'Segoe UI', sans-serif;
  color: #fff; /* main text white */
}

.footer-container {
  max-width: 1400px;
  margin: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-brand .logo {
  width: 100px;
  margin-bottom: 15px;
}

.footer-brand h2 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 10px;
  color: #9400D3; /* brand title in orange */
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #fff; /* text white */
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #9400D3; /* social icons orange */
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff; /* hover white */
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links div {
  min-width: 150px;
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #9400D3; /* headings orange */
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #fff; /* links white */
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #9400D3; /* hover orange */
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #fff; /* text white */
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-policies a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff; /* links white */
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: #9400D3; /* hover orange */
}


@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-links div {
    text-align: center;
  }

  .social-icons a {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-policies a {
    margin-left: 10px;
    font-size: 13px;
  }
}

.hdd-store {
  padding: 40px;
  background: #1e1e1e;
  font-family: 'Segoe UI', sans-serif;
}

.hdd-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hdd-filters {
  flex: 1;
  max-width: 250px;
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.hdd-filters h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.hdd-filters ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.hdd-filters li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #fff;
}

.hdd-size-options button {
  margin: 4px;
  padding: 6px 10px;
  border: 1px solid #999;
  background: #9400d3;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s ease;
  color: #fff;
}

.hdd-size-options button:hover {
  background: #333;
  color: #fff;
}

.hdd-products {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 25px;
}

.hdd-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  background: #2c2c2c;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hdd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hdd-card img {
  width: 100%;
  height: 180px; 
  object-fit: contain; 
  border-radius: 8px;
  margin-bottom: 10px;
  background: #2c2c2c; 
  padding: 10px; 
}

.hdd-card h4 {
  font-size: 16px;
  margin: 8px 0;
  color: #fff;
}

.hdd-card .desc {
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

.hdd-card .rating {
  color: #f5b301;
  font-size: 14px;
  margin-bottom: 5px;
}

.hdd-card .stock {
  font-size: 13px;
  color: #0a8a0a;
  margin-bottom: 8px;
}

.hdd-price {
  color: #9400d3;
  font-weight: bold;
  margin-bottom: 10px;
}

.hdd-old-price {
  color: #777;
  text-decoration: line-through;
  margin-left: 5px;
}

.hdd-actions button {
  padding: 8px 12px;
  margin: 5px 3px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.hdd-add-cart {
  background-color: #333;
  color: white;
}

.hdd-buy-now {
  background-color: #e60023;
  color: white;
}

@media (max-width: 900px) {
  .hdd-container {
    flex-direction: column;
  }

  .hdd-filters {
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px; 
    padding: 10px 18px;
    background-color: #1f2937; 
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-btn i {
    font-size: 18px;
  }

  .filter-btn:hover {
    background-color: #374151; 
    transform: translateY(-2px);
  }

  .filter-btn:active {
    transform: translateY(0);
  }

  .pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
  }

  .pagination .page-btn {
    background: #f0f0f0;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.2s;
  }

  .pagination .page-btn:hover {
    background: #0077ff;
    color: white;
  }

  .pagination .page-btn.active {
    background: #0077ff;
    color: white;
  }

  .buy-now-btn {
  background-color: #9400D3; 
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buy-now-btn:hover {
   background: #fff;    /* hover white background */
  color: #000;
  border: 1px solid #9400D3;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.pagination button {
  background: #f2f2f2;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.pagination button:hover {
  background: #ddd;
}

.pagination button.active {
  background: #2c2c2c !important;
  color: #fff;
  font-weight: bold;
}

.pagination span {
  padding: 6px 8px;
  color: #555;
}
.search-container {
  position: relative;
  width: 320px;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 0 0 8px 8px;
}

.search-suggestions .suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-suggestions .suggestion-item:hover {
  background: #f6f6f6;
}

.search-suggestions img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border: 1px solid #eee;
  border-radius: 4px;
}

.search-suggestions .suggestion-name {
  font-size: 14px;
  color: #333;
  line-height: 1.3;
}
#cart-drawer.active {
  right: 0 !important;
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 768px) {
  #cart-drawer {
    width: 100% !important;
    right: -100% !important;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}


.dropbtn {
  text-decoration: none;
  color: #000;
  font-weight: 600;
 
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; 
  left: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-content a {
  color: black;
  padding: 10px 15px;
  text-decoration: none !important;
  display: block;
  transition: background 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #121212;
   text-decoration: none !important;
}

.dropdown:hover .dropdown-content {
  display: block;
}


.btn-23 {
  background: #9400D3;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.btn-23:hover {
  transform: translateY(-2px);
}

.btn-23:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .btn-23 {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 30px;
    letter-spacing: 0.3px;
  }
}

.about-us {
  background-color: #2c2c2c;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
  color: #fff;
}

.about-us .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-us h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #fff;
}

.about-us h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #fff;
  border-left: 4px solid #9400D3;
  padding-left: 10px;
}

.about-us p {
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-us ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.about-us ul li {
  margin-bottom: 10px;
  font-size: 16px;
}


.about-us a {
  color: #0077cc;
  text-decoration: none;
}

.about-us a:hover {
  text-decoration: underline;
}


.about-us p[style] {
  font-size: 18px;
  margin-top: 40px;
  color: #555;
}

@media (max-width: 768px) {
  .about-us h1 {
    font-size: 28px;
  }
  .about-us h2 {
    font-size: 20px;
  }
  .about-us p, .about-us ul li {
    font-size: 15px;
  }
}
.a-63{
  width: 300px;
}
.logo img {
  width: 150px;
  filter: brightness(2.1); /* 1 is original, 1.2 is 20% brighter */
}
.a-33-related-products {
  margin-top: 60px;
  padding: 20px;
  background: #fafafa;
}

.a-33-section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.a-33-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.a-33-products-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
   scrollbar-width: none; 
  -ms-overflow-style: none; 
}

.a-33-product-card {
  flex: 0 0 calc(25% - 20px);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.a-33-product-card:hover {
  transform: translateY(-5px);
}

.a-33-product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 10px;
}

.a-33-product-title {
      font-size: 16px;
    font-weight: 600;
    margin: 10px 0 5px;
    text-align: center;
}

.a-33-product-price {
  font-size: 15px;
    color: green;
    font-weight: 500;
    text-align: center;
}

.a-33-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.a-33-nav-buttons button {
  padding: 8px 18px;
  border: none;
  background: #0073e6;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.a-33-nav-buttons button:hover {
  background: #005bb5;
}
@media screen and (max-width: 768px) {
  .hdd-filters {
    display: none;
    position: fixed; 
    top: 0;
    left: 0;
    width: 80%; 
    height: 100vh;
    background-color: #fff;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
}

.hdd-filters.show {
    display: block;
    transform: translateX(0);
    opacity: 1;
}

  

  .filter-button-container {
    display: flex;
    justify-content: flex-start;
    margin: 10px 0;
  }

  .filter-btn {
    height: 100px;
    background: none !important;
    color: #000 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background-color: #1f2937;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000; 
  }

  .filter-btn:hover {
    background-color: #374151;
  }
}
@media screen and (max-width: 820px) {
  .hdd-filters {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
  }

  .hdd-filters.show {
    display: block;
    transform: translateX(0);
    opacity: 1;
  }
  .filter-btn{
    height: 100px;
    background: none;
    color: #000;
  }
}
@media screen and (max-width: 912px) {
  .hdd-filters {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
  }

  .hdd-filters.show {
    display: block;
    transform: translateX(0);
    opacity: 1;
  }

  .filter-btn {
    height: 100px;
    background: none !important;
    color: #000 !important;
  }
}
@media (min-width: 993px) {
.a-73-dropdown {
  position: relative;
  display: inline-block;
}

.a-73-dropbtn {
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.a-73-dropdown-content {
  display: none;
  position: absolute;
  background-color: #2c2c2c !important;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 10;
}

.a-73-dropdown-content a,
.a-73-dropdown-content .a-73-sub-dropbtn {
  color: #fff !important;
  padding: 10px 16px;
  text-decoration: none !important;
  display: block;
}

.a-73-dropdown-content a:hover,
.a-73-sub-dropbtn:hover {
  background-color: #9400D3 !important;
  text-decoration: none !important;
}

.a-73-dropdown:hover .a-73-dropdown-content {
  display: block;
}

.a-73-sub-dropdown {
  position: relative;
}

.a-73-sub-dropdown-content {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #2c2c2c !important;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 20;
}

.a-73-sub-dropdown:hover .a-73-sub-dropdown-content {
  display: block;
  text-decoration: none !important;
}

  .filter-btn {
    display: none;
  }
}

.a-73-dropbtn {
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.a-73-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 100;
}

.a-73-dropdown-content a,
.a-73-dropdown-content .a-73-sub-dropbtn {
  color: #333;
  padding: 10px 16px;
  text-decoration: none !important;
  display: block;
}

.a-73-dropdown-content a:hover,
.a-73-sub-dropbtn:hover {
  background-color: #f0f0f0;
}

.a-73-sub-dropdown {
  position: relative;
}

.a-73-sub-dropdown-content {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 200;
}

.a-73-dropdown:hover .a-73-dropdown-content,
.a-73-dropdown:focus-within .a-73-dropdown-content {
  display: block;
}

.a-73-sub-dropdown:hover .a-73-sub-dropdown-content,
.a-73-sub-dropdown:focus-within .a-73-sub-dropdown-content {
  display: block;
}

.a-73-dropdown-content {
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s ease-in-out;
}

.a-73-dropdown:hover .a-73-dropdown-content,
.a-73-dropdown:focus-within .a-73-dropdown-content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {

  .a-73-dropbtn {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
  }

  .a-73-dropdown-content {
    position: relative;
    box-shadow: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    min-width: 100%;
    transform: none;
    transition: none;
  }

  .a-73-dropdown-content a {
    padding: 12px 20px;
    font-size: 15px;
  }


  .a-73-sub-dropdown-content {
    position: relative;
    left: 0;
    top: 0;
    box-shadow: none;
    border-left: 3px solid #ddd;
    padding-left: 10px;
  }
}

@media (max-width: 480px) {
  .a-73-dropbtn {
    font-size: 15px;
  }

  .a-73-dropdown-content a {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.mobile-search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  z-index: 9999;
  border: 1px solid #ccc;
  display: none;
  max-height: 300px;
  overflow-y: auto;
}

.mobile-search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 400px; 
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 9999;
  overflow: hidden;
  font-size: 14px; 
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.suggestion-item:hover {
  background: #f0f0f0;
}

.suggestion-item img {
  width: 40px; 
  height: 40px;
  object-fit: contain;
  margin-right: 8px;
  border-radius: 4px;
}

.mobile-search-wrapper {
  display: none;
  padding: 10px;
  background: #fff; 
}

@media (max-width: 992px) {
  .mobile-search-wrapper {
    display: block; 
  }
}


.mobile-search-wrapper .search-container input {
  display: flex;
    justify-content: center; 
    align-items: center;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}


.mobile-search-suggestions {
  position: absolute;
  background: #fff;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 6px;
  z-index: 9999;
  display: none; 
}
.fa-cart-shopping{
  font-size: 20px;
}

.mobile-top-bar {
  display: flex;
  justify-content: flex-end; 
  gap: 10px;
  padding: 10px;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 10000;
}


.mobile-top-bar button {
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}


.mobile-top-bar .add-cart i {
  font-size: 20px;
}


.mobile-top-bar .buy-now {
  background-color: #007bff;
  color: #fff;
}

.mobile-top-bar .add-cart {
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
}


@media (min-width: 993px) {
  .mobile-top-bar {
    display: none;
  }
}
.mid-navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px;
}

.mid-navbar .logo { order: 1; }
.mid-navbar .search-container { order: 2; }
.mid-navbar .actions { order: 3; }

@media (max-width: 992px) {
  .mobile-actions {
    display: flex;
    position: absolute;
    right: 10px;
    top: 10px;
    gap: 8px;
  }

  .mobile-actions button {
    padding: 6px 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
  }

  .mobile-actions .buy-now {
    background-color: #007bff;
    color: #fff;
  }
}

.mobile-actions {
  display: none;
}

@media (max-width: 768px) {
  .mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }


  .mobile-actions .fa-store {
    font-size: 20px;
    color: #9400D3;
  }


  .mobile-actions .fa-cart-shopping {
    font-size: 20px;
    color: #9400D3;
  }

  .mobile-actions button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
  }

  .mobile-actions button:active i {
    transform: scale(0.9);
  }
}


@media only screen 
  and (width: 912px) 
  and (height: 1368px) 
  and (orientation: portrait) 
{
  .mobile-search-wrapper {
    display: none !important;
  }
}
@media only screen 
  and (min-width: 890px) and (max-width: 900px)
  and (min-height: 410px) and (max-height: 420px)
  and (orientation: landscape) 
{
  .mobile-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999 !important;
  }

  .mobile-actions button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
  }

    .mobile-actions .fa-store {
    font-size: 20px;
    color: #9400D3;
  }


  .mobile-actions .fa-cart-shopping {
    font-size: 20px;
    color: #9400D3;
  }

  .search-container{
    width: 90% !important;
  }
}

@media only screen 
  and (min-width: 930px) and (max-width: 935px)
  and (min-height: 428px) and (max-height: 432px)
  and (orientation: landscape)
{
  .mobile-search-wrapper {
    display: none !important;
  }
}

@media only screen 
  and (min-width: 913px) and (max-width: 917px)
  and (min-height: 410px) and (max-height: 414px)
  and (orientation: landscape)
{
  .mobile-search-wrapper {
    display: none !important;
  }
}
@media only screen 
  and (min-width: 815px) and (max-width: 825px)
  and (min-height: 1175px) and (max-height: 1185px)
  and (orientation: portrait)
{
  .mobile-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999 !important;
  }

  .mobile-actions button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
  }

   .mobile-actions .fa-store {
    font-size: 20px;
    color: #9400D3;
  }


  .mobile-actions .fa-cart-shopping {
    font-size: 20px;
    color: #9400D3;
  }

  .search-container{
    width: 90% !important;
  }
}

@media only screen 
  and (min-width: 880px) and (max-width: 885px)
  and (min-height: 342px) and (max-height: 346px)
  and (orientation: landscape)
{
  .mobile-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999 !important;
  }

  .mobile-actions button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
  }

   .mobile-actions .fa-store {
    font-size: 20px;
    color: #9400D3;
  }


  .mobile-actions .fa-cart-shopping {
    font-size: 20px;
    color: #9400D3;
  }

  .search-container {
    width: 90% !important;
  }
}

@media only screen 
  and (min-width: 850px) and (max-width: 855px)
  and (min-height: 1275px) and (max-height: 1285px)
  and (orientation: portrait)
{
  .mobile-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999 !important;
  }

  .mobile-actions button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
  }

   .mobile-actions .fa-store {
    font-size: 20px;
    color: #9400D3;
  }


  .mobile-actions .fa-cart-shopping {
    font-size: 20px;
    color: #9400D3;
  }

  .search-container{
    width: 90% !important;
  }
}

@media only screen 
  and (min-width: 842px) and (max-width: 846px)
  and (min-height: 388px) and (max-height: 392px)
  and (orientation: landscape)
{
  .mobile-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999 !important;
  }

  .mobile-actions button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
  }

    .mobile-actions .fa-store {
    font-size: 20px;
    color: #9400D3;
  }


  .mobile-actions .fa-cart-shopping {
    font-size: 20px;
    color: #9400D3;
  }

  .search-container{
    width: 90% !important;
  }
}

@media only screen 
  and (min-width: 738px) and (max-width: 742px)
  and (min-height: 358px) and (max-height: 362px)
  and (orientation: landscape)
{
  .search-container {
    width: 90% !important;
  }
}

@media only screen 
  and (min-width: 765px) and (max-width: 770px)
  and (min-height: 1020px) and (max-height: 1025px)
  and (orientation: portrait)
{
  .search-container {
    width: 90% !important;
  }
}

@media only screen 
  and (min-width: 718px) and (max-width: 722px)
  and (min-height: 538px) and (max-height: 542px)
  and (orientation: landscape)
{
  .search-container {
    width: 90% !important;
  }
}

@media only screen 
  and (min-width: 665px) and (max-width: 670px)
  and (min-height: 373px) and (max-height: 377px)
  and (orientation: landscape)
{
  .search-container {
    width: 90% !important;
  }
}

@media only screen 
  and (min-width: 538px) and (max-width: 542px)
  and (min-height: 718px) and (max-height: 722px)
  and (orientation: portrait)
{
  .search-container {
    width: 90% !important;
  }
}

/* -------------------- */
/* FAQ SECTION STYLES   */
/* -------------------- */
.faq-section {
  max-width: 1600px; /* background ka max width */
  width: 100%;
  margin: 60px auto;
  padding: 40px 24px; /* thoda extra padding */
  background-color: #2c2c2c; /* full section background */
  color: #fff; /* text color white for contrast */
  box-sizing: border-box;
}

/* Center content inside the FAQ section */
.faq-section .faq-container {
  max-width: 900px; /* content width */
  margin: 0 auto;
}

/* FAQ Title */
.faq-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #fff;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
  color: #fff;
}

.faq-question:hover {
  color: #e0c0ff;
}

/* PLUS ICON */
.faq-question span {
  font-size: 22px;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

/* ROTATE WHEN ACTIVE */
.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 10px 0 16px 0;
  color: #e0d4f0;
  font-size: 15px;
  line-height: 1.6;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .faq-title {
    font-size: 22px;
  }

  .faq-question {
    font-size: 15px;
    padding: 14px 0;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  .faq-section {
    padding: 30px 16px;
  }

  .faq-title {
    font-size: 20px;
  }

  .faq-question span {
    font-size: 20px;
  }
}
