@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700&family=Noto+Serif+Devanagari:wght@400;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --gold: #c9a84c;
  --gold2: #e2c47a;
  --forest: #0d1f0f;
  --darker: #090f0a;
  --mid: #162b18;
  --warm: #1e3b22;
  --ivory: #f4f0e6;
  --muted: #a8b89a;
  --white: #faf8f2;
  --card-bg: #111e12;
  --radius: 14px;
  --shadow: 0 8px 36px rgba(0, 0, 0, .6);
  --font-head: 'Noto Serif Devanagari', Georgia, serif;
  --font-body: 'Noto Sans Devanagari', 'Helvetica Neue', sans-serif
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  background: var(--darker);
  color: var(--ivory);
  line-height: 1.85
}

a {
  color: var(--gold);
  text-decoration: none
}

a:hover {
  color: var(--gold2)
}

img {
  display: block;
  max-width: 100%
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(9, 15, 10, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, .25)
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 86px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.logo-img {
  height: 68px;
  width: auto;
  object-fit: contain
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 26px
}

.nav-menu a {
  color: var(--ivory);
  font-size: .92rem;
  letter-spacing: .3px;
  font-family: var(--font-body);
  font-weight: 600;
  transition: color .2s
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold)
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold)
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--darker) 0%, var(--mid) 50%, #1a3d1e 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(201, 168, 76, .08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(201, 168, 76, .05) 0%, transparent 60%)
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' fill='rgba(255,255,255,.02)'/%3E%3C/svg%3E");
  pointer-events: none
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px
}

.hero-logo {
  max-height: 90px;
  width: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, .35))
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  color: var(--gold);
  text-shadow: 0 0 48px rgba(201, 168, 76, .4);
  margin-bottom: 16px;
  line-height: 1.3
}

.hero-divider {
  width: 80px;
  height: 2px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.22rem);
  color: var(--muted);
  margin-bottom: 36px
}

.hero-btn {
  display: inline-block;
  padding: 14px 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--forest);
  font-weight: 700;
  font-size: .95rem;
  font-family: var(--font-body);
  border-radius: 3px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 22px rgba(201, 168, 76, .35)
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, .55);
  color: var(--forest)
}

/* Section title */
.section-title {
  font-family: var(--font-head);
  text-align: center;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  color: var(--gold);
  margin-bottom: 10px;
  position: relative
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  margin: 12px auto 0;
  border-radius: 2px
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: .93rem;
  letter-spacing: .3px;
  margin-bottom: 48px
}

/* Features */
.features {
  padding: 100px 24px;
  background: var(--forest)
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform .25s, border-color .25s
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, .5)
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 14px
}

.feature-card h3 {
  font-family: var(--font-head);
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.05rem
}

.feature-card p {
  color: var(--muted);
  font-size: .9rem
}

/* Products grid */
.products {
  padding: 100px 24px;
  background: var(--darker)
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px
}

.product-card {
  background: var(--card-bg);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 168, 76, .45)
}

.product-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--warm)
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.product-card:hover .product-image img {
  transform: scale(1.06)
}

.product-info {
  padding: 20px
}

.product-info h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--ivory);
  margin-bottom: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.btn {
  display: inline-block;
  padding: 9px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--forest);
  font-size: .85rem;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: 3px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(201, 168, 76, .45);
  color: var(--forest)
}

/* About section */
.about {
  padding: 100px 24px;
  background: var(--forest)
}

.about-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9
}

.about-content p+p {
  margin-top: 20px
}

/* Testimonials */
.testimonials {
  padding: 100px 24px;
  background: var(--darker)
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative
}

.testimonial-card::before {
  font-family: var(--font-head);
  font-size: 5rem;
  color: rgba(201, 168, 76, .12);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1
}

.testimonial-text {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px
}

.testimonial-author {
  font-family: var(--font-head);
  color: var(--gold);
  font-weight: 700
}

/* CTA */
.cta {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--mid) 0%, #1a3d1e 100%)
}

.cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  color: var(--gold);
  margin-bottom: 14px
}

.cta p {
  color: var(--muted);
  margin-bottom: 30px
}

/* Page hero */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(160deg, var(--darker) 0%, var(--mid) 60%, #1a3d1e 100%)
}

.page-hero h1 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  margin-bottom: 12px
}

