@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body {
  background: white;
  color: #111;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  border-bottom: 2px solid #000;
  padding: 12px 60px;
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left Section */
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  /* slightly bolder for emphasis */
  font-size: 15px;
  /* increased text size */
  color: #000;
  cursor: pointer;
  letter-spacing: 0.5px;
  /* adds a bit of spacing for readability */
}

.header-left i {
  font-size: 25px;
  /* larger menu (hamburger) icon */
}

/* Center Logo */
.header-logo img {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  margin-left: 130px;
}

/* Right Icons */
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-right i {
  font-size: 15px;
  color: #000;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header-right i:hover {
  color: #555;
}

.download-btn span {
  font-weight: 700;
  font-size: 15px;
  margin-top: 7px;
  /* ✅ moves text slightly down */
}

/* ----- 125% Screen / Medium DPI Adjustment ----- */
@media (min-width: 1100px) and (max-width: 1300px) {
  .header {
    padding: 10px 45px;
    /* slightly tighter spacing */
  }

  .header-left {
    font-size: 12px;
    /* scales text naturally */
    gap: 10px;
  }

  .header-left i {
    font-size: 20px;
    /* reduce icon slightly for balance */
  }

  .header-logo img {
    height: 40px;
    /* proportionally larger logo for zoomed screens */
  }

  .header-right {
    gap: 15px;
  }

  .header-right i {
    font-size: 12px;
  }
}

/* ✅ 110% Screen Responsive Enhancement */
@media screen and (min-width: 1600px) {
  .header {
    padding: 14px 80px;
    border-bottom: 2.5px solid #000;
  }

  .header-left {
    font-size: 17px;
    gap: 16px;
    letter-spacing: 0.6px;
  }

  .header-left i {
    font-size: 30px;
  }

  .header-logo img {
    height: 48px;
  }

  .header-right {
    gap: 22px;
  }

  .header-right i {
    font-size: 18px;
  }
}

/* ✅ Fix for 100% Zoom (Standard View) */
@media screen and (min-width: 1281px) {
  .header {
    padding: 12px 60px;
  }

  .header-left {
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .header-left i {
    font-size: 25px;
  }

  .header-logo img {
    height: 40px;
  }

  .header-right i {
    font-size: 15px;
  }
}

/* ===== RESPONSIVENESS ===== */

/* 🧭 Tablet Screens (≤992px) */
@media (max-width: 992px) {
  .header {
    padding: 10px 30px;
  }

  .header-left span {
    display: none;
    /* hide 'MENU' text for compact layout */
  }

  .header-left i {
    font-size: 22px;
  }

  .header-right i {
    font-size: 14px;
  }

  .header-logo img {
    height: 35px;
  }

  .header-right {
    gap: 14px;
  }
}

/* 📱 Mobile Screens (≤600px) */
@media (max-width: 600px) {
  .header {
    padding: 10px 20px;
  }

  .header-container {
    justify-content: space-between;
  }

  .header-left {
    gap: 8px;
  }

  .header-left i {
    font-size: 20px;
  }

  .header-logo img {
    height: 40px;
    margin-left: 55px;
    /* adjust value as needed */
  }

  .header-right {
    gap: 10px;
  }

  .header-right i {
    font-size: 13px;
  }

  .download-btn span {
    display: none;
  }
}

/* 📱 Extra Small (≤400px) */
@media (max-width: 400px) {
  .header {
    padding: 8px 15px;
  }

  .header-left i {
    font-size: 18px;
  }

  .header-logo img {
    height: 28px;
  }

  .header-right i {
    font-size: 12px;
  }

  .header-right {
    gap: 8px;
  }
}

/* ================================
   BRANDS MOBILE VIEW (New Section)
================================= */
.brands-mobile-view {
  background: #000;
  color: #fff;
  padding: 10px 0 15px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -5px;
  position: relative;
  z-index: 2;
  border-radius: 0;
  text-align: center;
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.brands-mobile-view h3 {
  font-size: 11px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.brands-mobile-view-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5px;
  flex-wrap: nowrap;
  margin-top: 10px;
}

.brands-mobile-view-content img {
  height: 30px;
  flex: 1;
  max-width: 23%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-top: -10px;
}

.brands-mobile-view-content img:hover {
  transform: scale(1.08);
}

@media screen and (min-width: 991px) {
  .brands-mobile-view {
    display: none;
  }
}

/* Optional: slightly larger on tablets */
@media (min-width: 600px) and (max-width: 1024px) {
  .brands-mobile-view {
    padding: 35px 0;
  }

  .brands-mobile-view h3 {
    font-size: 12px;
  }

  .brands-mobile-view-content img {
    height: 35px;
    max-width: 22%;
  }
}

.black-banner {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 30px 120px;
  /* 🔥 MUCH BROADER — more height + more width */
  gap: 60px;
  /* 🔥 more space between left & right sections */
  position: relative;
  font-style: italic;
  overflow: visible;
}

/* left section */
.banner-left {
  display: flex;
  align-items: center;
  gap: 40px;
  /* 🔥 bigger gap between logo & tagline */
}

.logo-img {
  width: 230px;
  /* 🔥 bigger logo so it's more visible */
  height: 40px;
  margin-bottom: 10px;
  margin-left: -5px;
}

.tagline {
  font-size: 18px;
  /* 🔥 bigger text for visibility */
  line-height: 1.5;
  color: #e3e3e3;
  font-weight: 500;
  margin-left: -10px;
}

/* right leaf-shaped badge (bigger) */
.experience-badge {
  background: whitesmoke;
  color: #000;
  padding: 8px 16px;
  /* 🔥 bigger badge */
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-style: normal;
  position: absolute;
  right: 85px;
  /* 🔥 push further right for wider banner */
  bottom: -32px;
  /* 🔥 lower because banner is taller */
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  font-size: 12px;
}

.experience-badge strong {
  font-size: 36px;
  /* 🔥 bigger number */
  display: block;
  font-weight: 800;
}

.experience-badge span {
  font-size: 15px;
  color: #333;
}


/* ===== 125% Zoom Fix (Broader + More Visible Banner) ===== */
@media (max-width: 1280px) {

  .black-banner {
    padding: 20px 110px;
    /* 🔥 MUCH broader left & right + more height */
    gap: 55px;
    /* more space between left and right */
  }

  .banner-left {
    gap: 40px;
    /* 🔥 bigger gap between logo + tagline */
  }

  .logo-img {
    width: 300px;
    /* 🔥 bigger logo for visibility */
    height: 40px;
    margin-left: -75px;
  }

  .tagline {
    font-size: 18px;
    /* 🔥 readable at zoom */
    margin-left: -10px;
    line-height: 1.5;
  }

  .experience-badge {
    padding: 5px 14px;
    /* slightly bigger badge */
    right: 70px;
    /* moved outward for broader banner */
    bottom: -26px;
    font-size: 10px;
  }

  .experience-badge strong {
    font-size: 32px;
    /* bold and clear */
  }

  .experience-badge span {
    font-size: 13px;
  }
}

/* ✅ 110% Screen Responsive Enhancement */
@media screen and (min-width: 1600px) {
  .black-banner {
    padding: 14px 90px;
  }

  .banner-left {
    gap: 35px;
  }

  .tagline {
    font-size: 18px;
    line-height: 1.5;
  }

  .experience-badge {
    padding: 6px 16px;
    right: 70px;
    bottom: -28px;
    border-top-left-radius: 24px;
    border-bottom-right-radius: 24px;
    font-size: 11px;
  }

  .experience-badge strong {
    font-size: 34px;
  }

  .experience-badge span {
    font-size: 15px;
  }
}

/* ✅ Fix for 100% Zoom (Standard Desktop View) */
@media screen and (min-width: 1281px) {
  .black-banner {
    padding: 10px 60px;
  }

  .tagline {
    font-size: 16px;
  }

  .experience-badge {
    right: 55px;
    bottom: -25px;
    font-size: 10px;
  }

  .experience-badge strong {
    font-size: 30px;
  }

  .experience-badge span {
    font-size: 13px;
  }
}

/* 📱 Mobile screens (≤600px) */
@media (max-width: 600px) {
  .black-banner {
    display: none;
  }
}

/* 📱 Extra small screens (≤400px) */
@media (max-width: 400px) {
  .black-banner {
    display: none;
  }
}

.features-brands {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* align top edges instead of center */
  padding: 50px 0 50px 40px;
  background: #fff;
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  overflow: hidden;

}

.features-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
  margin-left: 1px;
  margin-top: 5px;
  /* previously -35px → now slightly lower (pushed down) */
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #000;
  font-weight: 500;
}

.feature-item img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.brands-right {
  background: #000;
  color: #fff;
  padding: 35px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 55vw;
  margin-right: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  right: 0;
  border-top-left-radius: 100px;
}

.brands-right h3 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: -35px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  /* required for the divider line */
  padding-bottom: 8px;
  /* space between text and divider */
}

