/**
 * Pro Plus Gym - New sections (cutoff timer, subscription CTA, rhythm, FAQ)
 * Reference: lifestylemeals.ttpfitness.com
 */

/* ========== Cutoff Timer ========== */
.ppg-cutoff-timer {
  padding: 28px 24px;
  margin: 0 24px;
  margin-top: -40px;
  position: relative;
  z-index: 15;
  border-radius: 20px;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.ppg-cutoff-timer__wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ppg-cutoff-timer__label {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ppg-cutoff-timer__countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}
.ppg-cutoff-timer__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  padding: 12px 16px;
  background: rgba(0,0,0,.35);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
}
.ppg-cutoff-timer__val {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.ppg-cutoff-timer__txt {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
}
.ppg-cutoff-timer__note {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}
.ppg-cutoff-timer__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #520975;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: box-shadow 0.2s;
}
.ppg-cutoff-timer__btn:hover {
  background: #520975;
  box-shadow: none;
  color: #fff !important;
}
@media (max-width: 640px) {
  .ppg-cutoff-timer__countdown { gap: 12px; }
  .ppg-cutoff-timer__unit { min-width: 48px; padding: 10px 12px; }
  .ppg-cutoff-timer__val { font-size: 22px; }
}

/* ========== Subscription CTA ========== */
.ppg-subscription-cta {
  padding-top: 48px;
  padding-bottom: 48px;
}
.ppg-subscription-cta__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px 36px;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
@media (min-width: 768px) {
  .ppg-subscription-cta__card {
    flex-direction: row;
    justify-content: space-between;
  }
}
.ppg-subscription-cta__content { flex: 1; min-width: 280px; }
.ppg-subscription-cta__badge {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #1A1A1A;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
}
.ppg-subscription-cta__title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
}
.ppg-subscription-cta__text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}
.ppg-subscription-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: #520975;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow .2s;
}
.ppg-subscription-cta__btn:hover {
  background: #520975;
  box-shadow: none;
  color: #fff;
}
.ppg-subscription-cta__visual {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A1A1A;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.12);
}
.ppg-subscription-cta__icon { font-size: 48px; }

/* ========== Why Pro Plus Bar (Fitness-focused, clean) ========== */
.ppg-why-bar {
  padding: 48px 24px 40px;
  background: rgba(82,9,117,.12);
  border: 1px solid rgba(82,9,117,.25);
  text-align: center;
  /* Smooth scrolling and performance optimizations */
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  will-change: auto;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ppg-why-bar .ppg-section__title {
  margin-bottom: 8px;
}
.ppg-why-bar .ppg-section__sub {
  margin-bottom: 28px;
}
.ppg-why-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .ppg-why-bar__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ppg-why-bar__item {
  text-align: center;
  padding: 24px 20px;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  transition: transform .2s, border-color .2s;
}
/* Removed translateY to prevent layout jumps */
.ppg-why-bar__item:hover {
  border-color: rgba(82,9,117,.3);
}
.ppg-why-bar__icon {
  display: block;
  font-size: 32px;
  margin-bottom: 12px;
}
.ppg-why-bar__item h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.ppg-why-bar__item p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}

