:root {
  --maroon: #7b0f17;
  --gold: #d4a017;
  --saffron: #ff8a00;
  --blue: #0d4c92;
  --teal: #0f6a73;
  --cream: #fff9f2;
  --white: #ffffff;
  --ink: #1d1715;
  --muted: #766862;
  --line: rgba(123, 15, 23, 0.14);
  --shadow: 0 24px 70px rgba(80, 34, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Poppins", "Mukta", system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 249, 242, 0.94);
  color: var(--maroon);
  box-shadow: 0 14px 40px rgba(80, 34, 21, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(212, 160, 23, 0.95), rgba(123, 15, 23, 0.88));
  color: var(--white);
  font-family: "Mukta", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.brand strong,
h1,
h2 {
  font-family: "Mukta", "Poppins", sans-serif;
}

.brand strong {
  display: block;
  line-height: 1;
  font-size: 1.1rem;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  opacity: 0.82;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a {
  opacity: 0.9;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #32120d;
  opacity: 1;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.6rem;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--maroon);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider {
  position: absolute;
  inset: 0;
  display: flex;
  width: 500%;
  animation: heroSlide 28s linear infinite;
}

.hero-slider img {
  flex: 0 0 20%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes heroSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-80%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 42%, rgba(212, 160, 23, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(42, 4, 7, 0.92) 0%, rgba(123, 15, 23, 0.68) 34%, rgba(123, 15, 23, 0.14) 64%, rgba(15, 106, 115, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  padding: 190px 0 90px clamp(18px, 6vw, 72px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--maroon);
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin: 30px 0 36px;
}

.hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  font-size: 0.88rem;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
}

.whatsapp-business {
  gap: 9px;
}

.whatsapp-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 28%, transparent 29%),
    radial-gradient(circle at 50% 50%, #24d366 0 68%, transparent 69%);
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.whatsapp-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 8px;
  height: 8px;
  border: 2px solid #075e54;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-38deg);
}

.whatsapp-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 2px;
  border-style: solid;
  border-width: 4px 6px 0 0;
  border-color: #24d366 transparent transparent transparent;
  transform: rotate(18deg);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #32120d;
  box-shadow: 0 16px 34px rgba(255, 138, 0, 0.28);
}

.button.glass {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button.outline {
  background: transparent;
  border-color: var(--line);
  color: var(--maroon);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -56px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(123, 15, 23, 0.14);
  box-shadow: var(--shadow);
}

.trust-strip div {
  display: grid;
  gap: 6px;
  min-height: 112px;
  align-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
}

.trust-strip strong {
  color: var(--maroon);
  font-size: 1.55rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr auto;
  gap: 14px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 18px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 8px;
  background: linear-gradient(135deg, #110f0d, #08292d);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-band span,
.contact-band small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
}

.contact-band strong {
  display: block;
  color: var(--gold);
  font-family: "Mukta", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.contact-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 800;
}

.section,
.product-detail {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 0;
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--maroon);
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 0.98;
}

.about-text {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 760px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-grid article,
.video-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 242, 0.9)),
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.22), transparent 36%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-grid article:hover,
.product-card:hover,
.video-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-grid span {
  color: var(--gold);
  font-weight: 800;
}

.category-grid strong,
.video-grid strong {
  display: block;
  margin: 42px 0 8px;
  color: var(--maroon);
  font-size: 1.2rem;
}

.category-grid small,
.video-grid small {
  color: var(--muted);
  line-height: 1.5;
}

.catalogue-section {
  scroll-margin-top: 80px;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.catalogue-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(80, 34, 21, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalogue-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.catalogue-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.catalogue-grid a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--maroon), #431014);
  color: var(--white);
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-image {
  display: grid;
  min-height: 285px;
  place-items: center;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 160, 23, 0.18), transparent 44%),
    linear-gradient(180deg, #ffffff, #fff9f2);
}

.product-image img {
  display: block;
  width: 100%;
  height: 285px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.25s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.wish {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--maroon);
  cursor: pointer;
  font-size: 1.2rem;
}

.wish.active {
  background: var(--maroon);
  color: var(--white);
}

.product-info {
  padding: 18px;
}

.product-info h3 {
  margin: 0 0 6px;
  color: var(--maroon);
}

.product-info p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-info strong {
  font-size: 1.2rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}

.product-actions button,
.product-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--maroon);
  cursor: pointer;
  font-weight: 800;
  font-size: 0.82rem;
}

