* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

.site-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 30px 80px repeat(20, auto);
  position: relative;
}

.header-top {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  place-items: center;
  width: 100%;
  position: relative;
  z-index: 100;
  height: 30px;
  transition: background 0.3s ease;
}

.header-top .txt {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

header {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: 200px auto 200px;
  align-items: center;
  height: 80px;
  background-color: transparent;
  top: 0;
  position: relative;
  width: 100%;
  z-index: 1100;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Sticky look (always black) */
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000; /* stays black */
  color: #fff;
  z-index: 999;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  will-change: transform;
}

/* Slide out when hiding */
header.hide,
.header-top.hide {
  transform: translateY(-100%);
}

.close-btn {
  display: none;
}

.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.menu-icon i {
  font-size: 22px;
  cursor: pointer;
  color: #f8f8f8;
}

/* --- Logo --- */
.header-logo,
.logo-img {
  display: flex;
  align-items: center;
  height: 100%;
  margin-bottom: 5px;
}

.logo-img img {
  position: absolute;
  margin-left: 20px;
  max-height: 220px;
  width: auto;
}

.header-tags,
.header-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-tags ul,
.header-icons ul {
  display: flex;
  list-style: none;
}

.header-tags a {
  text-decoration: none;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Karla", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
}

.header-tags .nav-link.active,
.header-tags a:hover {
  color: #fc7753;
  text-decoration: underline 2px;
}

.header-icons a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0 6px;
}

.header-icons i {
  font-size: 22px;
  cursor: pointer;
  color: #ffffff;
}

.header-icons li:hover a {
  color: #fc7753;
}

.cart-count {
  background: red;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -50%);
}

.hero-section {
  grid-column: 1 / -1;
  grid-row: 2 / 4;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-left: 60px;
  color: white;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.carousel-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.carousel-content h2 {
  font-size: 3rem; /* Hero headline */
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff; /* White for all backgrounds */
  text-transform: uppercase; /* Clean, strong look */
  letter-spacing: 1px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7); /* Glow for dark/light backgrounds */
  transition: transform 0.5s ease, color 0.5s ease;
}

.carousel-content h2:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  color: #ffaa2c; /* Accent color on hover */
}

.carousel-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 15px 0;
  color: #f1f1f1; /* Soft white */
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transition: color 0.5s ease;
}

.carousel-content h3:hover {
  color: #ffaa2c; /* Accent on hover */
}

.carousel-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 400;
  color: #ddd; /* Softer text for readability */
  line-height: 1.6;
  max-width: 600px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease;
}

.carousel-content p:hover {
  opacity: 0.9; /* Subtle hover effect */
}

.carousel-content a {
  display: inline-block;
  padding: 14px 24px;
  background: #ff9900;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 22px;
  transition: background 0.3s;
}

.carousel-content a:hover {
  background: #e6991f;
  transform: translateY(-2px);
}

.feature-wrapper {
  grid-column: 1 / -1;
  grid-row: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff;
}

.feature-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  border-radius: 10px;
}

.feature img {
  height: 80px;
  width: 80px;
  border-radius: 10px;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.feature h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #333;
}

.feature p {
  margin: 5px 0 0 0;
  font-family: "Karla", sans-serif;
  color: #1119;
  font-size: 14px;
}

.category-section {
  grid-column: 1 / -1;
  grid-row: 5 / 6;
  margin: auto;
  padding: 40px 20px;
  background-color: #ffffff;
}

.category-heading {
  text-align: center;
  margin-bottom: 40px;
}

.category-heading h2::before {
  content: "—";
  margin-right: 10px;
  font-size: 30px;
  color: #ffaa2c;
}

.category-heading h2 {
  font-size: 28px;
  color: #a4a4a4;
  font-family: "Karla", sans-serif;
}

.category-heading p {
  font-size: 35px;
  color: #000000;
  font-weight: 500;
  margin-top: 15px;
  font-family: "League Spartan", serif;
}

.category-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
  justify-content: center;
}

.category-box {
  border-radius: 12px;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  width: 100%;
  background-color: #f9f9f9;
}