/* Divider line */
.brands-right h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  /* length of divider */
  height: 2px;
  /* thickness */
  background: black;
  /* white line to match your theme */
  border-radius: 2px;
}


.brands-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: nowrap;
}

.brands-logos img {
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.brands-logos img:hover {
  transform: scale(1.08);
}

/* ===== 125% Zoom Responsive Fix ===== */
@media (max-width: 1280px) {
  .features-brands {
    padding: 40px 0 40px 30px;
    /* slightly reduced padding for balance */
  }

  .features-left {
    gap: 20px 30px;
    margin-top: 5px;
    /* push down slightly to keep vertical alignment */
    margin-left: 5px;
  }

  .feature-item {
    font-size: 13px;
  }

  .feature-item img {
    width: 22px;
    height: 22px;
  }

  .brands-right {
    padding: 30px 55px;
    border-top-left-radius: 90px;
    width: 58vw;
    /* adjusts width slightly to maintain balance */
  }

  .brands-right h3 {
    font-size: 11px;
    margin-top: -30px;
  }

  .brands-right h3::after {
    width: 50px;
  }

  .brands-logos img {
    height: 48px;
    gap: 20px;
  }
}

/* ✅ 110% Screen Responsive Enhancement */
@media screen and (min-width: 1600px) {
  .features-brands {
    padding: 60px 0 60px 70px;
  }

  .features-left {
    gap: 35px 50px;
    margin-top: 10px;
  }

  .feature-item {
    font-size: 17px;
    gap: 14px;
  }

  .feature-item img {
    width: 30px;
    height: 30px;
  }

  .brands-right {
    padding: 45px 90px;
    width: 58vw;
    border-top-left-radius: 120px;
  }

  .brands-right h3 {
    font-size: 14px;
    margin-top: -40px;
    letter-spacing: 1.2px;
  }

  .brands-right h3::after {
    width: 70px;
    height: 2.5px;
  }

  .brands-logos {
    gap: 30px;
  }

  .brands-logos img {
    height: 48px;
  }
}

/* ✅ Fix for 100% Zoom (Standard Desktop View) */
@media screen and (min-width: 1281px) {
  .features-brands {
    padding: 50px 0 50px 40px;
  }

  .features-left {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
    margin-left: 1px;
    margin-top: 5px;
  }

  .feature-item {
    font-size: 15px;
    gap: 10px;
  }

  .feature-item img {
    width: 25px;
    height: 25px;
  }

  .brands-right {
    padding: 35px 70px;
    width: 55vw;
    right: 0;
    border-top-left-radius: 100px;
  }

  .brands-right h3 {
    font-size: 12px;
    margin-bottom: 15px;
    margin-top: -35px;
    padding-bottom: 8px;
    letter-spacing: 1px;
  }

  .brands-right h3::after {
    width: 60px;
    height: 2px;
  }

  .brands-logos {
    gap: 25px;
  }

  .brands-logos img {
    height: 40px;
  }
}

/* ========================
   MOBILE RESPONSIVENESS
======================== */
@media (max-width: 1024px) {
  .features-brands {
    display: none;
  }
}

@media (max-width: 600px) {
  .features-brands {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* ✅ full-screen height */
  overflow: hidden;
  margin-top: -60px;
  /* adjust if needed */
  background: #fff;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ✅ fills screen, no background visible */
  object-position: center;
  /* keeps main focus centered */
}

.slide {
  display: none;
  position: relative;
  height: 100%;
}

.slide.active {
  display: block;
}

.slide-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #3a3a3a;
  background: none;
}

/* ---------- Typography ---------- */
.slide-content h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Second line gray adjustment */
.slide-content h1:nth-of-type(2) {
  color: #333333;
  font-weight: 700;
}

/* ---------- Alignment & Color Scheme ---------- */

/* Slide 1 — Right aligned → moved slightly left */
.slide:nth-child(1) .slide-content {
  right: 8%;
  /* was 5% → shifted slightly left */
  text-align: right;
  color: #1a1a1a;
}

.slide:nth-child(1) .slide-content h1 {
  color: #111;
}

.slide:nth-child(1) .slide-content h1:nth-of-type(2) {
  color: #444;
}

/* Slide 2 — Right aligned → moved slightly left */
.slide:nth-child(2) .slide-content {
  right: 8%;
  /* was 5% → shifted slightly left */
  text-align: right;
  color: #2e2e2e;
}

.slide:nth-child(2) .slide-content h1 {
  color: #000;
}

.slide:nth-child(2) .slide-content h1:nth-of-type(2) {
  color: #2e2e2e;
}

/* Slide 3 — Left aligned → moved slightly right */
.slide:nth-child(3) .slide-content {
  left: 8%;
  /* was 5% → shifted slightly right */
  text-align: left;
  color: #2e2e2e;
}

.slide:nth-child(3) .slide-content h1 {
  color: #000;
}

.slide:nth-child(3) .slide-content h1:nth-of-type(2) {
  color: #2e2e2e;
}

/* ---------- Default button style (Slide 1 - right) ---------- */
.shop-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 2px;
  font-size: 14px;
  float: right;
  /* ✅ aligns to right by default */
  transition: background 0.3s ease;
}

