/* =========================
   GLOBAL VARIABLES
========================= */
:root {
  --primary-orange: #fa7c21;
  --primary-red: #d92918;
  --text-dark: #1f1f1f;
  --text-muted: #666;
  --bg-light: #faf7f3;
  --bg-white: #ffffff;
  --radius-lg: 16px;
  --radius-md: 10px;
  --transition: all 0.35s ease;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  padding: 18px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.logo {
  font-size: 28px;
  font-weight: 800;
  height: 50px !important;
  object-fit: contain;
}
.logo img {
  height: 50px;
}
.logo span {
  color: var(--primary-orange);
}

.header nav a {
  margin-left: 28px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.header nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-orange);
  transition: var(--transition);
}

.header nav a:hover::after {
  width: 100%;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  padding: 30px 80px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(250, 124, 33, 0.15);
  color: var(--primary-red);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-text h1 span {
  color: var(--primary-red);
}

.hero-text p {
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 35px;
}

.hero-btns {
  display: flex;
  gap: 18px;
}

.hero-img img {
  width: 60%;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

/* =========================
   BUTTONS
========================= */
.primary-btn {
  background: var(--primary-red);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.primary-btn:hover {
  background: var(--primary-orange);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(217, 41, 24, 0.45);
}

.secondary-btn {
  background: transparent;
  border: 1.5px solid #ddd;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.secondary-btn:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

/* =========================
   PRODUCTS SECTION
========================= */
.products {
  padding: 90px 80px;
}

.products h1 {
  color: var(--primary-red);
  text-align: center;
  margin-bottom: 5px;
  font-size: 34px;
}
.products h3 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding-bottom: 25px;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 70px rgba(250, 124, 33, 0.25);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-white);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--primary-orange);
}

.product-card h3 {
  margin: 18px 20px 6px;
}

.product-card p {
  margin: 0 20px 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.tag {
  display: inline-block;
  margin-left: 20px;
  background: var(--primary-red);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
}

.outline-btn {
  margin: 15px 20px 0;
  width: calc(100% - 40px);
  padding: 12px;
  background: transparent;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.outline-btn:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

/* =========================
   BRAND SECTION
========================= */
/* SECTION */
.brand-section {
  padding: 120px 0;
  background: #faf7f3;
}

/* CONTAINER */
.brand-container {
  position: relative;
  margin: auto;
  height: 540px;
}

/* RED BACKGROUND */
.brandBG {
  position: absolute;
  inset: 0;
  background-color: #d92918;
  z-index: 1;
}

/* IMAGE */
.brand-image-big {
  position: absolute;
  left: 80px; /* pushes image outside background */
  top: -60px; /* overflow on top */
  z-index: 2;
}

.brand-image-big img {
  width: 520px;
  height: 640px; /* taller than background */
  object-fit: cover;
  display: block;
}

.brand-image-small {
  position: absolute;
  right: 80px; /* pushes image outside background */
  top: 400px; /* overflow on top */
  z-index: 2;
}

.brand-image-small img {
  width: 300px;
  height: 350px; /* taller than background */
  object-fit: cover;
  display: block;
}
/* TEXT */
.brand-text {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 720px;
  color: #fff;
}

.brand-text p {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

/* =========================
   RESPONSIVE – BRAND SECTION
========================= */

/* TABLET */
@media (max-width: 1024px) {
  .brand-container {
    height: auto;
    padding: 100px 40px;
  }

  .brandBG {
    position: relative;
    height: auto;
    padding: 120px 0;
  }

  .brand-image-big {
    position: relative;
    left: 0;
    top: -60px;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }

  .brand-image-big img {
    width: 420px;
    height: 520px;
  }

  .brand-text {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    margin: auto;
    max-width: 720px;
    text-align: center;
  }

  .brand-text p {
    text-align: center;
  }
}

/* =========================
   MOBILE – FINAL EDITORIAL BRAND SECTION
========================= */
@media (max-width: 600px) {
  .brand-section {
    padding: 60px 0;
    overflow: visible;
  }

  .brand-container {
    position: relative;
    height: 1200px;
    padding: 0 16px;
    margin: 150px 0px 50px;
    overflow: visible;
  }

  /* RED BACKGROUND */
  .brandBG {
    position: absolute;
    inset: 0;
    background-color: #d92918;
    z-index: 1;
  }

  /* BIG IMAGE – TOP OVERFLOW */
  .brand-image-big {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: 3;
  }

  .brand-image-big img {
    width: 320px;
    height: auto;
    border-radius: 10px;
  }

  /* TEXT – BETWEEN IMAGES */
  .brand-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 320px;
    text-align: center;
    color: #fff;
  }

  .brand-text h1 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .brand-text p {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
  }

  /* SMALL IMAGE – BOTTOM OVERFLOW */
  .brand-image-small {
    position: absolute;
    left: 36%; /* ✅ REQUIRED */
    bottom: -1100px;
    transform: translate(-50%, 30%);
    z-index: 3;
  }
  .brand-image-small img {
    width: 250px;
    height: auto;
    border-radius: 10px;
  }
}
/* =========================
   PROCESS SECTION
========================= */
.process {
  padding: 90px 80px;
  text-align: center;
}

.process h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.process-desc {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-muted);
}

.process ol {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 40px;
}
.process li {
  padding: 12px 0;
  font-weight: 500;
}

/* =========================
   CIRCLE SECTION
========================= */
/* SECTION */
.circle-section {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  background: #f5efe7;
}

/* CARD */
.circle-card {
  width: 420px;
  background: #d92918;
  padding: 40px 20px 30px;
  text-align: center;
  position: relative;
  transition: 0.4s ease;
}

.circle-card:hover {
  transform: translateY(-10px);
}

/* CIRCLE WRAP */
.circle-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  margin: auto;
}

/* SVG TEXT */
.circle-text-svg {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.circle-text-svg text {
  fill: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* IMAGE CIRCLE */
.circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: 0.5s ease;
}

.circle-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* HOVER EFFECT */
.circle-card:hover .circle-img {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(217, 41, 24, 0.4);
}

/* BRAND */
.circle-brand {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
}

.circle-brand .brand-red {
  color: #fff;
  margin-right: 2px;
}

/* TITLE */
.circle-title {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 500px) {
  .circle-card {
    width: 100%;
  }
}

/* =========================
   CTA SECTION
========================= */
.cta {
  padding: 110px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 40px;
  margin-bottom: 14px;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* =========================
   FEATURES
========================= */
.features {
  padding: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--bg-white);
  padding: 45px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-red)
  );
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(217, 41, 24, 0.35);
}

