  /* ====== RESET ====== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      background: #fff;
      color: #333;
      overflow-x: hidden;
    }

    html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
}

/*===== GPU Hint=====*/

.product-card,
.category-item,
.deal-left img,
.deal-top img,
.deal-bottom img,
.slide {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}


/* ====== HERO SECTION ====== */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  background: #000;
}

/* Slider */
.slider {
  display: flex;
  width: 300%;                     /* 3 slides */
  height: 100%;
  transition: transform 1s ease-in-out;
  will-change: transform;          /* 🔥 smoothness boost */
}

/* Slide */
.slide {
  flex: 0 0 100%;                  /* 🔥 MOST IMPORTANT FIX */
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Dark glass overlay */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.55)
  );
}

/* Hero Text */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  z-index: 10;
  max-width: 760px;
  width: 90%;
}

/* Headline */
.hero-text h1 {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0 12px 40px rgba(0,0,0,0.8);
}

/* Sub text */
.hero-text p {
  font-size: 18px;
  margin-top: 18px;
  color: #e6e6e6;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(0,0,0,0.7);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  .hero-text h1 {
    font-size: 34px;
    letter-spacing: 1.2px;
  }

  .hero-text p {
    font-size: 14px;
  }
}


/* ================= SHOP BY CATEGORIES ================= */

.categories-slider {
  padding: 90px 6%;
  background: #f8f8f8;
  text-align: center;
}

/* Section Title */
.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 55px;
  color: #111;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.section-title span {
  color: #555;
  font-weight: 400;
}

/* Grid */
.slider-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 28px;
  max-width: 1400px;
  margin: auto;
}

/* Category Card */
.category-item {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  border: 1px solid #e5e5e5;

  width: calc(20% - 16px);

  /* 🔥 smooth & fast */
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.category-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* Image */
.category-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;

  transition: transform 0.35s ease;
  will-change: transform;
}

.category-item:hover img {
  transform: translateY(-4px);
}

/* Title */
.category-item h3 {
  padding: 18px 0 22px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
  .category-item { width: calc(33.33% - 16px); }
}

@media (max-width: 768px) {
  .category-item { width: calc(50% - 12px); }
  .section-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .category-item { width: 100%; }
}


/* ================= FEATURED / TRENDING PRODUCTS ================= */

.featured-products {
  padding: 80px 6%;
  background: #fff;
  text-align: center;
}

.featured-products .section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  max-width: 1400px;
  margin: auto;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  cursor: pointer;

  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

/* Image */
.prod-img {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.35s ease;
  will-change: transform;
}

.product-card:hover .prod-img img {
  transform: translateY(-4px);
}

/* Discount */
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Favourite Button */
.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  color: #111;

  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  will-change: transform;
}

.fav-btn:hover {
  transform: scale(1.05);
  background: #111;
  color: #fff;
}

.fav-btn.active {
  background: #111;
  color: #fff;
}

/* Body */
.prod-body {
  padding: 16px;
  text-align: left;
}

.prod-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.prod-price {
  font-size: 16px;
  font-weight: 600;
  color: #555;
}

.rating {
  font-size: 14px;
  color: #f5a623;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.add-cart,
.buy-now {
  flex: 1;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Buttons */
/* Buttons */
.add-cart,
.buy-now {
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* ADD TO CART */
.add-cart {
  background: transparent;
  border: 1px solid #111;
}

.add-cart:hover {
  background: linear-gradient(135deg, #3FB7A8, #2A9D8F);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(42, 157, 143, 0.35);
}

/* BUY NOW */
.buy-now {
  background: #111;
  color: #fff;
  border: none;
}

.buy-now:hover {
  background: linear-gradient(135deg, #3FB7A8, #1F8E84);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(42, 157, 143, 0.4);
}



/* ==================== SECTION VARIANTS ==================== */
.trending-products {
  background: #ffffff; /* clean white showroom */
}

.all-products {
  background: #f8f8f8; /* light neutral grey */
}

/* ======= FAVOURITE BUTTON STYLE ======= */
.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111;                 /* neutral */
  font-size: 16px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hover */
.fav-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-4px);
}

/* Active (Favourite added) */
.fav-btn.active {
  background: #111;
  color: #fff;
}

/* ================= FLIPKART STYLE MOBILE GRID ================= */

/* 🔹 Mobile only (Flipkart type layout) */
@media (max-width: 600px) {

  .featured-products {
    padding: 45px 3%;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 🔥 2 cards per row */
    gap: 12px;
  }

  .product-card {
    border-radius: 4px; /* flatter like Flipkart */
  }

  /* Image tighter */
  .prod-img {
    height: 160px;
  }

  .prod-body {
    padding: 10px;
  }

  .prod-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    height: 34px;              /* 🔥 text clamp */
    overflow: hidden;
  }

  .prod-price {
    font-size: 14px;
    font-weight: 600;
  }

  .rating {
    font-size: 12px;
  }

  /* Buttons → Flipkart style (only Add to Cart) */
  .action-buttons {
    margin-top: 8px;
  }

  .add-cart {
    width: 100%;
    padding: 8px 0;
    font-size: 12px;
    border-radius: 3px;
  }

  .buy-now {
    display: none; /* 🔥 Flipkart mobile me mostly hide */
  }

  /* Favourite button smaller */
  .fav-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .discount-badge {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/* ===========================
   LANDING BANNER SECTION
   (PREMIUM MIRROR THEME)
=========================== */

.landing-banners {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  background: #000;
}

.banner-slider {
  display: flex;
  transition: transform 0.7s ease-in-out;
  height: 100%;
}

/* Banner */
.banner {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

/* Glass / mirror overlay */
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.35)
  );
  z-index: 1;
}

/* Content */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 20px;
}

.banner-content h2 {
  font-size: 50px;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 12px 40px rgba(0,0,0,0.8);
}

.banner-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #e6e6e6;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* CTA – premium outline button */
.banner-content a {
  background: transparent;
  color: #fff;
  padding: 12px 34px;
  border-radius: 2px;
  border: 1px solid #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.banner-content a:hover {
  background: #fff;
  color: #000;
}

/* Navigation Buttons */
.banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50%;
  z-index: 3;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background: #fff;
  color: #000;
}