.category-box img {
  position: absolute;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.category-box:nth-child(1) img {
  left: 70px;
  bottom: -180px;
  max-height: 370px;
  max-width: 370px;
}

.category-box:nth-child(2) img {
  left: 40px;
  bottom: -180px;
  max-height: 380px;
  max-width: 380px;
}

.category-box:nth-child(3) img {
  left: 0;
  bottom: -100px;
  max-height: 400px;
  max-width: 400px;
}

.category-box:nth-child(4) img {
  left: 30px;
  bottom: -150px;
  max-height: 360px;
  max-width: 360px;
}

.category-box:nth-child(5) img {
  left: 90px;
  bottom: -100px;
  max-height: 320px;
  max-width: 320px;
}

.category-box:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 8px 20px;
}
.category-box:hover img {
  transform: scale(1.1);
}

.category-box:nth-child(1) {
  background: linear-gradient(135deg, #fff6e5, #ffd9b5);
}

.category-box:nth-child(2) {
  background: linear-gradient(135deg, #e5f4ff, #b5e1ff);
}

.category-box:nth-child(3) {
  background: linear-gradient(135deg, #e9ffe5, #bff5b5);
}

.category-box:nth-child(4) {
  background: linear-gradient(135deg, #f9e5ff, #e0b5ff);
}

.category-box:nth-child(5) {
  background: linear-gradient(135deg, #fff8e5, #ffe8b5);
}

.discount {
  font-size: 18px;
  font-weight: bold;
  color: #ff4d4d;
  margin-bottom: 5px;
}

.category-box h3 {
  font-size: 30px;
  color: #222;
  margin-bottom: 8px;
}

.desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 12px;
  max-width: 600px;
  width: 90%;
  line-height: 1.5;
  text-align: left;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  background: #ffaa2c;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
  z-index: 50;
}

.btn:hover {
  background: #e6991f;
}

.tall {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.category-box {
  position: relative;
  overflow: hidden;
}

.category-box .overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Karla", sans-serif;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  z-index: 100;
}

.category-box.show-overlay .overlay {
  display: flex !important;
}

.category-box.coming-soon a.btn {
  pointer-events: none;
  opacity: 0.6;
}

/* Collection Section */
.collection-section {
  grid-column: 1 / -1;
  grid-row: 6 / 7;
  padding: 30px 20px;
  text-align: center;
  background-color: #ffffff;
}

.product-carousel {
  overflow-x: hidden;
  overflow-y: hidden;
}

.product-track {
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  gap: 24px;
  padding: 20px 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.product-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.product-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* View More Card Styling */
.product-card.view-more-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffaa2c;
  color: white;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.view-more-card:hover {
  color: #000;
}

.view-more-content {
  text-align: center;
}

.view-more-content i {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #a4a4a4;
  margin-bottom: 10px;
}

.section-heading::before {
  content: "—";
  margin-right: 10px;
  font-size: 20px;
  color: #ffaa2c; /* Yellow dash if you want */
}

.collection-title {
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #101010;
}

/* Category Buttons */
.collection-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 30px;
}

.cat-btn {
  padding: 0.5rem 1.2rem;
  margin-top: 10px;
  background: #ebebeb;
  font-size: 18px;
  border: none;
  border-radius: 25px;
  color: #000;
  cursor: pointer;
}

.cat-btn.active,
.cat-btn:hover {
  background: #ffaa2c;
  color: white;
}

/* ✅ Product Card */
.product-card {
  position: relative;
  overflow: hidden;
  width: 220px;
  height: 300px;
  border-radius: 15px;
  border: 1px solid #ddd;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  font-family: "Montserrat", sans-serif;
  background: #fff;
  padding-bottom: 12px; /* slightly smaller since no .product-info */
  text-align: center;
}

/* ✅ Image Section */
.image-container {
  width: 100%;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card .discount-tag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffaa2c;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 10px 0 10px 0;
  z-index: 1;
}

.product-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.product-card:hover .hover-img {
  opacity: 1;
}
.product-card:hover .default-img {
  opacity: 0;
}

/* ✅ Card Icons */
.card-icons {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0; /* hidden by default */
  transform: translateY(-10px); /* thoda upar hidden */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .card-icons {
  opacity: 1; /* visible on hover */
  transform: translateY(0); /* slide down smooth */
}

.card-icons i {
  background: #101010;
  color: #fff;
  padding: 8px;
  border-radius: 50%;
  font-size: 14px;
  transition: background 0.3s;
  cursor: pointer;
}

.card-icons i:hover {
  background: #333;
}

/* ==================== TEXT ELEMENTS (Compact) ==================== */
.product-card .product-name,
.product-card .product-stock,
.product-card .product-price {
  text-align: left; /* left-align */
  padding: 2px 12px; /* minimal top/bottom padding, keep left/right */
  margin: 0; /* remove extra margin between elements */
}

/* Product Name */
.product-card .product-name {
  font-size: 16px;
  font-weight: 700; /* bold */
  color: #333;
  margin-top: 4px; /* small gap from image */
}

/* Stock Status */
.product-card .product-stock {
  font-size: 13px;
  font-weight: 600;
}

.product-card .product-stock .in-stock {
  color: #00a878;
}
.product-card .product-stock .low-stock {
  color: #ff8c00;
}
.product-card .product-stock .out-of-stock {
  color: #d32f2f;
}

/* Price Section */
.product-card .product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 700;
  margin-bottom: 2px;
}

.product-card .product-price .price {
  font-size: 15px;
  color: #252525;
  font-weight: 700;
}

.product-card .product-price .old-price {
  font-size: 14px;
  color: #777;
  text-decoration: line-through;
  font-weight: 600;
}

.product-card .product-price .discount {
  font-size: 13px;
  color: #d32f2f;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, auto));
  gap: 15px;
  justify-content: center; /* ✅ center kar diya grid ko */
  background-color: white;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* ------------------------
   Coming Soon / No Products Card
------------------------ */
.product-card.no-products {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  background-color: #fafafa;
  min-height: 300px;
  text-align: center;
  color: #555;
  transition: transform 0.2s ease;
}

.product-card.no-products:hover {
  transform: scale(1.02);
}

.product-card.no-products .image-container {
  width: 100%;
  max-width: 300px;
  margin-bottom: 15px;
}

.product-card.no-products .image-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
}

.events-section {
  grid-column: 1 / -1;
  grid-row: 7 / 8;
  text-align: center;
}

.new-arrivals-section {
  grid-column: 1 / -1;
  grid-row: 8 / 9;
  text-align: center;
}

.best-sellers-section {
  grid-column: 1 / -1;
  grid-row: 9 / 10;
  text-align: center;
}

.featured-section {
  grid-column: 1 / -1;
  grid-row: 10 / 11;
  text-align: center;
}

.new-arrivals-section,
.best-sellers-section,
.featured-section {
  padding: 40px 0;
}

.new-arrivals-section h2,
.best-sellers-section h2,
.featured-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.view-more-wrapper {
  text-align: center;
  margin-top: 25px;
}

.view-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ffaa2c;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.Flash-Sale-Box {
  grid-column: 1 / -1;
  grid-row: 11 / 12;
  display: flex;
  flex-direction: row;
  place-items: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.Flash-Sale-Box .Sale {
  background-color: #101010;
  height: 400px;
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  padding: 10px;
  gap: 15px;
}

.Flash-Sale-Box h2 {
  font-size: 30px;
  color: #ffffff;
}

.Flash-Sale-Box p {
  color: #ffffff;
}

.timer {
  display: flex;
  gap: 15px;
  margin: 10px 0;
}

.timer div {
  background: white;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.timer span {
  font-size: 24px;
  font-weight: bold;
  display: block;
}

.timer small {
  font-size: 12px;
  color: #555;
}

.shop-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ffaa2c;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shop-btn i {
  font-size: 14px;
  vertical-align: middle;
}

/* Inside border effect for images */
.Flash-Sale-Box .img1 {
  position: relative;
  background-image: url("../images/img1.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  height: 400px;
  width: 230px;
  display: grid;
  padding: 2px;
  box-sizing: border-box;
}

.Flash-Sale-Box .img2 {
  position: relative;
  background-image: url("../images/img2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  height: 400px;
  width: 230px;
  display: grid;
  padding: 2px;
  box-sizing: border-box;
}

.Flash-Sale-Box .img1::before,
.Flash-Sale-Box .img2::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

/* === Daily Offer Section === */
.daily-offer-section {
  grid-column: 1 / -1;
  grid-row: 12 / 13;
  padding: 40px 0;
  background-color: #ffffff;
  text-align: center;
}

.daily-offer-section .product-grid {
  max-width: 80%;
  margin: auto;
  padding: 20px 0;
}

.testimonial-section {
  grid-column: 1 / -1;
  grid-row: 13 / 14;
  margin: 50px 0;
}

.testimonial-section .section-heading,
.testimonial-section .collection-title {
  text-align: center;
  margin-bottom: 20px;
}

.testimonial-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  animation: scroll 40s linear infinite;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  flex-shrink: 0;
  margin-bottom: 30px;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.card-header img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 15px;
}

.stars {
  color: #f39c12;
  font-size: 14px;
}

/* ✅ Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ✅ Brick wall offset for 2nd row */
.testimonial-section .testimonial-track:nth-of-type(2) {
  margin-left: 160px; /* half card width */
}

.tracking-container {
  grid-column: 1 / -1;
  grid-row: 14 / 15;
  background-color: #101010;
  padding: 30px 20px;
  border-radius: 25px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  height: 400px;
  display: grid;
  place-items: center;
  text-align: center;
  max-width: 1000px;
  width: 100%;
}

.tracking-heading {
  color: #ffffff;
  font-size: 35px;
  font-family: monospace;
  transition: opacity 0.35s ease;
}

.fade-out {
  opacity: 0;
}
.fade-in {
  opacity: 1;
}

.tracking-text {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  max-width: 800px;
}

.track-button {
  display: inline-block;
  background-color: #ffaa2c;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.track-button:hover {
  background-color: #f57f17;
}

.faq-container {
  grid-column: 1 / -1;
  grid-row: 15 / 16;
  padding: 40px 60px;
  text-align: center;
}

.faq-container .faq-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  display: inline-block;
  border-bottom: 4px solid var(--secondary-color);
  padding-bottom: 4px;
  margin-bottom: 30px;
  color: #000000;
}

.faq {
  background: #f3f3f3;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.faq:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

.faq .answer {
  display: none;
  margin-top: 15px;
  color: #000;
  font-size: 16px;
}

.faq.active .answer {
  display: block;
}

.faq .toggle {
  font-size: 24px;
  color: var(--secondary-color);
}

.faq.active .toggle::before {
  content: "–";
}

.faq .toggle::before {
  content: "+";
}

.footer {
  grid-column: 1 / -1;
  grid-row: 16 / 17;
  background-color: #1c1c1c;
  color: #eee;
  padding: 50px 30px 20px;
  font-family: "Segoe UI", sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-logo img {
  width: 200px;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.footer-tagline {
  font-size: 14px;
  color: #ccc;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

.footer-links h4,
.footer-newsletter h4,
.footer-social h4 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ffaa2c;
}

.footer-newsletter p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.footer-newsletter form {
  display: flex;
  background: #333;
  border-radius: 30px;
  overflow: hidden;
}

.footer-newsletter input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  background: transparent;
  color: #fff;
  font-size: 14px;
}

.footer-newsletter input::placeholder {
  color: #aaa;
}

.footer-newsletter button {
  background-color: #ffaa2c;
  border: none;
  padding: 0 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer-newsletter button:hover {
  background-color: #f57f17;
}

.footer-social .social-icons {
  display: flex;
  gap: 12px;
}

.footer-social .social-icons a {
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: #ffaa2c;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #333;
}

.nav-icons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #ddd;
  z-index: 1000;
  display: none;
}
.nav-icons a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  transition: color 0.3s ease;
}
.nav-icons a span {
  margin: 0;
  line-height: 1.2;
}
.nav-icons a .material-icons,
.nav-icons a .material-icons-outlined {
  font-size: 30px;
  margin-bottom: 2px;
}
.nav-icons a:hover,
.nav-icons a.active {
  color: #ffaa2c;
}
.nav-icons a .material-icons {
  display: none;
}
.nav-icons a.active .material-icons {
  display: inline-block;
}
.nav-icons a.active .material-icons-outlined {
  display: none;
}

/* Extra small devices (phones, portrait) */
@media screen and (max-width: 576px) {
  header {
    grid-template-columns: auto;
    padding: 0 15px;
    height: auto !important;
    overflow: visible !important;
  }

  /* menu + icons hide normal state */
  .header-tags {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-icons {
    display: flex;
    flex-direction: row;
  }

  .header-tags ul {
    flex-direction: column;
    gap: 25px;
  }

  .header-tags a {
    font-size: 20px;
    color: #fff;
  }

  .header-tags.active {
    right: 0;
  }

  .header-icons {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .header-logo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 0 10px;
    width: 100%;
  }

  .logo-img img {
    position: static !important;
    margin: 0 auto;
    max-height: 60px;
    width: auto;
    display: block;
  }

  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    display: block;
  }

  .carousel-slide {
    justify-content: center;
    padding-left: 0;
    text-align: left;
  }

  .carousel-content {
    max-width: 90%;
  }

  .carousel-content h2 {
    font-size: 1.5rem;
  }

  .carousel-content h3 {
    font-size: 1.3rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .feature-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature img {
    height: 60px;
    width: 60px;
  }

  .category-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .category-box.tall {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .category-heading h2 {
    font-size: 20px;
  }

  .category-heading p {
    font-size: 26px;
  }

  .category-box {
    text-align: center;
    align-items: center;
    padding: 20px;
    height: 320px;
  }

  .desc {
    text-align: center;
  }

  .section-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #a4a4a4;
    margin-bottom: 10px;
  }

  .collection-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #101010;
  }

  .cat-btn {
    padding: 0.4rem 1rem;
    margin-top: 10px;
    background: #ebebeb;
    font-size: 14px;
    border: none;
    border-radius: 22px;
    color: #000;
    cursor: pointer;
  }

  /* ✅ Product Card */
  .product-card {
    width: 170px;
    height: 230px;
    border-radius: 13px;
  }

  /* ✅ Image Section */
  .image-container {
    width: 100%;
    height: 160px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .product-card .discount-tag {
    font-size: 10px;
    padding: 6px 8px;
  }

  .product-card:hover .card-icons {
    opacity: 1; /* visible on hover */
    transform: translateY(0); /* slide down smooth */
  }

  /* Product Name */
  .product-card .product-name {
    font-size: 13px;
  }

  /* Stock Status */
  .product-card .product-stock {
    font-size: 10px;
  }

  .product-card .product-price .price {
    font-size: 11px;
    color: #252525;
    font-weight: 700;
  }

  .product-card .product-price .old-price {
    font-size: 10px;
    color: #777;
    text-decoration: line-through;
    font-weight: 600;
  }

  .product-card .product-price .discount {
    font-size: 9px;
    color: #d32f2f;
    font-weight: 700;
  }

  /* Product grid 1 card per row for very small screens */
  .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .tracking-container {
    padding: 30px 20px;
    border-radius: 22px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    height: 220px;
    display: grid;
    place-items: center;
    text-align: center;
    max-width: 1000px;
    width: 90%;
  }

  .tracking-heading {
    color: #ffffff;
    font-size: 20px;
    font-family: monospace;
    transition: opacity 0.35s ease;
  }

  .tracking-text {
    font-size: 10px;
    color: #ffffff;
    line-height: 1.6;
  }

  .track-button {
    display: inline-block;
    background-color: #ffaa2c;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    font-size: 12px;
    transition: background-color 0.3s ease;
  }

  .faq-container {
    padding: 10px 20px;
  }

  .faq-container .faq-heading {
    font-size: 30px;
  }
}

/* Small devices (phones landscape, small tablets portrait) */
@media (min-width: 576px) and (max-width: 768px) {
  header {
    grid-template-columns: auto;
    padding: 0 15px;
    height: auto !important;
    overflow: visible !important;
  }

  .header-tags {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-icons {
    display: flex;
    flex-direction: row;
  }

  .header-tags ul {
    flex-direction: column;
    gap: 25px;
  }

  .header-tags a {
    font-size: 20px;
    color: #fff;
  }

  .header-tags.active {
    right: 0;
  }

  .header-icons {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .header-logo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 0 10px;
    width: 100%;
  }

  .logo-img img {
    position: static !important;
    margin: 0 auto;
    max-height: 60px;
    width: auto;
    display: block;
  }

  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    display: block;
  }

  .carousel-slide {
    justify-content: center;
    padding-left: 0;
    text-align: center;
  }

  .carousel-content {
    max-width: 90%;
  }

  .carousel-content h2 {
    font-size: 2.5rem;
  }

  .carousel-content h3 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1.5rem;
  }

  .feature-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .feature img {
    height: 70px;
    width: 70px;
  }

  .category-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .category-box.tall {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .category-heading h2 {
    font-size: 24px;
  }

  .category-heading p {
    font-size: 30px;
  }

  .category-box {
    padding: 20px;
    height: 300px;
  }

  .discount {
    font-size: 14px;
  }

  .category-box h3 {
    font-size: 20px;
  }

  .desc {
    font-size: 12px;
    width: 100%;
  }

  .btn {
    padding: 6px 14px;
    font-size: 12px;
  }

  /* Product grid: 2 cards per row */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Medium devices (tablets portrait) */
@media (min-width: 768px) and (max-width: 992px) {
  header {
    grid-template-columns: auto;
    padding: 0 15px;
    height: auto !important;
    overflow: visible !important;
  }

  /* menu + icons hide normal state */
  .header-tags {
    position: fixed;
    top: 0;
    right: -100%; /* hidden initially */
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-icons {
    display: block;
  }

  .nav-icons {
    display: flex;
    flex-direction: row;
  }

  .header-tags ul {
    flex-direction: column;
    gap: 25px;
  }

  .header-tags a {
    font-size: 20px;
    color: #fff;
  }

  /* when active */
  .header-tags.active {
    right: 0;
  }

  .header-icons {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .header-logo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 0 10px;
    width: 100%;
  }

  .logo-img img {
    position: static !important;
    margin: 0 auto;
    max-height: 60px;
    width: auto;
    display: block;
  }

  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    display: block;
  }

  .carousel-slide {
    justify-content: center;
    padding-left: 0;
    text-align: center;
  }

  .carousel-content {
    max-width: 90%;
  }

  .carousel-content h2 {
    font-size: 2.5rem;
  }

  .carousel-content h3 {
    font-size: 2rem;
  }

  .carousel-content p {
    font-size: 1.5rem;
  }
  .feature-container {
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 30px;
  }

  .feature img {
    height: 75px;
    width: 75px;
  }

  .category-wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .category-box.tall {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .category-heading h2 {
    font-size: 24px;
  }

  .category-heading p {
    font-size: 30px;
  }

  .category-box:nth-child(1) img {
    left: 30px;
    bottom: -150px;
    max-height: 330px;
    max-width: 330px;
  }

  .category-box:nth-child(2) img {
    left: 20px;
    bottom: -170px;
    max-height: 360px;
    max-width: 360px;
  }

  .category-box:nth-child(3) img {
    left: 20px;
    bottom: -100px;
    max-height: 300px;
    max-width: 300px;
  }

  .category-box:nth-child(4) img {
    left: 50px;
    bottom: -150px;
    max-height: 330px;
    max-width: 330px;
  }

  .category-box:nth-child(5) img {
    left: 60px;
    bottom: -100px;
    max-height: 280px;
    max-width: 280px;
  }

  .category-box {
    padding: 20px;
    height: 300px;
  }

  .discount {
    font-size: 14px;
  }

  .category-box h3 {
    font-size: 20px;
  }

  .desc {
    font-size: 14px;
    width: 100%;
  }

  .btn {
    padding: 6px 14px;
    font-size: 12px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  header {
    grid-template-columns: 200px auto 130px;
  }

  .logo-img img {
    max-height: 170px;
  }

  .header-icons i {
    font-size: 20px;
  }

  .feature-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(2, 300px);
  }

  .category-box.tall {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .category-box:nth-child(1) img {
    left: 70px;
    bottom: -150px;
    max-height: 330px;
    max-width: 330px;
  }

  .category-box:nth-child(2) img {
    left: 40px;
    bottom: -170px;
    max-height: 360px;
    max-width: 360px;
  }

  .category-box:nth-child(3) img {
    left: 40px;
    bottom: -100px;
    max-height: 300px;
    max-width: 300px;
  }

  .category-box:nth-child(4) img {
    left: 50px;
    bottom: -150px;
    max-height: 330px;
    max-width: 330px;
  }

  .category-box:nth-child(5) img {
    left: 60px;
    bottom: -100px;
    max-height: 320px;
    max-width: 320px;
  }
}

/* Ultra-wide screens (large desktops, TVs) */
@media screen and (min-width: 1600px) {
  /* Styles for very large screens */
}
