@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:#f9f9f9; color:#333; font-size:16px; line-height:1.6;}

/* TOP NAVBAR */
.top-navbar {background:#f0f0f0; color:#555; 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:#555; text-decoration:none; transition:0.2s;}
.top-navbar a:hover {color:#0073e6;}

/* MID NAVBAR */
.mid-navbar {background:#fff; padding:1.2rem 2rem; display:flex; justify-content:space-between; align-items:center; box-shadow:0 4px 10px rgba(0,0,0,0.1); position:sticky; top:0; z-index:100;}
.mid-navbar .logo {font-size:2rem; font-weight:bold; color:#0073e6; cursor:pointer; transition:0.3s;}
.mid-navbar .logo:hover {color:#ff7f00; 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 #ccc; outline:none; background:#fff; color:#333; transition:0.3s;}
.search-container input::placeholder {color:#aaa;}
.search-container input:focus {border-color:#0073e6; box-shadow:0 0 8px #0073e6;}
.search-container i {position:absolute; right:10px; top:50%; transform:translateY(-50%); color:#0073e6;}
.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:#ff7f00; color:#fff;}
.buy-now:hover {background:#0073e6;}
.add-cart {background:transparent; border:2px solid #0073e6; background-color:#0073e6; color: #fff;}

/* BOTTOM NAVBAR */
.bottom-navbar {background:#e6f0ff; color:#333; display:flex; justify-content:center; gap:2rem; padding:1rem 2rem; font-weight:500; box-shadow:0 2px 8px rgba(0,0,0,0.05);}
.bottom-navbar a {color:#333; text-decoration:none; position:relative; transition:0.2s; font-size:1rem;}
.bottom-navbar a:hover {color:#0073e6;}
.bottom-navbar a:hover::after {content:''; position:absolute; bottom:-4px; left:0; width:100%; height:2px; background:#0073e6;}
.bottom-navbar .dropdown {position:relative;}
.bottom-navbar .dropdown-content {display:none; position:absolute; background:#fff; color:#333; top:3rem; left:0; min-width:200px; box-shadow:0 4px 10px rgba(0,0,0,0.1); border-radius:5px; overflow:hidden; z-index:10;}
.bottom-navbar .dropdown-content a {display:block; padding:0.8rem 1.2rem; color:#333; text-decoration:none; transition:0.2s;}
.bottom-navbar .dropdown-content a:hover {background:#0073e6; color:#fff;}
.bottom-navbar .dropdown:hover .dropdown-content {display:block;}


/* NAV TOGGLE */
.nav-toggle {display:none; font-size:1.8rem; cursor:pointer; color:#0073e6;}

/* MOBILE MENU */
#mobile-menu {display:none; flex-direction:column; gap:1rem; background:#fff; 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 {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left align instead of center */
  gap: 0.5rem;
  width: 100%;
  margin-left: 0; /* thoda left spacing agar chahiye */
}


/* RESPONSIVE */
@media(max-width:900px){
  /* Hide desktop elements */
  .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; /* prevent interaction with hidden slides */
}

.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:#ff7f00;
  color:#fff;
  cursor:pointer;
  font-size:1rem;
  transition:0.3s;
}
.slide-content .buy-now:hover {
  background:#0073e6;
}

/* Nav buttons */
.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;}

/* RESPONSIVE */
@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;   /* apni marzi ka border box width */
  margin: 30px auto 40px auto;  /* top=20px, left/right=auto, bottom=40px */
  text-align: center;
  box-sizing: border-box;
}

.product-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #0073e6;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, max-content));
  justify-content: center; /* center align karega */
  gap: 25px;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 18px;
  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 */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff4c4c;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
}

/* Image */
.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 */
.product-details {
  text-align: center;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.product-specs {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

/* Price Section */
.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: #B12704; /* Amazon red */
}

.old-price {
  font-size: 1rem;
  color: #777;
  text-decoration: line-through;
}

/* Rating */
.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}

.star {
  color: #ff9900; /* filled gold star */
  font-size: 1.1rem;
}

.star-empty {
  color: #ccc; /* empty gray star */
  font-size: 1.1rem;
}

.review-count {
  color: #666;
  font-size: 0.85rem;
}

/* Buttons */
.product-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  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;
}

/* Buy Now Button */
.buy-now {
  background: #ff7f00;
  color: #fff;
}

.buy-now:hover {
  background: #0073e6;
}

/* Add to Cart Button */
.add-cart {
  background: transparent;
  border: 2px solid #0073e6;
  color: #0073e6;
}

.add-cart:hover {
  background: #0073e6;
  color: #fff;
}

/* Hover Tingling Animation */


/* Responsive */
@media(max-width:600px){
  .product-actions {
    flex-direction: column;
  }
}

/* Cart Drawer */
#cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  height: 100%;
  background: #fff;
  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; /* thoda aur spacing */
}

.cart-controls button {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #ccc;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 50%; /* circle buttons ban gaye */
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* Hover effect */
.cart-controls button:hover {
  background: #0073e6;
  color: #fff;
  border-color: #0073e6;
}

/* Quantity text */
.cart-controls span {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  min-width: 25px;
  text-align: center;
  display: inline-block;
}

.remove-btn {
  background: #ff4c4c;
}

.cart-footer {
  border-top: 1px solid #ddd;
  padding-top: 12px;
}

#checkout-btn {
  width: 100%;
  padding: 10px;
  background: #ff7f00;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

#checkout-btn:hover {
  background: #0073e6;
}
/* Close Button */
#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; /* ab row ke bajaye column */
  align-items: flex-start;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  gap: 8px;
}

/* Add To Card end here  */

/* Banner Section */
.banner {
  width: 95%;
  max-width: 1400px;   /* banner ki max width fix kar di */
  height: 500px;       /* apni marzi se adjust kar sakte ho */
  background: url(img/camera.webp) no-repeat center center/cover;
  margin: 20px auto 30px auto;  /* 👈 yahan auto ka matlab hai left-right se center */
  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); /* dark overlay for text visibility */
}

.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: #ff7f00;
  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: #d8e7ff; /* soft light blue/gray 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: #0f172a;
  margin-bottom: 10px;
}

.why-header p {
  color: #475569;
  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: #ffffff;
  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;
}

.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: #0f172a;
  margin-bottom: 10px;
}

.why-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}
/* <-------- Why-US-Section End --------> */
.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;             /* center horizontally */
  text-align: center;
  padding: 80px 20px;
  background: #d8e6fe;
  position: relative;
  border-radius: 20px;           /* 👈 rounded corners */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* soft depth */
}
.best-selling {
  background: linear-gradient(145deg, rgba(255,255,255,0.7), rgba(216,230,254,0.9));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* background: rgba(255, 255, 255, 0.1); */
  /* backdrop-filter: blur(8px); */
  padding: 10px 20px;
  border-radius: 15px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); */
}

/* Product Slider */
.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;
  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: #e63946;
}

.poster-text h3 {
  font-size: 1.8rem;
  margin: 10px 0;
}

.rating {
  display: block; /* 👈 Yeh line ensure karegi ke nayi line se start ho */
  margin-top: 10px;
  font-size: 1rem;
  color: #ffcc00;
}

.poster-image {
  flex: 1;
  text-align: right;
}

.poster-image img {
  width: 400px;
  animation: zoomInOut 4s ease-in-out infinite alternate;
}

@keyframes zoomInOut {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* Buttons */
.product-prev, 
.product-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(71, 71, 71, 0.15); /* glassy background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000;
  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);
}
/* Tablet (≤ 992px) */
@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;
  }
}

/* Mobile (≤ 600px) */
@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;
  }
}