.banner-btn.prev { left: 25px; }
.banner-btn.next { right: 25px; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .landing-banners {
    height: 55vh;
  }

  .banner-content h2 {
    font-size: 28px;
    letter-spacing: 1.2px;
  }

  .banner-content p {
    font-size: 13px;
  }
}

/******** DEAL OF THE DAY (PREMIUM MIRROR THEME) ********/

.deal-section {
  padding: 90px 8%;
  background: #f8f8f8;              /* showroom grey */
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* Title */
.deal-title {
  font-size: 32px;
  font-weight: 600;
  color: #111;
  margin-bottom: 50px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  position: relative;
}

/* subtle underline */
.deal-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #111;
  margin: 14px auto 0;
}

/* Layout */
.deal-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 26px;
  align-items: stretch;
}

/* Containers */
.deal-left,
.deal-top,
.deal-bottom {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

/* Images */
.deal-left img,
.deal-top img,
.deal-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Hover – subtle premium zoom */
.deal-left:hover img,
.deal-top:hover img,
.deal-bottom:hover img {
  transform: scale(1.05);
  box-shadow: 0 26px 60px rgba(0,0,0,0.2);
}

/* Glass overlay (always present) */
.deal-left::after,
.deal-top::after,
.deal-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.08)
  );
  pointer-events: none;
}

/* Right side grid */
.deal-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 26px;
}

/* Fade animation (for JS banner change) */
.fade-img {
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.fade-out {
  opacity: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .deal-grid {
    grid-template-columns: 1fr;
  }

  .deal-right {
    grid-template-rows: auto;
  }
}

@media (max-width: 576px) {
  .deal-section {
    padding: 70px 6%;
  }

  .deal-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ================= FOOTER (PREMIUM MIRROR THEME - TEAL EDITION) ================= */

.footer {
  background: #111;
  color: #cfcfcf;
  font-family: "Poppins", sans-serif;
  padding-top: 70px;
}

/* ===== Footer Container ===== */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* Force 4 equal columns */
  gap: 50px;
  padding: 0 8% 55px;
}


/* ===== Footer Headings ===== */
.footer-col h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== Footer Links ===== */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cfcfcf;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #3FB7A8; /* Teal Hover */
  padding-left: 6px;
}

/* ===== Contact Info ===== */
.contact-info li {
  font-size: 14px;
  line-height: 1.6;
}

.contact-info i {
  color: #3FB7A8;
  margin-right: 8px;
}

/* ===== BRAND ===== */
.footer-col.brand p {
  margin: 14px 0 20px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-brand img {
  height: 42px;
  width: auto;
}

/* ===== Social Links ===== */
.social-links a {
  display: inline-block;
  margin-right: 10px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #3FB7A8, #2A9D8F);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(42, 157, 143, 0.4);
}

/* ===== Newsletter ===== */
.newsletter form {
  display: flex;
  margin-top: 14px;
}

.newsletter input {
  flex: 1;
  padding: 11px 15px;
  font-size: 14px;
  border: none;
  outline: none;
  border-radius: 4px 0 0 4px;
}

.newsletter button {
  background: #3FB7A8;
  color: #fff;
  border: none;
  padding: 11px 18px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.newsletter button:hover {
  background: #2A9D8F;
  box-shadow: 0 6px 18px rgba(42, 157, 143, 0.4);
  transform: translateY(-2px);
}

/* ===== Payment Icons ===== */
.payment-icons {
  margin-top: 18px;
}

.payment-icons img {
  height: 28px;
  margin-right: 10px;
  opacity: 0.8;
  transition: 0.3s;
}

.payment-icons img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  background: #000;
  padding: 20px 10px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  letter-spacing: 0.4px;
  color: #aaa;
}

.footer-bottom a {
  color: #3FB7A8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 5% 45px;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .footer-col.brand {
    text-align: center;
  }
}


@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
