/* ==========================================================================
   Longdon Foods - Dedicated Snack Product Page Stylesheet
   Inspired by Snack With Benefits Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Permanent+Marker&display=swap');

@font-face {
  font-family: 'TT Trailers';
  src: url('../TT Trailers Trial Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #101820;
  --color-bg-subtle: #141f2a;
  --color-yellow: #f7f33a;
  --color-yellow-hover: #e5e12f;
  --color-white: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.75);
}

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Product Hero Section
   ========================================================================== */
.product-hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: radial-gradient(circle at 50% 35%, #192635 0%, #101820 70%);
  overflow: hidden;
}

/* Breadcrumb Navigation */
.product-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-yellow);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-hero__breadcrumb:hover {
  color: #fff;
  transform: translateX(-4px);
  text-decoration: none;
}

.product-hero__breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 4px;
}

/* Giant Headline */
.product-hero__title {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(52px, 12.5vw, 175px);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  user-select: none;
  pointer-events: none;
}

/* Bowl Stage Container */
.product-hero__stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 10px auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

/* Center Bowl Cutout */
.product-hero__bowl-wrap {
  position: relative;
  z-index: 5;
  display: inline-block;
}

.product-hero__bowl {
  width: 100%;
  max-width: clamp(420px, 60vw, 820px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 35px 75px rgba(0, 0, 0, 0.75));
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
  will-change: transform;
}

.product-hero__bowl-wrap:hover .product-hero__bowl {
  transform: scale(1.05) rotate(-1.5deg);
  filter: drop-shadow(0 45px 95px rgba(0, 0, 0, 0.88));
}

/* Floating Snack Cutouts */
.product-hero__piece {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.55));
  will-change: transform;
}

.product-hero__piece--tl {
  top: 4%;
  left: 2%;
  width: clamp(75px, 12vw, 160px);
  animation: floatTL 5s ease-in-out infinite alternate;
}

.product-hero__piece--tr {
  top: 8%;
  right: 2%;
  width: clamp(70px, 11vw, 150px);
  animation: floatTR 5.8s ease-in-out infinite alternate;
}

.product-hero__piece--bl {
  bottom: 4%;
  left: 1%;
  width: clamp(65px, 10vw, 140px);
  animation: floatBL 4.8s ease-in-out infinite alternate;
}

.product-hero__piece--br {
  bottom: 2%;
  right: 1%;
  width: clamp(80px, 13vw, 170px);
  animation: floatBR 6.2s ease-in-out infinite alternate;
}

@keyframes floatTL {
  0% { transform: translateY(0) rotate(-25deg); }
  100% { transform: translateY(-18px) rotate(-18deg); }
}

@keyframes floatTR {
  0% { transform: translateY(0) rotate(32deg); }
  100% { transform: translateY(-22px) rotate(38deg); }
}

@keyframes floatBL {
  0% { transform: translateY(0) rotate(15deg); }
  100% { transform: translateY(-16px) rotate(8deg); }
}

@keyframes floatBR {
  0% { transform: translateY(0) rotate(-22deg); }
  100% { transform: translateY(-24px) rotate(-15deg); }
}

/* ==========================================================================
   Discover & Information Section
   ========================================================================== */
.product-info-section {
  position: relative;
  z-index: 10;
  max-width: 820px;
  margin: 0 auto;
  padding: 10px 20px 70px;
  text-align: center;
}

.product-info__heading {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--color-white);
  margin: 0 0 20px;
}

.product-info__desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.25vw, 15.5px);
  font-weight: 600;
  line-height: 1.85;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  max-width: 700px;
  margin: 0 auto 36px;
}

/* Dietary & Feature Badges Row (Image Badges) */
.product-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 26px;
  margin: 25px auto 40px;
  max-width: 760px;
}

.product-badge-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.product-badge-img img {
  width: clamp(75px, 9.5vw, 115px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.product-badge-img:hover img {
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}

/* Action Buttons */
.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 25px;
}

.btn--whatsapp-order {
  background: var(--color-yellow);
  color: #101820;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(247, 243, 58, 0.25);
}

.btn--whatsapp-order:hover {
  background: #fff;
  color: #101820;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(247, 243, 58, 0.4);
  text-decoration: none;
}

.btn--whatsapp-order i {
  font-size: 20px;
}

.btn--event-book {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn--event-book:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}

/* ==========================================================================
   Pack Options Section
   ========================================================================== */
.product-packs-section {
  padding: 60px 20px 80px;
  background: #0d141b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-packs-section .container {
  max-width: 1080px;
  margin: 0 auto;
}

.product-section-title {
  font-family: 'TT Trailers', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 10px;
  color: #fff;
}

.product-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 45px;
}

.product-packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-pack-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-pack-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 243, 58, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-pack-card.featured {
  border-color: var(--color-yellow);
  background: rgba(247, 243, 58, 0.04);
}

.product-pack-card__tag {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--color-yellow);
  color: #101820;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-pack-card__title {
  font-family: 'TT Trailers', sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #fff;
}

.product-pack-card__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 20px;
}

.product-pack-card__price {
  font-family: 'TT Trailers', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--color-yellow);
  margin-bottom: 24px;
}