.product-actions a {
  background: var(--maroon);
  color: var(--white);
}

.product-actions .buy-now {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: #32120d;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.detail-main {
  min-height: 520px;
  border-radius: 8px;
  background-image: linear-gradient(180deg, rgba(29, 23, 21, 0.02), rgba(29, 23, 21, 0.24)), url("assets/ganpati-hero.png");
  background-size: cover;
  background-position: 45% 50%;
  box-shadow: var(--shadow);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.thumb-row span {
  height: 90px;
  border-radius: 8px;
  background-image: url("assets/ganpati-hero.png");
  background-size: 240%;
}

.thumb-row span:nth-child(1) { background-position: 20% 50%; }
.thumb-row span:nth-child(2) { background-position: 50% 50%; }
.thumb-row span:nth-child(3) { background-position: 80% 50%; }

.detail-copy p {
  color: var(--muted);
  line-height: 1.7;
}

dl {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

dt {
  color: var(--muted);
  font-weight: 600;
}

dd {
  margin: 0;
  color: var(--maroon);
  font-weight: 800;
  text-align: right;
}

.custom {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin-top: 96px;
  padding: clamp(26px, 5vw, 58px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(123, 15, 23, 0.95), rgba(15, 106, 115, 0.92)),
    radial-gradient(circle at top left, rgba(212, 160, 23, 0.4), transparent 34%);
  color: var(--white);
}

.custom h2 {
  color: var(--white);
}

.custom p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.quote-form textarea {
  min-height: 110px;
  resize: vertical;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-grid article {
  background:
    linear-gradient(145deg, rgba(123, 15, 23, 0.94), rgba(15, 76, 146, 0.9)),
    url("assets/ganpati-hero.png");
  color: var(--white);
}

.video-grid span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--gold);
}

.video-grid strong {
  color: var(--white);
}

.video-grid small {
  color: rgba(255, 255, 255, 0.78);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--maroon);
  cursor: pointer;
  font-weight: 700;
}

.filters button.active {
  background: var(--maroon);
  color: var(--white);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 145px;
  gap: 14px;
}

.tile {
  display: block;
  border-radius: 8px;
  background-image: linear-gradient(180deg, rgba(29, 23, 21, 0), rgba(29, 23, 21, 0.22)), url("assets/ganpati-hero.png");
  background-size: 250%;
  background-position: center;
}

.tile.tall {
  grid-row: span 2;
}

.tile.wide {
  grid-column: span 2;
}

.tile:nth-child(2) { background-position: 25% 45%; }
.tile:nth-child(3) { background-position: 50% 48%; }
.tile:nth-child(4) { background-position: 70% 50%; }
.tile:nth-child(5) { background-position: 36% 56%; }
.tile:nth-child(6) { background-position: 82% 50%; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.why-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  color: var(--maroon);
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 96px auto 0;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--maroon);
}

.footer strong {
  font-family: "Mukta", sans-serif;
  font-size: 1.35rem;
}

.footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: #1fa855;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(31, 168, 85, 0.28);
  font-weight: 800;
}

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 249, 242, 0.97);
    color: var(--maroon);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding-top: 150px;
  }

  .trust-strip,
  .contact-band,
  .category-grid,
  .catalogue-grid,
  .product-grid,
  .video-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-band .button {
    grid-column: 1 / -1;
  }

  .about,
  .product-detail,
  .custom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero img {
    object-position: 42% center;
  }

  .hero-slider {
    width: 500%;
  }

  .hero-slider img {
    object-position: center top;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(42, 4, 7, 0.8), rgba(123, 15, 23, 0.86) 58%, rgba(42, 4, 7, 0.55));
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 128px 0 48px 16px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .trust-strip,
  .contact-band,
  .category-grid,
  .catalogue-grid,
  .product-grid,
  .video-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .product-detail {
    padding-top: 70px;
  }

  .section-heading {
    display: block;
  }

  .product-image {
    min-height: 340px;
  }

  .detail-main {
    min-height: 380px;
  }

  .masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .tile.wide {
    grid-column: span 1;
  }

  dl div,
  .footer {
    display: block;
  }

  dd {
    margin-top: 4px;
    text-align: left;
  }
}