.shop-btn:hover {
  background: #333;
  /* subtle hover effect */
}

/* ---------- Slide 2 (Right-aligned) ---------- */
.slide:nth-child(2) .shop-btn {
  float: right;
  /* ✅ right-aligned same as Slide 1 */
  background: #000;
  /* navy tone to match color scheme */
}

.slide:nth-child(2) .shop-btn:hover {
  background: #333;
  /* brighter blue on hover */
}

/* ---------- Slide 3 (Left-aligned) ---------- */
.slide:nth-child(3) .shop-btn {
  float: left;
  /* ✅ left-aligned */
  background: #000;
  /* golden tone to match slide 3 */
}

.slide:nth-child(3) .shop-btn:hover {
  background: #333;
  /* lighter gold on hover */
}

.dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.dot {
  display: inline-block;
  width: 25px;
  /* uniform width */
  height: 2px;
  /* thinner bars */
  margin: 0 6px;
  border-radius: 0;
  /* ✅ completely rectangular (no curve) */
  background-color: gray;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot:hover {
  background-color: rgba(159, 155, 155, 0.8);
}

.dot.active {
  background-color: #333232;
  /* ✅ solid black active bar */
  width: 30px;
  /* ✅ same width as others */
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  /* ❌ no background */
  border: none;
  /* remove border */
  color: #000;
  /* arrow color (change to #fff if image is dark) */
  font-size: 25px;
  /* make it stand out */
  cursor: pointer;
  padding: 0 10px;
  transition: color 0.3s ease;
}

.prev:hover,
.next:hover {
  color: #666;
  /* subtle hover effect */
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* ✅ Adjustments for 125% zoom (approx. 1200px screens) */
@media screen and (max-width: 1200px) {
  .slide-content h1 {
    font-size: 22px;
    /* slightly smaller to prevent wrapping */
  }

  .slide:nth-child(1) .slide-content,
  .slide:nth-child(2) .slide-content {
    right: 6%;
    /* slightly more inward */
  }

  .slide:nth-child(3) .slide-content {
    left: 6%;
    /* slightly more inward for left-aligned slide */
  }

  .shop-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  .dot {
    width: 25px;
    height: 5px;
    margin: 0 4px;
  }

  .dot.active {
    width: 22px;
  }

  .prev,
  .next {
    font-size: 22px;
    /* scale arrows slightly smaller */
  }
}

/* ✅ 110% Screen Responsive Enhancement */
@media screen and (min-width: 1600px) {
  .hero {
    height: 110vh;
    margin-top: -70px;
  }

  .slide-content h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .shop-btn {
    padding: 12px 26px;
    font-size: 15px;
  }

  .dot {
    width: 28px;
    height: 3px;
  }

  .dot.active {
    width: 34px;
  }

  .prev,
  .next {
    font-size: 30px;
    padding: 0 14px;
  }

  .slide:nth-child(1) .slide-content,
  .slide:nth-child(2) .slide-content {
    right: 10%;
  }

  .slide:nth-child(3) .slide-content {
    left: 10%;
  }
}

/* ✅ Fix for 100% Zoom (Standard Desktop View) */
@media screen and (min-width: 1281px) {
  .hero {
    height: 100vh;
    margin-top: -60px;
  }

  .hero img {
    object-fit: cover;
    object-position: center;
  }

  .slide-content {
    top: 50%;
    transform: translateY(-50%);
  }

  /* Maintain consistent text size and alignment */
  .slide-content h1 {
    font-size: 26px;
    font-weight: 600;
  }

  /* Keep existing alignment spacing for all 3 slides */
  .slide:nth-child(1) .slide-content,
  .slide:nth-child(2) .slide-content {
    right: 8%;
    text-align: right;
  }

  .slide:nth-child(3) .slide-content {
    left: 8%;
    text-align: left;
  }

  /* Buttons stay in correct alignment */
  .shop-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  /* Dot navigation stays in place */
  .dots {
    bottom: 20px;
  }

  .dot {
    width: 25px;
    height: 2px;
  }

  .dot.active {
    width: 30px;
  }

  /* Navigation arrows retain size & position */
  .prev,
  .next {
    font-size: 25px;
    top: 50%;
    transform: translateY(-50%);
  }

  .prev {
    left: 20px;
  }

  .next {
    right: 20px;
  }
}

/* ===========================
   MOBILE RESPONSIVENESS
=========================== */
@media (max-width: 768px) {
  .hero {
    height: auto !important;
    margin-top: 0px;
    /* ⬇️ pushes the hero section down */
  }

  .slide-content {
    top: 55% !important;
    /* ⬇️ was 40%, now pushed slightly down */
    transform: translateY(0%) !important;
    text-align: center !important;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .slide-content h1 {
    font-size: 12px !important;
    line-height: 1.4;
  }

  .shop-btn {
    display: inline-block;
    margin: 10px auto 0;
    /* ✅ centers horizontally */
    font-size: 10px;
    padding: 8px 15px;
  }

  .dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
  }

  .dot {
    display: inline-block;
    width: 25px;
    /* uniform width */
    height: 2px;
    /* thinner bars */
    margin: 0 6px;
    border-radius: 0;
    /* ✅ completely rectangular (no curve) */
    background-color: gray;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .dot:hover {
    background-color: rgba(159, 155, 155, 0.8);
  }

  .dot.active {
    background-color: #333232;
    /* ✅ solid black active bar */
    width: 30px;
    /* ✅ same width as others */
  }

  .prev,
  .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    /* ❌ no background */
    border: none;
    /* remove border */
    color: #000;
    /* arrow color (change to #fff if image is dark) */
    font-size: 25px;
    /* make it stand out */
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.3s ease;
  }

  .prev:hover,
  .next:hover {
    color: #666;
    /* subtle hover effect */
  }

  .prev {
    left: 20px;
  }

  .next {
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
  }

  .slide-content {
    top: 65%;
    transform: translateY(-40%);
    padding: 0 15px;
    text-align: center;
    /* ✅ keeps text + button centered */
  }

  .slide-content h1 {
    font-size: 16px;
  }

  .shop-btn {
    display: inline-block;
    margin: 10px auto 0;
    /* ✅ centers on mobile too */
    font-size: 11px;
    padding: 6px 12px;
  }

  .prev,
  .next {
    font-size: 18px;
    top: 42%;
  }

  .dot {
    width: 15px;
  }
}

/* ================================
   📱 BLACK BANNER - MOBILE VIEW ONLY
================================ */
.black-banner-mobile-view {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 0.7rem 1rem;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -10px;
  /* ✅ Moves the section slightly up */
}

/* LEFT SECTION */
.banner-left-mobile-view {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.logo-img-mobile-view {
  width: 140px;
  /* adjust size as needed */
  height: auto;
  display: block;
  margin: 0 auto;
  /* centers the logo in mobile view */
}

.tagline-mobile-view {
  font-size: 14px;
  color: #e3e3e3;
  line-height: 1.4;
  /*margin-top: 8px;*/
  font-style: italic;
  text-align: left;
}

/* EXPERIENCE BADGE */
.experience-badge-mobile-view {
  background: #fff;
  color: #000;
  text-align: center;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 6px 12px;
  margin-top: 0 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  font-style: normal;
}

.experience-badge-mobile-view strong {
  font-size: 22px;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.experience-badge-mobile-view span {
  font-size: 12px !important;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Extra Small Screens (≤400px) */
@media (max-width: 400px) {
  .logo-text-mobile-view h2 {
    font-size: 22px;
  }

  .tagline-mobile-view {
    font-size: 13px;
  }

  .experience-badge-mobile-view strong {
    font-size: 20px;
  }

  .experience-badge-mobile-view span {
    font-size: 9px;
  }
}

@media screen and (min-width: 991px) {
  .black-banner-mobile-view {
    display: none;
  }
}

.trending-section {
  text-align: center;
  padding: 60px 80px;
  background: #f7f7f7;
  margin-top: -30px;
  /* ✅ moves section slightly up */
}

.section-title {
  font-size: 25px;
  font-weight: 450;
  margin-bottom: 40px;
  letter-spacing: 4px;
  color: #404040;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 20px;
  margin-top: -15px;
  /* ✅ moves the section slightly up */
}

/* Layout adjustments */
.trend-item.wide {
  grid-column: span 2;
}

.trend-item.square {
  grid-column: span 1;
}

.trend-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  /* removed rounded corners */
}

.trend-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* ✅ shows entire image without cropping */
  /* optional — fills gaps with white */
  transition: transform 0.4s ease;
}

.trend-item:hover img {
  transform: scale(1.05);
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trend-item:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.overlay-content h3 {
  font-size: 17px !important;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.view-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #111 !important;
  color: #fff !important;
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  transition: none !important;
}

.view-btn:hover {
  background: #111 !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* ✅ Adjustments ONLY for 125% screen scaling */
@media screen and (max-width: 1280px) {
  .trending-section {
    padding: 50px 60px;
    /* slightly reduce padding */
  }

  .section-title {
    font-size: 23px;
    letter-spacing: 3px;
    margin-bottom: 30px;
  }

  .trending-grid {
    gap: 15px;
    margin-top: -10px;
    /* slightly adjust upward position */
    grid-template-columns: repeat(4, 1fr);
    /* keep 4-column layout */
  }

  .trend-item img {
    object-fit: cover;
  }

  .overlay-content h3 {
    font-size: 16px;
  }

  .view-btn {
    padding: 7px 18px;
    font-size: 13px;
  }
}

/* ✅ For ~110% screen width responsiveness */
@media screen and (min-width: 1650px) and (max-width: 1850px) {
  .trending-section {
    padding: 60px 60px;
  }

  .trending-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 330px;
    /* slightly taller to maintain proportion */
    gap: 25px;
  }

  .trend-item img {
    object-fit: contain;
    transform: scale(1.02);
  }

  .section-title {
    font-size: 26px;
    letter-spacing: 4px;
  }
}

/* ✅ 100% Screen Responsive Equal Square Fix */
@media screen and (min-width: 1201px) {
  .trending-grid {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
  }

  .trend-item.square img,
  .trend-item.wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ensures consistent square visuals */
  }

  .trend-item.square,
  .trend-item.wide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }
}

/* ============================
   RESPONSIVE DESIGN
============================ */

/* ✅ Medium screens (Tablets) — 2 images per row */
@media (max-width: 992px) {
  .trending-section {
    padding: 40px 40px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .trend-item.wide {
    grid-column: span 1;
  }
}

/* ✅ Mobile screens — 1 image at a time */
@media (max-width: 600px) {
  .trending-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .trending-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 15px;
  }

  .trend-item {
    width: 100%;
  }

  .overlay-content h3 {
    font-size: 16px;
  }

  .view-btn {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/* ================================
   FEATURES BRANDS MOBILE VIEW
================================ */
@media (max-width: 600px) {
  .features-brands-mobile-view {
    padding: 20px 0;
    background-color: #fff;
    /* optional */
  }

  .features-brands-logo-mobile-view {
    display: flex;
    flex-direction: column;
    /* stack vertically */
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  }

  .feature-items {
    display: flex;
    flex-direction: column;
    /* icon above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    width: 100%;
  }

  .feature-items img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 8px;
  }

  .feature-items img[alt="Best Price"] {
    width: 48px;
    /* Increase width */
    height: auto;
    /* Maintain aspect ratio */
  }

  .feature-items span {
    display: block;
    line-height: 1.3;
  }
}

@media screen and (min-width: 991px) {
  .features-brands-mobile-view {
    display: none;
  }
}

.special-product-section {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(to bottom, #fafafa, #dadada);
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -30px;
  /* ✅ moves section slightly up */
}

.special-title {
  font-size: 28px;
  font-weight: 500;
  color: #616060;
  margin-bottom: 10px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

/* underline below title */
.special-title::after {
  content: "";
  display: block;
  width: 400px;
  height: 2px;
  background-color: #616060;
  margin: 8px auto 0 auto;
}

.special-subtitle {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
  /* slightly closer to title */
  margin-bottom: 40px;
  font-style: italic;
}

.special-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.special-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 200%;
  gap: 20px;
  padding: 0 10px;
  box-sizing: border-box;
}

.special-item {
  position: relative;
  flex: 0 0 calc(50% - 10px);
  overflow: hidden;
  border-radius: 0;
  /* sharp corners */
  height: 350px;
}

.special-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 0;
  /* sharp corners */
}

.special-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0;
  /* sharp corners */
}

.special-item:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.overlay-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.view-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0;
  /* sharp button corners */
  transition: background 0.3s ease;
}

.view-btn:hover {
  background: black;
  color: #fff;
}

/* Arrows */
.special-prev,
.special-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  /* ✅ removes background */
  color: #fff;
  /* ✅ white arrows */
  font-size: 24px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 5;
  transition: color 0.3s ease;
}

.special-prev:hover,
.special-next:hover {
  color: rgba(255, 255, 255, 0.7);
  /* ✅ subtle hover fade */
}

.special-prev {
  left: 10px;
}

.special-next {
  right: 10px;
}

/* ✅ Adjustments only for 125% zoom or similar wider displays */
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .special-product-section {
    margin-top: -50px;
    /* slightly more lift to maintain proportion */
    padding: 50px 0;
    /* minor vertical compression */
  }

  .special-title {
    font-size: 26px;
  }

  .special-title::after {
    width: 350px;
    /* keeps underline visually centered at zoom */
  }

  .special-subtitle {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .special-item {
    height: 320px;
    /* maintains balanced height at zoomed scale */
  }

  .view-btn {
    padding: 7px 16px;
    font-size: 13px;
  }

  .special-prev,
  .special-next {
    font-size: 22px;
  }
}

/* ✅ For 110% screen responsiveness (around 1650px–1850px width) */
@media screen and (min-width: 1650px) and (max-width: 1850px) {
  .special-product-section {
    padding: 70px 0;
  }

  .special-title {
    font-size: 30px;
    letter-spacing: 3px;
  }

  .special-title::after {
    width: 420px;
  }

  .special-subtitle {
    font-size: 17px;
    margin-bottom: 45px;
  }

  .special-item {
    height: 380px;
    /* slightly taller for larger screens */
  }

  .view-btn {
    padding: 10px 22px;
    font-size: 15px;
  }

  .special-prev,
  .special-next {
    font-size: 26px;
    padding: 12px 18px;
  }
}

/* ✅ Full 100% screen width responsiveness */
@media screen and (max-width: 1200px) {
  .special-slides {
    width: 100%;
    gap: 10px;
  }

  .special-item {
    flex: 0 0 100%;
    height: auto;
  }

  .special-item img {
    height: auto;
  }

  .special-title::after {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .special-product-section {
    margin-top: 0px;
    /* adjust value as needed */
  }

  .special-slides {
    gap: 15px;
    /* Remove gaps between slides */
  }

  .special-item {
    flex: 0 0 100%;
    /* Make each slide take full width */
    margin: 0;
    /* Remove any side margins */
  }

  .special-carousel {
    overflow: hidden;
    /* Hide overflow to prevent peeking */
  }
}

.tap-slider-section {
  text-align: center;
  background: #fff;
  padding: 40px 50px;
  overflow: hidden;
  position: relative;
}

.tap-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.tap-slides {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: tapScroll 12s linear infinite;
}

.tap-item {
  flex: 0 0 180px;
  /* FIXED WIDTH — perfect infinite scroll */
  background: #282828;
  border-radius: 0;
  overflow: hidden;
}

.tap-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  background: #282828;
}

.tap-item:hover img {
  transform: scale(1.05);
}

.tap-name {
  color: #fff;
  font-size: 08px;
  padding: 5px 4px;
  background: #282828;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 6px;
  line-height: 1.2;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 🌟 Smooth infinite scroll fix */
@keyframes tapScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.33%);
  }
}


