* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: #fafafa;
  color: #111;
}

/* HEADER */
.header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Jersey M54', sans-serif;
  font-size: 34px;
  color: #0078b7;
}

.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 80vh;
}

.hero-text h1 {
  font-size: 44px;
  font-weight: 500;
}

.hero-text p {
  margin-top: 16px;
  color: #555;
}

.hero-slider {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider img {
  max-height: 420px;
  width: auto;
  position: absolute;
  opacity: 0;
}

.hero-slider img.active {
  opacity: 1;
}

/* TRUST */
/* .trust {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
  font-weight: 500;
} */
 .trust {
  background: #f6f8fa;
  padding: 100px 20px;
}

.trust-container {
  max-width: 1200px;
  margin: auto;
}

.trust h2 {
  font-size: 32px;
  margin-bottom: 50px;
  color: #111;
}

/* GRID FIX */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD FIX */
.trust-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
}

/* MOBILE */
@media(max-width:768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}


/* PRODUCTS */
.products-section {
  background: #f6f7f8;
  padding: 140px 40px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 80px;
}

.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 80px;
}

.product-card {
  background: #fff;
  padding: 60px;
  border-radius: 12px;
  text-align: center;
}

.product-card img {
  max-height: 360px;
  margin-bottom: 40px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin-top: 20px;
  background: #0078b7;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  border: 1px solid #0078b7;
  color: #0078b7;
  text-decoration: none;
}

/* PRODUCT DETAIL */
.product-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-detail img {
  max-height: 420px;
}

/* CONTACT */
.contact {
  padding: 120px 40px;
  text-align: center;
}

.contact form {
  max-width: 420px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ddd;
}

.contact button {
  padding: 14px;
  background: #0078b7;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  color: #777;
}

/* MOBILE */
@media(max-width:768px) {

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    text-align: center;
    min-height: auto;
  }

  .hero-slider {
    height: 280px;
  }

  .hero-slider img {
    max-height: 280px;
  }

  .trust {
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .product-card {
    padding: 40px 20px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 20px;
  }
}
/* STICKY HEADER */
.header {
  position: sticky;
  top: 0;
  background: #fafafa;
  z-index: 1000;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #111;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px,-6px);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 26px;
  text-decoration: none;
  color: #111;
}

/* DARK MODE */
body.dark {
  background: #0f1115;
  color: #f1f1f1;
}

body.dark .header,
body.dark .mobile-menu {
  background: #0f1115;
}

body.dark a {
  color: #f1f1f1;
}

body.dark .hamburger span {
  background: #f1f1f1;
}

.dark-toggle {
  margin-left: auto;
  margin-right: 16px;
  cursor: pointer;
  font-size: 18px;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* MOBILE ONLY */
@media(max-width:768px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
/* PAGE FADE */
.page {
  animation: fadeIn 0.6s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ACTIVE LINK */
.nav a.active,
.mobile-menu a.active {
  border-bottom: 2px solid #0a66c2;
}
.products {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 40px;
}

.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  max-width: 100%;
}

.product-card a {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  background: #0a66c2;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
}
.trust {
  background: #f6f8fa;
  padding: 80px 20px;
  text-align: center;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 30px;
  margin-top: 40px;
}
.trust-grid div {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.buy-options {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* ✅ CENTER FIX */
  gap: 16px;
}
.buy-options .btn,
.buy-options button {
  width: 100%;
  max-width: 420px;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn {
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
}

/* AMAZON */
.amazon {
  background: #ff9900;
  color: #111;
}

/* FLIPKART */
.flipkart {
  background: #2874f0;
  color: #fff;
}

/* WHATSAPP */
/* WHATSAPP (UPDATED) */
.whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff;
}
/* BUY NOW BUTTON */
.razorpay {
  background: linear-gradient(135deg, #0078b7, #005f8f);
  color: #fff;
}

/* HOVER */
.btn:hover {
  opacity: 0.9;
}
.buy-note {
  margin-top: 12px;
  font-size: 14px;
  color: #555;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 22px;
  padding: 14px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 999;
}

.legal {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  line-height: 1.8;
}

.legal h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.legal h3 {
  margin-top: 30px;
  font-size: 20px;
}

.legal ul {
  margin-left: 20px;
}
/* ===== POPUP BACKGROUND ===== */
.order-popup {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* ===== POPUP BOX ===== */
.order-box {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  width: 92%;
  max-width: 380px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.25);
  animation: popupFade 0.35s ease;
}

/* ANIMATION */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== TITLE ===== */
.order-box h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 4px;
}

.subtitle {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-bottom: 18px;
}

/* ===== INPUT FIELDS ===== */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 14px;
  transition: 0.25s;
}

/* FOCUS EFFECT */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0078b7;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,120,183,0.12);
  outline: none;
}

/* ===== ORDER SUMMARY ===== */
.order-summary {
  display: flex;
  justify-content: space-between;
  background: #f1f5f9;
  padding: 12px;
  border-radius: 12px;
  margin: 18px 0;
}

/* ===== PRIMARY BUTTON ===== */
.btn.primary {
  width: 100%;
  background: linear-gradient(135deg, #0078b7, #005f8f);
  color: #fff;
  border-radius: 12px;
  padding: 15px;
  font-weight: 600;
  transition: 0.25s;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,120,183,0.3);
}

/* ===== COD BUTTON ===== */
.btn.secondary {
  width: 100%;
  background: #f3f4f6;
  color: #333;
  border-radius: 12px;
  padding: 14px;
  margin-top: 10px;
  font-weight: 500;
  transition: 0.2s;
}

.btn.secondary:hover {
  background: #e5e7eb;
}

/* ===== CANCEL BUTTON ===== */
.btn.secondary:last-child {
  background: transparent;
  color: #888;
}

/* MOBILE */
@media(max-width:480px) {
  .order-box {
    padding: 20px;
  }
}
@media(max-width:768px){

  /* LOGO FIX */
  .logo {
    font-size: 26px;
  }

  /* SECTION SPACING */
  .products-section {
    padding: 80px 16px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  /* PRODUCT GRID */
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* PRODUCT CARD */
  .product-card {
    padding: 18px;
    border-radius: 14px;
  }

  .product-card img {
    max-height: 140px;
    margin-bottom: 16px;
  }

  /* TEXT FIX */
  .product-card h3 {
    font-size: 15px;
    line-height: 1.3;
  }

  .product-card p {
    font-size: 13px;
    margin-top: 4px;
  }

  /* PRICE */
  .product-card p:last-of-type {
    font-weight: 600;
    margin-top: 6px;
  }

  /* BUTTON FIX */
  .product-card .btn {
    margin-top: 12px;
    padding: 10px;
    font-size: 14px;
    border-radius: 20px;
  }

  /* WHATSAPP BUTTON FIX */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    padding: 12px;
    font-size: 18px;
  }
}
/* LOGO FONT FIX */
.logo {
  font-family: 'Jersey M54', sans-serif;
  letter-spacing: 1px;
}

/* MOBILE LOGO FIX */
@media(max-width:768px){
  .logo {
    font-size: 24px;   /* smaller for mobile */
    letter-spacing: 0.5px;
  }
}