/* ========================================
   KOLHU WALE — Page-specific styles
   ======================================== */

/* ----- Home Hero ----- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
  padding: var(--space-12) 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(201, 162, 39, 0.12), transparent),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(27, 48, 34, 0.06), transparent);
  pointer-events: none;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b3022' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: var(--space-8);
  }
}

.hero__content {
  max-width: 540px;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero__brand img {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 12px rgba(27, 48, 34, 0.15));
}

.hero__title {
  font-size: var(--fs-hero);
  margin-bottom: var(--space-2);
  line-height: 1.1;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold-dark);
  font-weight: 500;
}

.hero__title-ur {
  font-family: var(--font-urdu-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  color: var(--color-forest-soft);
  margin-bottom: var(--space-5);
  line-height: var(--lh-urdu);
}

.hero__lead {
  font-size: var(--fs-md);
  margin-bottom: var(--space-3);
  max-width: 28rem;
}

.hero__lead-ur {
  font-family: var(--font-urdu);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-8);
  max-width: 28rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Hero product stage */
.hero__stage {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__ground {
  position: absolute;
  bottom: 8%;
  left: 5%;
  right: 5%;
  height: 28%;
  background: radial-gradient(ellipse at center, rgba(27, 48, 34, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
}

.hero__products {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 5 / 4;
}

.hero__bottle {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(27, 48, 34, 0.28));
  z-index: 3;
}

.hero__bottle--main {
  width: min(48%, 230px);
  max-height: 78%;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.hero__bottle--left {
  width: 30%;
  bottom: 14%;
  left: 4%;
  z-index: 2;
}

.hero__bottle--right {
  width: 30%;
  bottom: 14%;
  right: 4%;
  z-index: 2;
}

.hero__bowl {
  position: absolute;
  width: 22%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 12px 16px rgba(27, 48, 34, 0.22));
  z-index: 5;
}

.hero__bowl--1 {
  bottom: 2%;
  left: 18%;
}

.hero__bowl--2 {
  bottom: 0;
  right: 16%;
  width: 26%;
}

@media (max-width: 640px) {
  .hero__stage { min-height: 300px; }
  .hero__bottle--main { width: 52%; }
  .hero__bowl { width: 24%; }
}

/* CTA band */
.cta-band {
  padding: var(--space-16) 0;
  background: var(--grad-forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-gold-line);
}

.cta-band h2 {
  color: var(--color-cream);
  margin-bottom: var(--space-2);
}

.cta-band .heading-ur {
  color: var(--color-gold-light);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-4);
}

.cta-band p {
  color: var(--color-text-on-dark-muted);
  max-width: 32rem;
  margin: 0 auto var(--space-8);
}

.cta-band .btn-group {
  justify-content: center;
}

/* About storytelling */
.story-block {
  display: grid;
  gap: var(--space-10);
  align-items: center;
  margin-bottom: var(--space-16);
}

@media (min-width: 860px) {
  .story-block {
    grid-template-columns: 1fr 1fr;
  }
  .story-block--reverse .story-block__media {
    order: 2;
  }
}

.story-block__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--grad-cream);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.story-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-block__media--logo {
  padding: var(--space-12);
}

.story-block__media--logo img {
  object-fit: contain;
  width: 70%;
  height: 70%;
}

.story-block__content .eyebrow {
  margin-bottom: var(--space-3);
}

.story-block__content h2 {
  margin-bottom: var(--space-2);
}

.story-block__content .heading-ur {
  font-size: var(--fs-lg);
  color: var(--color-gold-dark);
  margin-bottom: var(--space-5);
}

.values-grid .feature-card {
  text-align: left;
}

.values-grid .feature-card__icon {
  margin-inline: 0;
}

/* Product detail */
.product-detail {
  padding: var(--space-12) 0 var(--space-16);
}

.product-detail__grid {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 900px) {
  .product-detail__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + var(--space-4));
}

.product-gallery__main {
  background: var(--grad-cream);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10);
  margin-bottom: var(--space-4);
}

.product-gallery__main img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(27, 48, 34, 0.22));
}

.product-gallery__thumbs {
  display: flex;
  gap: var(--space-3);
}

.product-gallery__thumbs button {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  background: var(--color-cream);
  padding: var(--space-2);
  overflow: hidden;
  transition: border-color var(--dur-fast);
}

.product-gallery__thumbs button.is-active,
.product-gallery__thumbs button:hover {
  border-color: var(--color-gold);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info__cat {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-3);
}

.product-info h1 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin-bottom: var(--space-2);
}

.product-info .heading-ur {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 2;
  color: var(--color-forest-soft);
  margin-bottom: var(--space-5);
}

.product-info__desc {
  margin-bottom: var(--space-3);
}

.product-info__desc-ur {
  font-family: var(--font-urdu);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: var(--space-6);
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.size-options button {
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
}

.size-options button.is-active {
  background: var(--color-forest);
  color: var(--color-cream);
  border-color: var(--color-forest);
}

.product-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
}

.contact-card h3 {
  margin-bottom: var(--space-1);
}

.contact-card .heading-ur {
  font-size: var(--fs-sm);
  color: var(--color-gold-dark);
  margin-bottom: var(--space-3);
}

.contact-card p,
.contact-card a {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.contact-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}

/* Related products */
.related-section {
  padding-top: 0;
}