/* ✅ Responsive adjustment for ~125% zoom or medium screens */
@media (max-width: 1300px) {
  .tap-slides {
    animation: tapScroll 12s linear infinite;
    /* ⏩ matches new global speed (was 35s earlier) */
  }
}


/* ✅ Responsive adjustment for ~110% zoom */
@media (max-width: 1550px) {
  .tap-slides {
    animation: tapScroll 25s linear infinite;
    /* ⏩ faster than before (was 50s) */
  }
}

/* ✅ Responsive refinement for 100% screen (default zoom) */
@media (min-width: 1551px) {
  .tap-slides {
    animation: tapScroll 18s linear infinite;
    /* ⏩ faster than before (was 50s) */
  }
}


/* Large Phones ≤768px */
@media (max-width: 768px) {
  .tap-item {
    flex: 0 0 140px;
  }

  .tap-slides {
    gap: 8px;
    animation-duration: 9s;
  }

  .tap-slider-section {
    padding: 30px 20px;
  }
}

/* Small Phones ≤480px */
@media (max-width: 480px) {
  .tap-item {
    flex: 0 0 120px;
    /* smaller items fit better */
  }

  .tap-slides {
    gap: 6px;
    animation-duration: 8s;
  }

  .tap-name {
    font-size: 9px;
    height: 38px;
  }

  .tap-slider-section {
    padding: 25px 10px;
  }
}