/* Hover Effects */
.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);
}

/* Button Position */
.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;   /* 👈 visible outside poster-card */
}

.product-next {
  right: 25px;  /* 👈 visible outside poster-card */
}

/* Just in case parent hides overflow */
.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); /* 👈 prevents over-stretching */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(216, 230, 254, 0.9));
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: clamp(30px, 5vw, 60px); /* 👈 scales smoothly on zoom */
}

/* Left side */
.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: #000;
  line-height: 1.6;
  margin-bottom: 30px;
}

.info-block h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #000;
}

.info-block p {
  margin-bottom: 15px;
  color: #000;
}

.socials {
  margin-top: 20px;
}

.socials a {
  display: inline-block;
  color: #000;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #00b4d8;
}

/* Right side */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.07);
  padding: clamp(25px, 4vw, 40px);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.contact-form h3 {
  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: #00b4d8;
  border: none;
  color: #000;
  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 {
  background: #0096c7;
  transform: translateY(-2px);
}

/* ✅ RESPONSIVE FIXES */
@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 {
    margin-top: 50px;
  background-color: #e7f0fe;
  padding: clamp(40px, 6vw, 60px) 20px 30px;
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
}

.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;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #555;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0077ff;
}

.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: #222;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0077ff;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #666;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-policies a {
  margin-left: 20px;
  text-decoration: none;
  color: #666;
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: #000;
}

