body {
  overflow-x: hidden !important;
  margin: auto;
  font-family:
    Crimson Text,
    serif !important;
}

/* ================================FEAST BANNER - SINGLE IMAGE ONLY================================ */
.feast-banner-section {
  width: 100%;
  /* background: url("../../public/assets/frontend/images/feast-banner-img.png") center/cover no-repeat; */
  position: relative;
  padding-bottom: 52%;
}

/* ================================FEAST PRODUCT SECTION================================ */
.feast-product-section {
  padding: 50px 0;
  background: url("../../public/assets/frontend/images/product-detail-bg-texture.png")
    center/cover no-repeat;
}

.feast-product-container {
  margin: auto;
  display: flex;
  gap: 6rem;
  justify-content: center;
  align-items: stretch;
}

.feast-product-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* LEFT SIDE */
.product-main-box {
  background: #efd377;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-product-img {
  width: 100%;
  max-width: 516px;
  height: 505px;
  padding: 30px;
  object-fit: contain;
}

.feast-product-right {
  justify-content: flex-start;
}

.product-thumbnails {
  margin-top: 25px;
  display: flex;
  gap: 3rem;
}

.thumb-item {
  width: 167px;
  height: 165px;
  padding: 1rem;
  background: #efd377;
  border-radius: 5px;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
  object-fit: contain;
}

.thumb-item.active-thumb {
  border-bottom: 4px solid #8c1420;
  object-fit: contain;
}

/* RIGHT SIDE */
.feast-product-right h1 {
  font-family:
    Crimson Text,
    serif;
  font-size: 54px;
  font-weight: 400;
  color: #7c1a2d;
  line-height: 64px;
  margin-bottom: 25px;
}

.divider-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(
    to left,
    rgba(124, 26, 45, 0.1) 0%,
    #7c1a2d 50%,
    #7c1a2d 100%
  );
  margin: 25px 0;
}

.available-packs {
  font-family:
    Crimson Pro,
    serif;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.available-packs span {
  font-weight: 400;
  color: #000;
  font-size: 24px;
  line-height: 26px;
  font-family:
    Crimson Pro,
    serif;
}

.pack-btn {
  border: 1px solid #7c1a2d;
  background: transparent;
  color: #7c1a2d;
  padding: 5px 35px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.pack-btn.active {
  background: #7c1a2d;
  color: #fff;
}

.product-meta {
  display: flex;
  gap: 3rem;
}

.product-meta p {
  margin: 6px 0;
  color: #000;
  font-size: 24px;
  line-height: 26px;
  font-family:
    Crimson Pro,
    serif;
}

.product-meta p strong {
  margin: 6px 0;
  font-weight: 600;
  color: #7c1a2d;
  font-size: 24px;
  line-height: 26px;
  font-family:
    Crimson Pro,
    serif;
}

.product-desc {
  margin-top: 27px;
  font-size: 22px;
  line-height: 26px;
  color: #3c3c3c;
  max-width: 600px;
  font-weight: 400;
}

/* ===============================ONLINE STORE AVAILABILITY SECTION=============================== */

.store-availability-section {
  width: 100%;
  padding: 70px 20px;
  text-align: center;
}

.store-availability-section h2 {
  font-family:
    Crimson Text,
    serif;
  font-size: 54px;
  line-height: 62px;
  color: #7c1a2d;
  font-weight: 400;
  margin-bottom: 8px;
}

.store-availability-section .subtitle {
  font-family:
    Crimson Pro,
    serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #555;
  margin-bottom: 35px;
}

.store-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}

.store-icons img {
  width: 127px;
  height: 127px;
  padding: 12px;
  border-radius: 36px;
  transition: transform 0.3s ease;
}

.store-icons img:hover {
  transform: translateY(-5px);
}

/* ===========================================
            Yellow Feast Section
            =========================================== */

.yellow-feast-section {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #efbf4b 30%, #ffe87e 65%, #f2ca6b 100%);
}

.yellow-feast-section::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  transform: translate(0px, 2.8rem);
  width: 100%;
  height: 649px;
  background: url("../../public/assets/frontend/images/perfect-choice-bg.png")
    no-repeat center top;
  background-size: cover;
  z-index: 0;
}