/* Extra small (≤360px) */
@media (max-width: 360px) {
  .tap-item {
    flex: 0 0 100px;
  }

  .tap-slides {
    animation-duration: 7s;
  }
}

.latest-collection-banner {
  position: relative;
  width: 100%;
  height: 400px;
  /* adjust if needed */
  background: url('../images/latest\ collection.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 80px;
  margin-top: 20px;
  /* 🔹 gap from section above */
}

/* Optional: subtle overlay to make text visible on shiny metal bg */
.latest-collection-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
}

/* Text & button container */
.banner-content {
  position: relative;
  text-align: right;
  z-index: 2;
}

.banner-content h2 {
  font-size: 40px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #333;
}

.banner-content h2 .light-text {
  font-weight: 400;
  /* lighter */
}

.banner-content h2 .bold-text {
  font-weight: 800;
  /* heavier and bold */
}

.banner-content button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-size: 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
  display: block;
  /* allow alignment control */
  margin: 20px 0 0 0;
  /* add some spacing if needed */
  text-align: left;
  /* ensure button text aligns left */
}

.banner-content button:hover {
  background-color: #444;
}

/* ✅ Keep Latest Collection Banner layout same at 125% zoom */
@media screen and (max-width: 1300px) and (min-width: 1150px) {
  .latest-collection-banner {
    height: 400px;
    /* lock height */
    background-size: cover;
    padding-right: 80px;
  }

  .banner-content h2 {
    font-size: 40px;
    /* maintain same size */
  }

  .banner-content button {
    font-size: 14px;
    padding: 10px 25px;
    margin-top: 20px;
  }
}