.page-hero p {
  color: var(--muted);
  font-size: 1.03rem
}

/* Breadcrumb */
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto 28px;
  font-size: .87rem;
  color: var(--muted)
}

.breadcrumb a {
  color: var(--gold)
}

.breadcrumb span {
  margin: 0 6px
}

/* Contact */
.contact-section {
  padding: 120px 24px 100px;
  background: var(--forest);
  min-height: 80vh
}

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px
}

.contact-info h3 {
  font-family: var(--font-head);
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.1rem
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 8px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--card-bg);
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 4px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: .94rem;
  margin-bottom: 14px;
  outline: none;
  transition: border-color .2s
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold)
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical
}

.contact-form button {
  padding: 12px 34px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--forest);
  font-weight: 700;
  font-size: .95rem;
  font-family: var(--font-body);
  border-radius: 3px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201, 168, 76, .4)
}

/* About page */
.about-page {
  padding: 120px 24px 100px;
  background: var(--forest);
  min-height: 80vh
}

.about-page .about-content {
  max-width: 860px;
  margin: 0 auto
}

.about-page p {
  margin-bottom: 20px
}

/* Categories */
.categories-section {
  padding: 120px 24px 100px;
  background: var(--darker)
}

.cat-group {
  margin-bottom: 70px
}

.cat-group h2 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.45rem;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, .25)
}

/* Product detail */
.product-detail {
  padding: 110px 24px 80px;
  background: var(--darker);
  min-height: 80vh
}

.product-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start
}

.product-main-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, .2);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--warm)
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px
}

.gallery-thumbs img {
  width: 76px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid rgba(201, 168, 76, .2);
  transition: border-color .2s, transform .2s
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
  border-color: var(--gold);
  transform: scale(1.05)
}

.product-meta h1 {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.45
}

.product-price {
  display: none
}

.product-description {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.9;
  margin-bottom: 26px
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px
}

.features-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--ivory);
  font-size: .94rem;
  border-bottom: 1px solid rgba(201, 168, 76, .1)
}

.features-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .6rem;
  top: 13px
}

/* CTA Buttons on product page */
.product-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--forest);
  font-weight: 700;
  font-size: .92rem;
  font-family: var(--font-body);
  border-radius: 3px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(201, 168, 76, .3);
  text-decoration: none
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 26px rgba(201, 168, 76, .5);
  color: var(--forest)
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  font-family: var(--font-body);
  border-radius: 3px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .25);
  text-decoration: none
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 26px rgba(37, 211, 102, .45);
  color: #fff;
  background: #1ebe5d
}

.back-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 11px 30px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 3px;
  font-size: .88rem;
  letter-spacing: .6px;
  transition: background .2s, color .2s
}

.back-btn:hover {
  background: var(--gold);
  color: var(--forest)
}

/* Catalogue */
.catalogue-section {
  padding: 120px 24px 100px;
  background: var(--darker)
}

.catalogue-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.catalogue-header h1 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: clamp(1.45rem, 3vw, 2.3rem)
}

.search-bar input {
  padding: 10px 18px;
  border-radius: 3px;
  background: var(--card-bg);
  border: 1px solid rgba(201, 168, 76, .25);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: .92rem;
  outline: none;
  width: 260px
}

.search-bar input:focus {
  border-color: var(--gold)
}

/* Footer */
.footer {
  background: var(--forest);
  border-top: 1px solid rgba(201, 168, 76, .2);
  padding: 60px 24px 0
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-section h3 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px
}

.footer-section p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.8
}

.footer-section a {
  display: block;
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 8px;
  transition: color .2s
}

.footer-section a:hover {
  color: var(--gold)
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  color: var(--muted);
  font-size: .84rem;
  border-top: 1px solid rgba(201, 168, 76, .12);
  margin-top: 40px
}

/* Responsive */
@media(max-width:900px) {
  .product-detail-inner {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:640px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: rgba(9, 15, 10, .99);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(201, 168, 76, .18)
  }

  .nav-menu.open {
    display: flex
  }

  .menu-toggle {
    display: flex
  }

  .catalogue-header {
    flex-direction: column;
    align-items: flex-start
  }

  .search-bar input {
    width: 100%
  }

  .product-cta-btns {
    flex-direction: column
  }

  .btn-call,
  .btn-whatsapp {
    justify-content: center
  }
}