/* ✅ RESPONSIVE FIXES */
@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: #fff;
  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: #222;
}

.hdd-filters ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.hdd-filters li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.hdd-size-options button {
  margin: 4px;
  padding: 6px 10px;
  border: 1px solid #999;
  background: none;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s ease;
}

.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: #fafafa;
  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; /* ✅ Fixed height */
  object-fit: contain; /* ✅ Keeps image inside neatly */
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fff; /* optional – gives clean background */
  padding: 10px; /* adds white spacing around image */
}

.hdd-card h4 {
  font-size: 16px;
  margin: 8px 0;
  color: #111;
}

.hdd-card .desc {
  font-size: 14px;
  color: #555;
  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: #d60000;
  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;
}

/* ✅ Responsive Design */
@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;
  }
}

  .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: #ff7f00; /* default orange */
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buy-now-btn:hover {
  background-color: #0172e6; /* hover blue */
}
.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: #117de7;
  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;
}
/* ✅ Force cart drawer visible on mobile when active */
#cart-drawer.active {
  right: 0 !important;
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ✅ Ensure drawer covers full width on small screens */
@media (max-width: 768px) {
  #cart-drawer {
    width: 100% !important;
    right: -100% !important;
  }
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Main button */
.dropbtn {
  text-decoration: none;
  color: #000;
  font-weight: 600;
 
  display: inline-block;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* ensure dropdown starts exactly below button */
  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 items */
.dropdown-content a {
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  transition: background 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
   text-decoration: none !important;
}

/* Show dropdown when hovering parent */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Prevent flicker by enlarging hover area */

.btn-23 {
  background: linear-gradient(135deg, #ff9900, #ffb84d);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(255, 153, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.btn-23:hover {
  background: linear-gradient(135deg, #e68a00, #ff9900);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(255, 153, 0, 0.4);
}

.btn-23:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(255, 153, 0, 0.3);
}

/* 📱 Mobile Responsive Adjustment */
@media (max-width: 768px) {
  .btn-23 {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 30px;
    letter-spacing: 0.3px;
  }
}

.a-63{
  width: 300px;
}
.logo img{
  width: 180px;
}
.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; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.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; /* fix to viewport */
    top: 0;
    left: 0;
    width: 80%; /* or 250px */
    height: 100vh; /* full screen height */
    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;
    /* ✅ Smooth ease-in-out transition */
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
}

/* When sidebar is active */
.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; /* above filters */
  }

  .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;
  }

  /* Button style for tablet & mobile screens (820–912px range) */
  .filter-btn {
    height: 100px;
    background: none !important;
    color: #000 !important;
  }
}
@media (min-width: 993px) {/* Base dropdown */
.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: #fff;
  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: #333;
  padding: 10px 16px;
  text-decoration: none !important;
  display: block;
}

.a-73-dropdown-content a:hover,
.a-73-sub-dropbtn:hover {
  background-color: #f0f0f0;
  text-decoration: none !important;
}

/* Show dropdown on hover */
.a-73-dropdown:hover .a-73-dropdown-content {
  display: block;
}

/* Sub-dropdown (nested) */
.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: 20;
}

.a-73-sub-dropdown:hover .a-73-sub-dropdown-content {
  display: block;
  text-decoration: none !important;
}

  .filter-btn {
    display: none;
  }
}


/* ====== Base Dropdown Styles ====== */


.a-73-dropbtn {
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  /* padding: 10px 14px; */
}

.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;
}

/* ====== Sub-dropdown ====== */
.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;
}

/* ====== Hover + Touch (desktop + mobile support) ====== */
.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;
}

/* ====== Smooth Dropdown Animation ====== */
.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);
}

/* ====== Responsive (Tablet & Mobile) ====== */
@media (max-width: 992px) {
  .a-73-dropdown {
    /* display: block; */
    width: 100%;
  }

  .a-73-dropbtn {
    /* display: block; */
    width: 100%;
    /* background: #fff; */
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
    /* padding: 14px 18px; */
  }

  .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;
  }

  /* Nested dropdowns open underneath nicely */
  .a-73-sub-dropdown-content {
    position: relative;
    left: 0;
    top: 0;
    box-shadow: none;
    border-left: 3px solid #ddd;
    padding-left: 10px;
  }
}

/* ====== Extra small phones (under 480px) ====== */
@media (max-width: 480px) {
  .a-73-dropbtn {
    font-size: 15px;
    /* padding: 12px 16px; */
  }

  .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; /* JS will toggle */
  max-height: 300px;
  overflow-y: auto;
}
