/* ── Hero ── */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--nav-height) 0 0;
  background: #fdf6f0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-banner-link {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero h1 {
  font-size: 3.2em;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero .tagline {
  font-size: 1.3em;
  font-weight: 400;
  margin-bottom: 8px;
  opacity: 0.9;
}

.hero .sub-tagline {
  font-size: 1.05em;
  opacity: 0.7;
  margin-bottom: 40px;
}

/* ── Hero Carousel ── */
.hero-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-slide {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  animation: heroFadeIn 0.5s ease;
}

.hero-slide.active {
  display: flex;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-slide:has(.hero-slide-product) {
  background: #fdf6f0;
  padding: 40px 20px;
}

.hero-slide-product {
  display: flex;
  align-items: center;
  gap: 48px;
  text-align: left;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-slide-img-wrap {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hero-slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-slide-info {
  flex: 1;
  color: var(--color-text, #1a1a2e);
}

.hero-slide-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--radius-full, 999px);
  background: #e85d3a;
  color: #fff;
  font-size: 0.7em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.hero-slide-name {
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
  color: var(--color-text, #1a1a2e);
}

.hero-slide-info .price-group {
  margin-bottom: 20px;
}

.hero-slide-info .price-item {
  color: var(--color-text-light, #555);
}

.hero-slide-info .price-highlight,
.hero-slide-info .price-single {
  color: #e85d3a;
  font-size: 1.3em;
}

.hero-slide-info .price-mrp {
  text-decoration: line-through;
  opacity: 0.5;
}

.hero-slide-cta {
  display: inline-block;
  padding: 12px 32px;
  background: #e85d3a;
  color: #fff;
  border-radius: var(--radius-full, 999px);
  font-weight: 700;
  font-size: 0.95em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-slide-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 58, 0.3);
  background: #d04e2e;
}

/* Hero Nav Arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0,0,0,0.3);
  border: 2px solid rgba(0,0,0,0.15);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8em;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  padding: 0;
}

.hero-nav:hover {
  background: rgba(0,0,0,0.5);
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-carousel-active .hero-nav {
  display: flex;
}

/* Hero Dots */
.hero-dots {
  position: relative;
  padding: 14px 0;
  left: auto;
  z-index: 2;
  display: none;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.hero-carousel-active .hero-dots {
  display: flex;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.hero-dot.active {
  background: var(--color-primary);
  width: 28px;
  border-radius: 5px;
}

/* ── Product Showcase Strip ── */
.product-showcase {
  overflow: hidden;
  padding: 20px 0;
  background: var(--color-bg-warm);
}

.showcase-track {
  display: flex;
  gap: 20px;
  animation: showcase-scroll 35s linear infinite;
  width: max-content;
}

.showcase-item {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

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

@keyframes showcase-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Products ── */
#products {
  background: var(--color-bg);
}

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

/* ── Pricing ── */
#pricing {
  background: var(--color-bg-warm);
}

/* ── Why Us ── */
#why-us {
  background: var(--color-bg);
}

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

/* ── Testimonials ── */
#testimonials {
  background: var(--color-bg-warm);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Contact ── */
#contact {
  background: var(--color-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-wrapper-centered {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.3em;
  margin-bottom: 16px;
  color: var(--color-text);
}

.contact-info p {
  font-size: 1em;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ── Footer ── */
footer {
  background: #fdf6f0;
  color: var(--color-text);
  padding: 0;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 28px;
}

.footer-banner-wrap {
  position: relative;
  margin-bottom: 24px;
}

.footer-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.footer-banner-links {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 58%;
  display: flex;
}

.footer-hotspot {
  flex: 1;
  display: block;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 12px;
}

.footer-hotspot:hover {
  background: rgba(0,0,0,0.04);
}

.footer-info {
  text-align: center;
  padding: 8px 0;
  font-size: 0.92em;
  color: var(--color-text-light);
  line-height: 1.8;
}

.footer-info a {
  color: #e85d3a;
  text-decoration: none;
  font-weight: 600;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.82em;
  color: var(--color-text-muted);
}

/* ── Product of the Month ── */
.potm-section {
  background: #fdf6f0;
  color: var(--color-text);
}

.potm-title {
  color: var(--color-text);
}

.potm-subtitle {
  color: var(--color-text-muted);
  opacity: 1;
}

.potm-card {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.potm-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid #e85d3a;
  box-shadow: 0 8px 32px rgba(232, 93, 58, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.potm-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(232, 93, 58, 0.2);
}

.potm-image {
  overflow: hidden;
  background: #fef9f5;
}

.potm-image img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  display: block;
}

.potm-details {
  padding: 36px;
}

.potm-category {
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  background: #e85d3a;
  color: #fff;
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.potm-name {
  font-size: 1.8em;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
  color: var(--color-text);
}

.potm-desc {
  font-size: 1em;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.potm-details .price-group {
  margin-bottom: 24px;
}

.potm-details .price-single,
.potm-details .price-highlight {
  color: #e85d3a;
  font-size: 1.4em;
}

.potm-details .price-mrp,
.potm-details .price-fundoo {
  color: var(--color-text-muted);
}

.potm-details .price-label {
  color: var(--color-text-light);
}

.potm-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #e85d3a;
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95em;
  transition: background 0.2s, transform 0.2s;
}

.potm-link:hover .potm-btn {
  background: #d04e2e;
}

/* ── What's Hot ── */
.whats-hot-section {
  background: var(--color-bg-warm);
}

.whats-hot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hot-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.hot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.hot-card-img {
  overflow: hidden;
  background: #f9f9f9;
}

.hot-card-img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s;
}

.hot-card:hover .hot-card-img img {
  transform: scale(1.05);
}

.hot-card-body {
  padding: 16px;
}

.hot-card-body h3 {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.hot-card-body .price-group {
  margin-top: 4px;
}