/* ✅ For 110% screen responsiveness (approx. 1650px–1850px width) */
@media screen and (min-width: 1650px) and (max-width: 1850px) {
  .latest-collection-banner {
    height: 440px;
    /* slightly taller for proportional look */
    padding-right: 100px;
    /* push text a bit more inward */
    background-size: cover;
  }

  .banner-content h2 {
    font-size: 46px;
    /* upscale text slightly */
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .banner-content button {
    padding: 12px 28px;
    font-size: 15px;
    margin-top: 25px;
  }
}

/* ✅ Full 100% screen responsive adjustments */
@media screen and (max-width: 1200px) {
  .latest-collection-banner {
    height: 350px;
    padding-right: 60px;
    background-position: center;
  }

  .banner-content h2 {
    font-size: 34px;
  }
}

/* ========================
   🌐 RESPONSIVE DESIGN
======================== */

/* Tablet view (≤1024px) */
@media (max-width: 1024px) {
  .latest-collection-banner {
    height: 320px;
    padding-right: 40px;
  }

  .banner-content h2 {
    font-size: 32px;
  }

  .banner-content button {
    padding: 9px 22px;
    font-size: 13px;
  }
}

/* Mobile view (≤768px) */
@media (max-width: 768px) {
  .latest-collection-banner {
    height: 260px;
    justify-content: center;
    /* center the text */
    padding: 0 20px;
    text-align: center;
  }

  .banner-content {
    text-align: center;
  }

  .banner-content h2 {
    font-size: 18px !important;
    margin-bottom: 10px;
    position: relative;
    left: 80px;
    /* move right */
    top: -30px;
    /* 👈 move upward (adjust value as needed) */
  }

  .banner-content button {
    font-size: 12px;
    padding: 8px 18px;
    margin-top: -30px;
    /* ✅ moves it slightly down */
    position: relative;
    left: 196px !important;
  }
}

/* Extra small devices (≤480px) */
@media (max-width: 480px) {
  .latest-collection-banner {
    height: 200px;
    padding: 0 15px;
    background-position: center;
  }

  .banner-content h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .banner-content button {
    font-size: 11px;
    padding: 7px 15px;
  }
}

.best-seller {
  text-align: center;
  padding: 40px 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #bcbcbc, #d5d5d5);
  overflow: hidden;
}

.best-seller h2 {
  letter-spacing: 3px;
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  color: #555;
}

.best-seller h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 250px;
  height: 3px;
  background-color: #555;
  border-radius: 2px;
}

