/* hero section start  */
.about-hero-section {
  position: relative;
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url("/assets/images/home-slidder-3.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}
#product-2.about-hero-section {
  background-image: url("/assets/images/product-img-bg-hero.png");
}



.about-hero-section.new_extra_img_thermic {
  background-image: url("/assets/images/Thermic-Centralized-Frying-System/thermic_banner_hero_section.jpeg") !important;
  min-height: 380px !important;
  background-position: bottom !important;
}
.about-hero-section.thermic_ghee_header_img {
    background-image: url(/assets/images/Thermic-Heated-Pure-Ghee-Sweets/thermic_ghee_header_hero_img.jpeg) !important;
    background: #007880;
    background-repeat: no-repeat;
    min-height: 700px !important;
    background-position: bottom !important;
}
/* Dark overlay */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0.3;
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 16px;
  width: 100%;
  max-width: 1100px;
  box-sizing: border-box;
  color: #ffffff;
}

.about-hero-title {
  font-size: 46px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0.03em;
}

.about-hero-breadcrumb {
  margin: 0;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
}

.about-hero-link,
.about-hero-breadcrumb-text {
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.about-hero-link-home {
  color: #ffc933; /* Yellow Home */
  font-weight: 500;
}

.about-hero-link:hover {
  opacity: 0.8;
}

.about-hero-breadcrumb-separator {
  margin: 0 4px;
  color: #ffffff;
  opacity: 0.8;
}

/* ===== Responsive tweaks ===== */
@media (max-width: 768px) {
  .about-hero-section {
    min-height: 220px;
  }

  .about-hero-content {
    padding: 30px 16px;
  }
}

@media (min-width: 1200px) {
  .about-hero-section {
    min-height: 300px;
  }
}

/* about hero section end  */

/* WRAPPER */
.products-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  box-sizing: border-box;
}

.products-page-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.product-main-image-wrapper {
  width: 100%;
  display: flex;
  /* align-items: center; */
  align-items: flex-start;
  justify-content: center;
}

/* PRODUCT CARD */
.product-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 28px;
  box-sizing: border-box;
}

.product-layout {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  box-sizing: border-box;
}

.product-left,
.product-right {
  flex: 1 1 50%;
  box-sizing: border-box;
}

/* LEFT SIDE – GALLERY */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-main-media {
  position: relative;
  width: 100%;
  padding-top: 62%;
  border-radius: 16px;
  overflow: hidden;
  background: #ddd;
}

.product-main-image,
.product-main-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: none;
}

.product-main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.product-main-image.is-visible,
.product-main-video.is-visible {
  display: block;
}

.product-thumbs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.product-thumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-thumbs::-webkit-scrollbar {
  height: 5px;
}

.product-thumbs::-webkit-scrollbar-thumb {
  background: #cbd5f5;
  border-radius: 999px;
}

.product-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  background: #ffffff;
  cursor: pointer;
  flex: 0 0 68px;
  height: 68px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
}

.product-thumb-inner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumb:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 15px rgba(15, 23, 42, 0.15);
}

.product-thumb.is-active {
  border-color: #fbbf24;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.4);
}

.product-thumb-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.1),
    rgba(15, 23, 42, 0.6)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  pointer-events: none;
}

.thumb-arrow {
  flex: 0 0 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #e5e7eb;
  font-size: 18px;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.thumb-arrow:hover {
  background: #d1d5db;
  transform: translateY(-1px);
}

.thumb-arrow:active {
  transform: translateY(0);
}

/* RIGHT SIDE – UPDATED CONTENT */
.product-right-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-title-wrapper {
  text-align: left;
}

.product-title {
  font-size: 26px;
  font-weight: 700;
  color: #f7c500;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.product-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: #fbbf24;
  border-radius: 999px;
}

.product-description {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 8px;
}

/* Capacity highlight */
.product-capacity {
  font-weight: 600;
  color: #111827;
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: 18px;
}

/* Section wrapper */
.product-section {
  margin-bottom: 16px;
}

/* Small section titles */
.product-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

/* Bullet list */
.product-list {
  list-style: disc;
  margin: 0;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.product-list li + li {
  margin-top: 3px;
}

/* BUTTONS */
.product-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-color 0.12s ease, border-color 0.12s ease;
}

.product-btn-icon {
  font-size: 15px;
}

.product-whatsapp-btn {
  background-color: #22c55e;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(34, 197, 94, 0.35);
}

.product-whatsapp-btn:hover {
  background-color: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 14px 25px rgba(34, 197, 94, 0.45);
}

.product-whatsapp-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(34, 197, 94, 0.4);
}

.product-pdf-btn {
  background-color: #ffffff;
  color: #ef4444;
  border-color: #fecaca;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.1);
}

.product-pdf-btn:hover {
  background-color: #fef2f2;
  border-color: #ef4444;
  transform: translateY(-1px);
}

.product-pdf-btn:active {
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-layout {
    flex-direction: column;
  }

  .product-left,
  .product-right {
    flex: 1 1 auto;
  }

  .product-main-media {
    padding-top: 70%;
  }

  .product-title {
    font-size: 20px;
  }

  .product-capacity {
    font-size: 13px;
  }

  .product-section-title {
    font-size: 13px;
  }

  .product-list {
    font-size: 12.5px;
  }
}

@media (max-width: 600px) {
  .product-card {
    padding: 18px;
  }

  .product-title {
    font-size: 18px;
  }

  .product-meta-grid {
    grid-template-columns: 1fr;
  }

  .product-capacity {
    font-size: 12.5px;
  }

  .product-section {
    margin-bottom: 12px;
  }

  .product-list {
    font-size: 16px;
    padding-left: 16px;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-btn {
    width: 100%;
    justify-content: center;
  }
}
.enhanced-wrap {
background: #fff8d6;
padding: 20px;
border-radius: 20px;
border: 1px solid #f7c500;
margin-top: 20px;
}


.enhanced-text {
font-size: 15px;
line-height: 1.6;
color: #4a3f1d;
margin: 0 0 12px;
}


.enhanced-divider {
border: 0;
height: 1px;
background: #f7c500;
margin: 16px 0;
border-radius: 2px;
}


.enhanced-wrap p:last-of-type {
margin-bottom: 0;
}



.about-hero-content{
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 0px;
  text-align: left;
}
.about-hero-content .about-hero-title {
    font-size: 32px;
    margin: 0 0 0px;
    letter-spacing: 0.03em;
}
.about-hero-breadcrumb {
    margin: 0;
    font-size: 13px;
}