.product-pack-card__price span {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.product-pack-card__btn {
  width: 100%;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-pack-card.featured .product-pack-card__btn,
.product-pack-card__btn:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: #101820;
  text-decoration: none;
}

/* ==========================================================================
/* ==========================================================================
   Discover Our Other Snacks Section (Snack With Benefits Style)
   ========================================================================== */
.other-snacks-styled {
  padding: 100px 24px 110px;
  background: #101820;
  text-align: center;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.other-snacks-styled__title {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-size: clamp(48px, 9.5vw, 130px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 auto 60px;
  text-align: center;
}

.other-snacks-styled__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(32px, 6vw, 90px);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.other-snack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.other-snack-item:hover {
  text-decoration: none;
  transform: translateY(-8px);
}

.other-snack-item__img-wrap {
  width: clamp(95px, 9vw, 130px);
  height: clamp(95px, 9vw, 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.other-snack-item__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
  will-change: transform;
}

.other-snack-item:hover .other-snack-item__img {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.8));
}

.other-snack-item__name {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.other-snack-item:hover .other-snack-item__name {
  transform: scale(1.06);
}

.other-snack-item__name--green {
  color: #10cf72;
  text-shadow: 0 0 20px rgba(16, 207, 114, 0.25);
}

.other-snack-item__name--yellow {
  color: #f7f33a;
  text-shadow: 0 0 20px rgba(247, 243, 58, 0.25);
}

.other-snack-item__name--pink {
  color: #ff585d;
  text-shadow: 0 0 20px rgba(255, 88, 93, 0.25);
}

/* ==========================================================================
   WHAT THE FAQ Section
   ========================================================================== */
.ab-faq {
  background: #101820;
  padding: 90px 0 110px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.ab-faq__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

.ab-faq__title {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(70px, 13vw, 170px);
  line-height: 0.88;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 56px 0;
  text-align: left;
}

.ab-faq-list {
  display: flex;
  flex-direction: column;
}

.ab-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ab-faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ab-faq__trigger,
.ab-faq__trigger:focus,
.ab-faq__trigger:active {
  width: 100%;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  padding: 26px 0;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left !important;
  transition: color 0.25s ease;
  gap: 24px;
  line-height: 1.3;
}

.ab-faq__trigger:hover {
  color: #f7f33a;
}

.ab-faq__trigger span:first-child {
  flex: 1;
  text-align: left;
}

.ab-faq__icon {
  font-size: 26px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-faq__item--open .ab-faq__icon {
  transform: rotate(45deg);
  color: #f7f33a;
}

.ab-faq__item--open .ab-faq__trigger {
  color: #f7f33a;
}

.ab-faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0;
}

.ab-faq__item--open .ab-faq__body {
  max-height: 500px;
  padding-bottom: 28px;
}

.ab-faq__body p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 820px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991px) {
  .product-hero {
    padding-top: 110px;
  }
  .product-hero__stage {
    min-height: 320px;
  }
  .product-hero__piece--tl,
  .product-hero__piece--tr {
    top: 2%;
  }
  .product-hero__piece--bl,
  .product-hero__piece--br {
    bottom: 2%;
  }
}

@media (max-width: 767px) {
  .product-hero {
    padding-top: 100px;
  }
  .product-hero__title {
    font-size: clamp(44px, 14vw, 85px);
  }
  .product-hero__stage {
    margin: 10px auto 20px;
    min-height: 280px;
  }
  .product-hero__bowl {
    max-width: clamp(290px, 86vw, 420px);
  }
  .product-hero__piece {
    opacity: 0.85;
  }
  .product-hero__piece--tl {
    width: 65px;
    left: 2%;
  }
  .product-hero__piece--tr {
    width: 60px;
    right: 2%;
  }
  .product-hero__piece--bl {
    width: 55px;
    left: 2%;
  }
  .product-hero__piece--br {
    width: 65px;
    right: 2%;
  }
  .product-badges {
    gap: 10px 14px;
  }
  .product-badge {
    font-size: 14px;
    padding: 6px 14px;
  }
  .product-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn--whatsapp-order,
  .btn--event-book {
    width: 100%;
    justify-content: center;
  }
  .other-snacks-styled {
    padding: 70px 20px 80px;
  }
  .other-snacks-styled__title {
    font-size: clamp(40px, 12vw, 75px);
    margin-bottom: 36px;
  }
  .other-snacks-styled__grid {
    flex-direction: column;
    align-items: center;
    gap: 42px;
  }
  .other-snack-item {
    width: 100%;
    max-width: 260px;
  }
  .other-snack-item__img-wrap {
    width: 96px;
    height: 96px;
    margin-bottom: 12px;
  }
  .other-snack-item__name {
    font-size: 19px;
  }
  .ab-faq {
    padding: 60px 0 80px;
  }
  .ab-faq__inner {
    padding: 0 24px;
  }
  .ab-faq__title {
    font-size: clamp(52px, 13vw, 105px);
    margin-bottom: 36px;
  }
  .ab-faq__trigger,
  .ab-faq__trigger:focus,
  .ab-faq__trigger:active {
    font-size: clamp(15px, 3.8vw, 20px);
    padding: 20px 0;
    gap: 16px;
  }
  .ab-faq__body p {
    font-size: clamp(14px, 3.5vw, 17px);
  }
}

