:root {
  --bg: #f4f1ea;
  --bg-accent: #ece6da;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --text: #1f1f23;
  --muted: #60606b;
  --border: #e7dfcf;
  --shadow: 0 20px 50px rgba(26, 26, 35, 0.08);
  --shadow-soft: 0 12px 30px rgba(26, 26, 35, 0.06);
  --brand: #17181c;
  --brand-soft: #f0eadf;
  --accent: #c78d2e;
  --accent-strong: #9d6917;
  --danger: #c31d24;
  --success: #0f7a3f;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199, 141, 46, 0.13), transparent 32%),
    radial-gradient(circle at top right, rgba(15, 122, 63, 0.08), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, #f8f5ef 100%);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.page {
  position: relative;
}

.site-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header {
  padding: 0.25rem 0 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-name {
  font-size: 1rem;
}

.back-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  border: 1px solid transparent;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--border);
}

.eyebrow {
  margin: 0;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 700;
}

.page-main {
  display: block;
}

.home-hero {
  padding: 1.25rem 0 2rem;
  max-width: 42rem;
}

.home-hero h1,
.product-title {
  margin: 0.45rem 0 0.8rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.home-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.home-lede,
.product-summary,
.product-meta,
.video-copy,
.payment-note,
.feature-list li,
.footer-copy,
.contact-email {
  color: var(--muted);
  line-height: 1.65;
}

.home-lede {
  margin: 0;
  font-size: 1.03rem;
  max-width: 36rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  backdrop-filter: blur(6px);
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(199, 141, 46, 0.32);
  outline: none;
}

.product-card__media {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1 / 0.78;
  background: linear-gradient(180deg, #f5efe2, #fefdf9);
}

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

.product-card__title {
  margin: 0;
  font-size: 1.15rem;
}

.product-card__price {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: rgba(244, 241, 234, 0.9);
  border: 1px solid rgba(231, 223, 207, 0.9);
}

.product-card__price-label {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card__price-now {
  color: var(--brand);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.1;
}

.product-card__price-mrp {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-card__price-save {
  color: var(--success);
  font-size: 0.84rem;
  font-weight: 700;
}

.product-card__price--quote .product-card__price-now {
  font-size: 1rem;
}

.product-card__tagline {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-weight: 700;
  color: var(--accent-strong);
}

.catalog-section {
  display: grid;
  gap: 1rem;
  margin-top: 2.75rem;
}

.catalog-section__head {
  display: grid;
  gap: 0.35rem;
  max-width: 48rem;
}

.catalog-section__head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
}

.catalog-section__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-card--lamp .product-card__media {
  aspect-ratio: 1 / 1;
  padding: 0.7rem;
  background: linear-gradient(180deg, #f6f1e6, #fffdf9);
}

.product-card--lamp .product-card__media img {
  object-fit: contain;
}

.product-card__media--fallback {
  display: grid;
  place-items: center;
}

.product-card__fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 0.75rem 0.9rem;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  border: 1px dashed rgba(96, 96, 107, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
}

.product-page {
  display: grid;
  gap: 1.5rem;
  padding: 1rem 0 0;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.product-visual,
.product-panel,
.content-card,
.video-card,
.video-placeholder,
.order-modal__card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.product-visual {
  overflow: hidden;
}

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

.product-gallery {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.product-gallery__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(231, 223, 207, 0.9);
  background:
    radial-gradient(circle at top, rgba(199, 141, 46, 0.14), transparent 34%),
    linear-gradient(180deg, #faf7f1 0%, #fffdf9 100%);
}

.product-gallery__viewport {
  position: absolute;
  inset: 0;
}

.product-gallery__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.product-gallery__slide.is-active {
  opacity: 1;
}

.product-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  background:
    radial-gradient(circle at top, rgba(199, 141, 46, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(251, 248, 241, 0.95));
}

.product-gallery__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.product-gallery__control:hover,
.product-gallery__control:focus-visible {
  outline: none;
  background: #fff;
}

.product-gallery__control--prev {
  left: 0.85rem;
}

.product-gallery__control--next {
  right: 0.85rem;
}

.product-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.product-gallery__dot {
  width: 0.7rem;
  height: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 31, 35, 0.18);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.product-gallery__dot.is-active {
  width: 1.6rem;
  background: var(--brand);
}

.product-panel {
  padding: 1.5rem;
}

.product-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.product-meta {
  margin: 0 0 1.1rem;
}

.price-block {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.price-mrp,
.price-save {
  margin: 0;
}

.price-mrp {
  color: var(--muted);
  font-size: 0.94rem;
}

.price-now {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
}

.price-strike {
  text-decoration: line-through;
}

.deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(195, 29, 36, 0.1);
  color: var(--danger);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-save {
  color: var(--success);
  font-weight: 700;
}

.product-summary {
  margin: 0 0 1.2rem;
}

.payment-block {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
}

.payment-card {
  width: min(100%, 140px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #faf7f0 100%);
}

.payment-card img {
  width: 100%;
  height: auto;
}

.payment-note {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--danger);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(23, 24, 28, 0.16);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #0f1013;
}

.btn-wide {
  width: 100%;
}

.content-card {
  padding: 1.4rem 1.5rem;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  position: relative;
  padding-left: 1rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.video-card {
  padding: 1.2rem;
}

.video-frame,
.video-placeholder {
  overflow: hidden;
  min-height: 100%;
}

.video-frame video {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: #000;
}

.video-placeholder {
  display: grid;
  place-items: center;
  padding: 1.25rem;
  min-height: 320px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(199, 141, 46, 0.12), transparent 36%),
    linear-gradient(180deg, #fff 0%, #faf7ef 100%);
}

.video-placeholder__inner {
  max-width: 22rem;
}

.video-placeholder__inner h3 {
  margin: 0.4rem 0 0.5rem;
  font-size: 1.35rem;
}

.site-footer {
  margin-top: 2rem;
  padding: 1.3rem 0 0.5rem;
  border-top: 1px solid rgba(87, 78, 60, 0.15);
}

.footer-copy {
  margin: 0;
  font-size: 0.92rem;
}

.contact-email {
  margin: 0.35rem 0 0;
}

.contact-email a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.contact-email a:hover,
.contact-email a:focus-visible {
  color: var(--accent-strong);
}

.whatsapp-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(29, 168, 101, 0.33);
}

.whatsapp-cta svg {
  display: block;
}

.order-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(16, 16, 20, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 100;
}

.order-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.order-modal__card {
  width: min(100%, 460px);
  padding: 1.35rem;
  position: relative;
}

.order-modal__title {
  margin: 0.45rem 0 0.2rem;
  font-size: 1.35rem;
}

.order-modal__note {
  margin: 0;
  color: var(--muted);
}

.order-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.order-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.35rem;
}

.order-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--text);
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: rgba(199, 141, 46, 0.7);
  box-shadow: 0 0 0 4px rgba(199, 141, 46, 0.12);
}

.order-form textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.order-form .btn {
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, 1120px);
    padding-top: 1rem;
  }

  .product-grid {
    gap: 1rem;
  }

  .product-card {
    gap: 0.75rem;
    padding: 0.9rem;
  }

  .product-card__price {
    padding: 0.72rem 0.8rem;
  }

  .product-card__price-now {
    font-size: 1.12rem;
  }

  .product-panel,
  .content-card,
  .video-card,
  .order-modal__card {
    padding: 1.1rem;
  }

  .whatsapp-cta {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.85rem 1rem;
  }
}