.best-seller p {
  color: #555;
  margin-bottom: 30px;
}

.bs-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-carousel-container {
  overflow: hidden;
  width: 90%;
}

.bs-carousel {
  display: flex;
  transition: transform 0.5s ease;
}

/* Sharp corner cards */
.bs-item {
  flex: 0 0 calc(25% - 20px);
  margin: 0 10px;
  border-radius: 0;
  /* sharp corners */
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.bs-item img {
  width: 100%;
  height: auto;
  border-radius: 0;
  /* sharp corners */
  object-fit: cover;
  display: block;
}

.bs-item p {
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

/* Arrows */
.bs-arrow {
  position: absolute;
  top: 40%;
  /* ⬆️ moved arrows slightly up */
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  /* ✅ remove background */
  color: #000;
  /* ✅ black arrow color */
  border: none;
  border-radius: 0;
  /* sharp corners */
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 5;
}

.bs-arrow:hover {
  color: #444;
  /* optional: slightly darker on hover */
}

.bs-left {
  left: 2%;
}

.bs-right {
  right: 2%;
}

.bs-pagination {
  text-align: center;
  margin-top: 15px;
}

.bs-dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.bs-dot.active {
  background-color: #000;
}

/* ✅ Responsive adjustments for 125% screen zoom (4 items per row) */
@media screen and (max-width: 1280px) {
  .best-seller {
    padding: 35px 0;
  }

  .best-seller h2::after {
    width: 200px;
    /* keep underline centered and balanced */
  }

  .bs-carousel-container {
    width: 92%;
    /* slightly wider to maintain 4 visible items */
  }

  .bs-item {
    flex: 0 0 calc(25% - 15px);
    /* ✅ still 4 per row */
    margin: 0 7px;
  }

  .bs-arrow {
    font-size: 1.8rem;
    width: 38px;
    height: 38px;
  }

  .bs-left {
    left: 1.5%;
  }

  .bs-right {
    right: 1.5%;
  }
}

/* ✅ For 110% screen responsiveness (approx. 1650px–1850px width) */
@media screen and (min-width: 1650px) and (max-width: 1850px) {
  .best-seller {
    padding: 60px 0;
    /* more breathing room */
  }

  .best-seller h2 {
    font-size: 1.8rem;
    /* slightly larger heading */
    letter-spacing: 3.5px;
  }

  .best-seller h2::after {
    width: 300px;
    /* longer underline */
  }

  .best-seller p {
    font-size: 1.05rem;
    /* small upscale */
    margin-bottom: 40px;
  }

  .bs-item {
    flex: 0 0 calc(25% - 15px);
    /* slightly wider cards */
  }

  .bs-item img {
    transform: scale(1.02);
    /* subtle enlargement for better fill */
  }

  .bs-arrow {
    font-size: 2.2rem;
    width: 50px;
    height: 50px;
  }
}

/* ✅ 100% Screen Responsive Adjustments */
@media screen and (max-width: 1200px) {
  .bs-carousel-container {
    width: 95%;
  }

  .bs-item {
    flex: 0 0 calc(33.33% - 20px);
    /* 3 items per row */
  }

  .best-seller h2::after {
    width: 200px;
  }
}

/* 🌐 Tablet view (≤1024px) — show 2 images */
@media (max-width: 1024px) {
  .bs-item {
    flex: 0 0 calc(50% - 20px);
  }

  .bs-arrow {
    top: 45%;
    font-size: 1.8rem;
  }

  .bs-carousel-container {
    width: 95%;
  }

  .best-seller h2::after {
    width: 180px;
  }
}

/* 📱 Mobile view (≤768px) — show 1 image per slide */
@media (max-width: 768px) {
  .bs-item {
    flex: 0 0 100%;
    /* ✅ one image at a time */
    margin: 0;
  }

  .bs-carousel-container {
    width: 90%;
  }

  .bs-arrow {
    display: none;
  }

  .best-seller {
    padding: 30px 0;
  }

  .best-seller h2 {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .best-seller h2::after {
    width: 120px;
  }

  .best-seller p {
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 10px;
    /* ✅ moves it slightly down */
  }

  .bs-pagination {
    text-align: center;
    margin-top: 15px;
  }

  .bs-dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .bs-dot.active {
    background-color: #000;
  }

}

/* 📱 Small phones (≤480px) — tighter spacing and smaller arrows */
@media (max-width: 480px) {
  .bs-item img {
    width: 100%;
    height: auto;
  }

  .bs-arrow {
    top: 48%;
    font-size: 1.4rem;
  }

  .best-seller {
    padding: 25px 0;
  }

  .best-seller h2::after {
    width: 100px;
  }

  .best-seller p {
    font-size: 13px;
  }
}

@media screen and (min-width: 991px) {
  .bs-pagination {
    display: none;
  }

}

.footer {
  background: linear-gradient(to bottom, #bcbcbc, #d3d3d3);
  padding: 30px 0;
  border-top: 1px solid #bcbcbc;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Logo Row */
.footer-logo {
  text-align: center;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Footer Bottom (Links + Social) */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 12px 0;
  flex-wrap: wrap;
  gap: 10px;
}

/* Links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  flex: 1;
  margin-left: -160px;
  /* adjust value (20–40px) as per need */
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Social */
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-right: 2rem;
}

.footer-social span {
  font-size: 14px;
  color: #333;
}

.footer-social a {
  color: #000;
  font-size: 16px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #555;
}

/* ✅ Responsive adjustments for 125% zoom */
@media screen and (max-width: 1280px) {
  .footer-container {
    width: 97%;
  }

  .footer-links {
    margin-left: -220px;
    /* slightly reduced to keep center alignment consistent */
    gap: 16px;
  }

  .footer-links a {
    font-size: 13px;
    /* slightly smaller for zoom balance */
  }

  .footer-social {
    gap: 6px;
    margin-right: 2.5rem;
    /* move a bit left for balanced spacing */
  }

  .footer-social a {
    font-size: 15px;
    /* slightly adjusted for visual consistency */
  }

  .footer-logo img {
    height: 55px;
    /* minor adjustment for zoom scaling */
  }

  .footer-bottom {
    padding: 10px 0;
    gap: 8px;
  }
}

/* ✅ For 110% screen responsiveness (approx. 1650px–1850px width) */
@media screen and (min-width: 1650px) and (max-width: 1850px) {
  .footer {
    padding: 40px 0;
    /* slightly more vertical space */
  }

  .footer-logo img {
    height: 70px;
    /* slightly larger logo */
  }

  .footer-bottom {
    padding: 18px 0;
    /* more balanced vertical padding */
    gap: 15px;
  }

  .footer-links {
    gap: 25px;
    /* extra spacing between links */
    margin-left: -200px;
    /* shift slightly left for symmetry */
  }

  .footer-links a {
    font-size: 15px;
    /* slightly larger font for readability */
  }

  .footer-social {
    gap: 12px;
    margin-right: 3rem;
    /* more spacing from edge */
  }

  .footer-social span {
    font-size: 15px;
  }

  .footer-social a {
    font-size: 18px;
  }
}

/* ✅ 100% Screen Responsive Adjustments */
@media screen and (max-width: 1200px) {
  .footer-container {
    width: 98%;
  }

  .footer-links {
    margin-left: -80px;
  }

  .footer-social {
    margin-right: 1rem;
  }
}

/* ---------------------------------- */
/* ✅ Mobile & Tablet Responsiveness  */
/* ---------------------------------- */
@media (max-width: 992px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .footer-links {
    margin-left: 0;
    justify-content: center;
    gap: 15px;
  }

  .footer-social {
    margin: 10px 0 0 0;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-logo img {
    height: 50px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-social span {
    display: none;
    /* optional: hides 'Follow Us:' on small screens */
  }

  .footer-social a {
    font-size: 18px;
  }
}

/* White background strip */
.contact-strip {
  position: fixed;
  bottom: 25px;
  right: 10px;

  padding: 10px 18px;
  border-radius: 40px;
  /* pill shape */

  display: flex;
  align-items: center;
  gap: 15px;
}

/* Circular WhatsApp button */
.wa-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wa-btn img {
  width: 45px;
  height: 45px;
}

/* Lift the strip slightly above footer */
.contact-strip.lift-up {
  bottom: 70px !important; 
}