.yellow-feast-container {
  position: relative;
  z-index: 2;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* TEXT LEFT */
.yellow-feast-text {
  width: 51%;
}

.yellow-feast-text h2 {
  font-size: 36px;
  color: #7c1a2d;
  font-family:
    Crimson Text,
    serif;
  line-height: 46px;
  font-weight: 400;
  margin-bottom: 25px;
}

.yellow-feast-text .desc {
  font-size: 18px;
  line-height: 26px;
  color: #000000;
}

/* IMAGE RIGHT */
.yellow-feast-image img {
  width: 100%;
  position: relative;
  bottom: 1.3rem;
}

/* ======================
            FEATURES GRID SECTION
            ====================== */

.feast-features-section {
  background: url("../../public/assets/frontend/images/feature-bg-img.png")
    repeat;
  padding: 80px 20px;
}

.features-container {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* Feature Card */
.feature-card {
  background: #f9f2d8;
  padding: 35px 34px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
}

/* ICON */
.feature-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
}

.feature-icon img {
  width: 123px;
  height: auto;
}

/* TITLE */
.feature-card h3 {
  font-family:
    Crimson Text,
    serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #7c1a2d;
  margin-bottom: 12px;
  padding: 8px 65px;
}

/* DESCRIPTION */
.feature-card p {
  font-family:
    Crimson Text,
    serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  color: #000;
}

/* ============================COOKING EXPERIENCE SECTION============================ */

.cook-banner-section {
  width: 100%;
  position: relative;
  padding: 110px 0px;
}

.cook-banner-image-mobile {
  display: none;
}

/* Text container */
.cook-banner-content {
  max-width: 550px;
  position: relative;
  left: 48rem;
}

.cook-banner-content h2 {
  font-family:
    Crimson Text,
    serif;
  font-size: 36px;
  color: #7c1a2d;
  line-height: 46px;
  font-weight: 400;
  margin-bottom: 15px;
}

.cook-banner-content p {
  font-family:
    Crimson Pro,
    serif;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 26px;
}

/* ==========================RELATED BLOGS SECTION========================== */

.related-blogs-section {
  background: #fffaed;
  padding: 70px 20px;
}

.related-blogs-container {
  text-align: center;
}

.section-title {
  font-family:
    Crimson Text,
    serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 62px;
  color: #6b1c33;
  margin-bottom: 50px;
}

/* GRID */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  align-items: stretch;
}

/* BLOG CARD */
.blog-card {
  font-family:
    Crimson Text,
    serif;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* IMAGE */
.blog-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 1px solid #ddd;
}

/* DATE */
.blog-date {
  display: block;
  margin-top: 15px;
  color: #000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}

/* TITLE */
.blog-title {
  font-size: 24px;
  color: #000;
  margin-top: 10px;
  line-height: 32px;
  font-weight: 400;
  padding: 0px 1px;
}

/* DESCRIPTION */
.blog-desc {
  margin-top: 10px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  flex-grow: 1;
}

/* BUTTON */
.blog-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(
    90deg,
    #a36a10 0%,
    #efbf4b 30%,
    #ffe87e 65%,
    #f2ca6b 100%
  );
  padding: 10px 25px;
  border-radius: 4px;
  color: #000;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  text-decoration: none;
  transition: 0.3s ease;
  align-self: flex-start;
}

.blog-btn:hover {
  background: #e8be00;
}

/* ==========================RELATED PRODUCTS SECTION========================== */

.related-products-section {
  background: #fcf4e0;
  padding: 45px 0;
  text-align: center;
}

.related-products-container {
  margin: auto;
}

/* Heading */
.related-products-section h2 {
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 62px;
  font-weight: 400;
  color: #7c1c21;
  margin-bottom: 40px;
}

