
/* ===============================
   FULL WIDTH BANNER SLIDER
================================ */

.banner-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #000;
}

.banner-track {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Slides */
.banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

/* Active slide */
.banner-slide.active {
  opacity: 1;
}

/* Dark overlay (optional but clean) */
.banner-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 40, 70, 0.65),
    rgba(5, 40, 70, 0.25)
  );
  pointer-events: none;
}

/* Navigation arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 32px;
  padding: 12px 18px;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
}

.nav:hover {
  background: rgba(0,0,0,0.6);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .banner-slider {
    height: 200px;
  }

  .nav {
    font-size: 24px;
    padding: 10px 14px;
  }
}


.accessories-section {
  padding: 40px 20px;
  background: #fff;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: left;
  max-width: 1200px;
  margin-inline: auto;
}

.accessories-wrapper {
  display: flex;
  justify-content: center; /* 👈 CENTER ITEMS */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto; /* 👈 mobile scroll */
  padding-bottom: 10px;
}

.accessory-card {
  min-width: 180px;
  background: #f9f9f9;
  border-radius: 18px;
  text-align: center;
  padding: 18px;
  text-decoration: none;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessory-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.accessory-card p {
  font-size: 14px;
  font-weight: 500;
}

.accessory-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .accessory-card {
    min-width: 150px;
  }
}

/* =========================
   MOBILE ONLY FIXES
   ========================= */
@media (max-width: 768px) {

  /* ===== Banner resize (mobile only) ===== */
  .banner-section {
    padding: 12px;
  }

  .banner-card {
    height: 80px;      /* smaller height */
    border-radius: 16px;
  }

  /* ===== Accessories section ===== */
  .accessories-section {
    padding: 25px 12px;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .accessories-wrapper {
    justify-content: flex-start; /* 🔥 FIX SWIPE ISSUE */
    gap: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .accessory-card {
    min-width: 140px;     /* controls card width */
    padding: 12px;
    border-radius: 14px;
    flex-shrink: 0;       /* 🔥 REQUIRED for smooth swipe */
  }

  .accessory-card img {
    height: 70px;         /* image height on mobile */
    border-radius: 10px;
  }

  .accessory-card p {
    font-size: 13px;
  }
}



/* ===== PRODUCTS GRID ===== */
.products-section {
  padding: 40px 20px;
  background: #fff;
}

.products-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ===== CARD ===== */
.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.product-info small {
  color: #777;
  font-size: 12px;
}

.product-info h3 {
  font-size: 14px;
  margin: 8px 0;
}

.price {
  font-weight: 700;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: flex;
    gap: 14px;
    align-items: center;
  }

  .product-card img {
    width: 110px;
    height: 110px;
  }

  .product-info h3 {
    font-size: 13px;
  }
}




.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  animation: pop .3s ease;
}

.modal-content img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
}

@keyframes pop {
  from { transform: scale(.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* SECTION TITLE INSIDE PRODUCTS GRID */
.products-grid h2 {
  grid-column: 1 / -1;               /* span full grid */
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #111;

  margin: 10px 0 25px;
  padding: 12px 20px;

  background: linear-gradient(
    to right,
    #f5f5f5,
    #ffffff
  );

  border-left: 6px solid #ffb703;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}


/* CLICK FEEL */
.accessory-card,
.product-card {
  cursor: pointer;
}

/* ===============================
   MODERN PRODUCT MODAL
================================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 420px;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  animation: scaleIn 0.25s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  text-align: center;
}

/* Close button INSIDE */
.modal-content .close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-content .close:hover {
  background: #e6e6e6;
}

.modal-content img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 16px;
}

.modal-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-content p {
  font-size: 18px;
  font-weight: 700;
  color: #ff7a00;
  margin-bottom: 18px;
}

/* Action button */
#modalBtn {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #0a5cff, #003cff);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#modalBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,60,255,0.35);
}

/* Animation */
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}



.site-footer {
  background: linear-gradient(135deg, #050b1e, #0b163a);
  color: #cbd5f5;
  padding: 80px 6% 30px;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 35px;
  height: 3px;
  background: #3b82f6;
  display: block;
  margin-top: 6px;
  border-radius: 2px;
}

.footer-col p,
.footer-col li {
  font-size: 15px;
  line-height: 1.7;
}

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

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

.footer-col a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-col a:hover {
  color: #3b82f6;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f1d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-bottom span {
  color: #3b82f6;
}

.footer-links a {
  text-decoration: none;
  border: none;
  color: #cbd5f5;
  font-size: 14px;
}

.footer-links a:hover {
  color: #3b82f6;
}

/* Specifically for Terms button */
.terms-btn {
  text-decoration: none;
  border: none;
  background: #1e3a8a;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
}

/* Kill any inherited underline or border */
.footer-links a::after,
.footer-links a::before {
  content: none;
}


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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;

  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.footer-links a {
  text-decoration: none !important;
  border-bottom: none !important;
}


.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #ffb703;
}

/* CATEGORY BUTTON */
.cat-btn {
  background: #f3f3f3;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 4px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* ANIMATION ☰ → X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
}

.mobile-menu a {
  padding: 14px 20px;
  border-bottom: 1px solid #f1f1f1;
  text-decoration: none;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  /* center logo on mobile */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-menu.active {
    display: flex;
  }
}

.logo a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
 background: white;
  padding-top: 80px; /* match header height */
}
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;

  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}


.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #ffb703;
}

/* CATEGORY BUTTON */
.cat-btn {
  background: #f3f3f3;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 4px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* ANIMATION ☰ → X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
}

.mobile-menu a {
  padding: 14px 20px;
  border-bottom: 1px solid #f1f1f1;
  text-decoration: none;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  /* center logo on mobile */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-menu.active {
    display: flex;
  }
}

.logo a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
html {
  scroll-behavior: smooth;
}