/* ========== Weekly Rhythm Timeline ========== */
.ppg-rhythm-section { padding-bottom: 60px; }
.ppg-rhythm-timeline {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 16px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.ppg-rhythm-timeline__item {
  flex: 1;
  min-width: 200px;
  padding: 28px 24px;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  text-align: center;
  transition: box-shadow .3s;
}
.ppg-rhythm-timeline__item:hover {
  box-shadow: none;
}
.ppg-rhythm-timeline__day {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.ppg-rhythm-timeline__desc {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.ppg-rhythm-timeline__arrow {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #888888;
  font-weight: 900;
}
@media (max-width: 640px) {
  .ppg-rhythm-timeline__arrow { display: none; }
  .ppg-rhythm-timeline__item { min-width: 100%; }
}

/* ========== FAQ Section ========== */
.ppg-faq-section {
  position: relative;
  padding-bottom: 160px;
  overflow: visible;
}
/* Decorative light purple image at bottom; blends with section, no content cut off */
.ppg-faq-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 320px;
  pointer-events: none;
  z-index: 0;
  background: transparent;
}
.ppg-faq-section .ppg-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 24px;
}
.ppg-faq-section .ppg-faq { max-width: 720px; margin: 0 auto; }
.ppg-faq-section .ppg-faq__item {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
/* FAQ question row: click toggles .open on parent .ppg-faq__item */
.ppg-faq-section .ppg-faq__q {
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 4px 0;
  gap: 12px;
  min-height: 44px;
}
/* Plus icon: visible and aligned; changes to minus when .ppg-faq__item.open */
.ppg-faq-section .ppg-faq__q::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  flex-shrink: 0;
  margin-left: 0;
  transition: transform 0.25s ease;
}
.ppg-faq-section .ppg-faq__item.open .ppg-faq__q::after {
  content: "\2212";
}

/* Prevent unwanted background color changes on click */
.ppg-faq-section .ppg-faq__q:active,
.ppg-faq-section .ppg-faq__q:focus,
.ppg-faq-section .ppg-faq__item:active {
  background-color: transparent !important;
  outline: none;
}

/* FAQ button element - ensure transparent background */
.ppg-faq-section button.ppg-faq__q {
  background: transparent !important;
  border: none;
}
/* Answer: hidden when closed, visible when .ppg-faq__item has .open */
.ppg-faq-section .ppg-faq__a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0s linear 0.4s;
}
.ppg-faq-section .ppg-faq__item.open .ppg-faq__a {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0s;
  padding-top: 8px;
}
.ppg-faq-section .ppg-faq__a p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  font-size: 15px;
}

/* Cart icon as link */
a.ppg-nav__icon--cart {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer Go to cart */
.ppg-footer__cart-link {
  text-align: center;
  padding: 20px 0 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ppg-footer__cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #520975;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 4px;
  text-decoration: none;
  transition: box-shadow .2s;
}
.ppg-footer__cart-btn:hover {
  background: #520975;
  box-shadow: none;
  color: #fff;
}

/* ========== Stats Bar ========== */
.ppg-stats-bar {
  padding: 36px 24px;
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ppg-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.ppg-stats-bar__item {
  text-align: center;
  padding: 20px 12px;
  background: #1A1A1A;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s;
}
.ppg-stats-bar__item:hover {
  box-shadow: none;
}
.ppg-stats-bar__num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.ppg-stats-bar__label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .5px;
}
@media (max-width: 768px) {
  .ppg-stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ppg-stats-bar__num { font-size: 26px; }
}

/* ========== Why Pro Plus Meals ========== */
.ppg-why-section { padding-bottom: 60px; }
.ppg-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ppg-why-card {
  padding: 32px 24px;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  text-align: center;
  transition: box-shadow .3s;
}
.ppg-why-card:hover {
  box-shadow: none;
}
.ppg-why-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.ppg-why-card h4 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}
.ppg-why-card p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .ppg-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ppg-why-grid { grid-template-columns: 1fr; }
}

/* ========== Pickup & Delivery ========== */
.ppg-pickup-section { padding-top: 48px; padding-bottom: 48px; }
.ppg-pickup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}
.ppg-pickup-card {
  padding: 36px 28px;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  text-align: center;
  transition: box-shadow .3s;
}
.ppg-pickup-card:hover {
  box-shadow: none;
}
.ppg-pickup-card__icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.ppg-pickup-card h4 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
.ppg-pickup-card p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .ppg-pickup-grid { grid-template-columns: 1fr; }
}

/* ========== Trust & Quality Bar ========== */
.ppg-trust-section { padding-top: 40px; padding-bottom: 40px; }
.ppg-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 40px;
  padding: 24px 28px;
  background: rgba(0,0,0,.2);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
}
.ppg-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.ppg-trust-bar__badge {
  font-size: 20px;
  opacity: .95;
}

/* ========== REMOVE ALL HOVER EFFECTS ========== */
/* No animations, transforms, or style changes on hover */
/* Text always remains visible */
.ppg-cutoff-timer__btn:hover,
.ppg-subscription-cta__btn:hover,
.ppg-why-bar__item:hover,
.ppg-rhythm-timeline__item:hover,
.ppg-footer__cart-btn:hover,
.ppg-stats-bar__item:hover,
.ppg-why-card:hover,
.ppg-pickup-card:hover {
  transform: none !important;
  animation: none !important;
}