.related-products-section .rp-card {
  width: 332px;
  background: #efd377;
  border-radius: 12px;
  padding: 21px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.related-products-section .rp-img {
  background: #fcf4e0;
  padding: 51px 25px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.related-products-section .rp-img img {
  max-width: 152px;
  max-height: 222px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Underline */
.related-products-section .rp-card::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #8c1420;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.related-products-slider .owl-stage {
  display: flex !important;
}

.related-products-slider .owl-item {
  display: flex;
  justify-content: center;
}

/* Navigation Arrows */
.related-products-slider .owl-nav button {
  background: #fff !important;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #8c1620 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  font-size: 18px !important;
  position: absolute;
  top: 36%;
}

.related-products-slider .owl-nav .owl-prev {
  left: -50px;
  border-radius: 100% !important;
  border: none;
}

.related-products-slider .owl-nav .owl-next {
  right: -50px;
  border-radius: 100% !important;
  border: none;
}

.related-products-slider .owl-nav .owl-prev img {
  transform: translate(-2px, -1px);
}

.related-products-slider .owl-nav .owl-next img {
  transform: translate(2px, -1px);
}

/* Dots Center */
.related-products-slider .owl-dots {
  margin-top: 30px;
}

.related-products-slider .owl-dot {
  border: none;
  background: none;
}

.related-products-slider .owl-dot span {
  width: 8px;
  height: 8px;
  background: #80550499 !important;
  border-radius: 50%;
  display: block;
}

.related-products-slider .owl-dot.active span {
  background: #805504 !important;
}

.product-range {
  padding: 60px 0 10px 0;
}

.question-text,
.answer-text p {
  font-family:
    Crimson Pro,
    serif !important;
  font-size: 18px !important;
}

/* =============================RESPONSIVE MEDIA QUERIES============================= */
@media (min-width: 1921px) and (max-width: 2048px) {
  .cook-banner-content {
    left: 67rem;
    padding: 165px 0px;
  }

  .yellow-feast-section {
    padding: 35px 0 50px;
  }
}

@media (min-width: 1601px) and (max-width: 1920px) {
  .cook-banner-content {
    left: 66rem;
    padding: 165px 0px;
  }

  .yellow-feast-section::before {
    transform: translate(0px, 1.8rem);
  }

  .main-product-img {
    height: 474px;
  }
}

@media (min-width: 1281px) and (max-width: 1600px) {
  .main-product-img {
    height: 474px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .cook-banner-content {
    left: 43rem;
  }

  .feast-product-container {
    gap: 2rem;
  }

  .feast-product-right h1 {
    font-size: 42px;
    margin: 0px;
    line-height: 50px;
  }

  .available-packs span,
  .product-meta p,
  .product-meta p strong,
  .product-desc {
    font-size: 20px;
  }

  .yellow-feast-section {
    background: linear-gradient(90deg, #efbf4b 30%, #ffe87e 65%, #f2ca6b 100%);
  }

  .yellow-feast-section::before {
    transform: translate(0px, 8rem);
  }

  .yellow-feast-text {
    width: 100%;
  }

  .yellow-feast-text h2 {
    font-size: 32px;
  }

  .feature-card h3 {
    padding: 8px 39px;
  }

  .blog-title {
    height: 65px;
    font-size: 18px;
  }

  .main-product-img {
    height: 474px;
  }
  .store-icons {
    padding-bottom: 5rem !important;
  }
  .related-products-slider .owl-nav .owl-prev {
    left: -59px;
  }
  .related-products-slider .owl-nav .owl-next {
    right: -59px;
  }
}

/* Tablet / iPad Mini / iPad Air */
@media (max-width: 1024px) {
  .feast-banner-section {
    height: 455px;
    background-position: center top !important;
    background-repeat: round !important;
    background-size: contain !important;
  }

  .feast-product-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .product-meta p {
    text-align: center;
  }

  .product-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .yellow-feast-section {
    background: linear-gradient(90deg, #efbf4b 30%, #ffe87e 65%, #f2ca6b 100%);
  }

  .yellow-feast-section::before {
    height: 100%;
    background-image: none;
  }

  .yellow-feast-container {
    flex-direction: column;
    text-align: center;
  }

  .yellow-feast-text {
    width: 100%;
  }

  .yellow-feast-text h2 {
    font-size: 28px;
  }

  .yellow-feast-image img {
    width: 380px;
  }

  .yellow-feast-text .desc {
    max-width: 90%;
    margin: auto;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .feature-card h3 {
    height: 70px;
  }

  .cook-banner-section {
    background: none !important;
    padding: 0 !important;
  }

  /* Show mobile image */
  .cook-banner-image-mobile {
    width: 100%;
    display: block;
  }

  /* Yellow box exactly like screenshot */
  .cook-banner-content {
    background: #f9dd77;
    padding: 48px 29px;
    margin-top: -5px;
    position: relative;
    left: 0 !important;
    max-width: 100%;
    text-align: left;
  }

  .cook-banner-content h2 {
    font-size: 24px;
    line-height: 30px;
    color: #7c1a2d;
  }

  .cook-banner-content p {
    font-size: 15px;
    line-height: 22px;
    color: #000;
    margin-top: 10px;
  }

  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-title {
    height: 70px;
  }

  .related-products-slider .owl-nav .owl-prev,
  .related-products-slider .owl-nav .owl-next {
    display: none;
  }

  .store-icons {
    padding: 0px !important;
  }
  .store-availability-section {
    padding: 50px 20px 0px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .feature-card h3 {
    padding: 8px 0px;
  }

  .cook-banner-content {
    left: 16rem;
  }

  .yellow-feast-text {
    width: 100%;
  }
}

/* Mobile / iPhone */
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }

  .feast-banner-section {
    /* adjust for mobile */
    background-position: top center;
    background-image: url("{{ asset('public/uploads/products/' . $product['banner_image_mobile']) }}") !important;
    background-size: cover !important;
  }

  .main-product-img {
    width: 100%;
    height: auto;
  }

  .product-thumbnails {
    gap: 25px;
  }

  .thumb-item {
    width: 100px;
    height: auto;
  }

  .feast-product-container {
    gap: 3rem;
  }

  .feast-product-right h1 {
    font-size: 38px;
    line-height: 54px;
  }

  .product-meta p {
    line-height: 35px;
  }

  .related-products-slider .owl-nav .owl-next {
    display: none;
  }

  .store-availability-section h2 {
    font-size: 25px;
    line-height: 1.3;
  }

  .store-icons {
    gap: 25px;
  }

  .store-icons img {
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 14px;
  }

  .yellow-feast-section::before {
    background: linear-gradient(90deg, #efbf4b 30%, #ffe87e 65%, #f2ca6b 100%);
  }

  .yellow-feast-text {
    width: 100%;
  }

  .yellow-feast-text .desc {
    max-width: 100%;
  }

  .yellow-feast-text h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .yellow-feast-image img {
    width: 250px;
    margin-top: 25px;
    top: 0px;
    bottom: 6rem;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .feature-card h3 {
    padding: 8px 0px;
  }

  .feature-icon {
    width: 90px;
    height: 90px;
  }

  /* .cook-banner-section {
                    height: auto;
                    padding: 50px 20px;
                    background-position: center right;
                }
                .cook-banner-content {
                    left: 0rem;
                    width: 100%; 
                    max-width: 100%
                }
                .cook-banner-content h2 {
                    font-size: 24px;
                }

                .cook-banner-content p {
                    font-size: 14px;
                }    */
  /* Remove background image on mobile */
  .cook-banner-section {
    background: none !important;
    padding: 0 !important;
  }

  /* Show mobile image */
  .cook-banner-image-mobile {
    width: 100%;
    display: block;
  }

  /* Yellow box exactly like screenshot */
  .cook-banner-content {
    background: #f9dd77;
    padding: 30px 20px;
    margin-top: -5px;
    /* removes gap between image + yellow box */
    position: relative;
    left: 0;
    max-width: 100%;
    text-align: left;
  }

  .cook-banner-content h2 {
    font-size: 24px;
    line-height: 30px;
    color: #7c1a2d;
  }

  .cook-banner-content p {
    font-size: 15px;
    line-height: 22px;
    color: #000;
    margin-top: 10px;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .related-products-section h2 {
    font-size: 42px;
  }

  .section-title {
    font-size: 42px;
  }
}