.feature-card p {
  margin-top: 10px;
  font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .hero,
  .brand {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 40px;
  }
}

/* FOOTER */
.footer {
  border-top: 1px solid #eee;
  padding: 20px 20px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  margin-top: 10px;
  border: 2px solid #555;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  font-size: 16px; /* better icon fit */
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none; /* remove underline */
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border: 2px solid #d92918;
  color: #d92918;
}
.footer-grid {
  padding: 20px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer a {
  display: block;
  color: #555;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer-grid div a:hover {
  color: #d92918;
  transition: all;
}
.footer h3 {
  color: var(--orange);
}

.copyright {
  text-align: center;
}

/* pop-up of product  */
/* =========================
   PRODUCT MODAL
========================= */
.product-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.product-modal.active {
  display: block;
}

/* OVERLAY */
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* MODAL CONTENT */
.modal-content {
  background: #ffffff;
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  animation: scaleIn 0.35s ease;
}

/* ANIMATION */
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 32px;
  border: none;
  background: none;
  cursor: pointer;
  color: #222;
}

/* =========================
   IMAGE SECTION
========================= */
.modal-images {
  display: flex;
  flex-direction: column;
}

.main-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

/* THUMBNAILS */
.thumbnail-row {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.thumbnail-row img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: 0.3s ease;
}

.thumbnail-row img:hover {
  border-color: #fa7c21;
  transform: scale(1.05);
}

/* =========================
   DETAILS SECTION
========================= */
.modal-details {
  display: flex;
  flex-direction: column;
}

/* TITLE */
.modal-details h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

/* DESCRIPTION */
.modal-details .description {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px; /* space before price */
  font-size: 15px;
}

/* PRICE (AFTER DESCRIPTION) */
.modal-details .model-price {
  font-size: 24px;
  font-weight: 700;
  color: #fa7c21;
  margin-bottom: 30px;
  display: block;
}

/* Optional price label */
.modal-details .price::before {
  content: "Price";
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================
   REDIRECT BUTTONS
========================= */
.redirect-buttons {
  margin-top: auto;
}

.redirect-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

/* AMAZON */
.redirect-buttons a:nth-child(1) {
  background: var(--primary-orange);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.redirect-buttons a:nth-child(1):hover {
  background: var(--primary-red);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(217, 41, 24, 0.45);
}
/* FLIPKART */
.redirect-buttons a:nth-child(2) {
  background: var(--primary-red);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.redirect-buttons a:nth-child(2):hover {
  background: var(--primary-orange);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(217, 41, 24, 0.45);
}
/* MEESHO */
.redirect-buttons a:nth-child(3) {
  background: var(--primary-orange);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.redirect-buttons a:nth-child(3):hover {
  background: var(--primary-red);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(217, 41, 24, 0.45);
}
/* ICON IMAGES */
.redirect-buttons img {
  max-width: 28px;
  height: auto;
}

/* HOVER */
.redirect-buttons a:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .modal-content {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .main-image {
    height: 280px;
  }

  .thumbnail-row img {
    width: 70px;
    height: 70px;
  }
}

/* =========================
   RESPONSIVE HEADER
========================= */

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #222;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* OVERLAY */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 999;
}

/* MOBILE NAV */
@media (max-width: 992px) {
  .header {
    padding: 16px 24px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 90px 30px;
    gap: 22px;
    transition: 0.5s ease;
    z-index: 1000;
  }

  .nav a {
    font-size: 18px;
    margin: 0;
  }

  .nav.active {
    right: 0;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* HAMBURGER ANIMATION */
  .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);
  }
}

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-img img {
    width: 100%;
    margin-top: 30px;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .products {
    padding: 70px 30px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features {
    padding: 60px 30px;
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-social {
    justify-content: center;
  }
  .modal-content {
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 28px;
  }
}
