:root {
  --blue: #0057A0;
  --red: #FF2F29;
  --orange: #FE9202;
  --dark: #353A40;
  --text-light: #ffffff;
  --section-kicker-size: 22px;
  --section-title-size: 50px;
  --card-bg: #ffffff;
  --card-hover: #e5a752;
  --accent: #301B0C;
  --subtitle: #EA572;
  --title: #000000;
  --text-color: #301B0C;
  --container-bg: #fff8f4;

  --space-section: 72px;
  --space-section-md: 56px;
  --space-section-sm: 40px;
}



.u-section { padding: var(--space-section) 0; }
@media (max-width: 992px) { .u-section { padding: var(--space-section-md) 0; } }
@media (max-width: 600px) { .u-section { padding: var(--space-section-sm) 0; } }

.u-gap-top { margin-top: var(--space-section); }
@media (max-width: 992px) { .u-gap-top { margin-top: var(--space-section-md); } }
@media (max-width: 600px) { .u-gap-top { margin-top: var(--space-section-sm); } }

.home-page .section-kicker,
.section-kicker {
  font-size: var(--section-kicker-size, 17px);
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--card-hover);
  text-transform: capitalize;
  margin-bottom: 5px;
  text-align: center;
}

.home-page .section-title,
.section-title {
  font-size: var(--section-title-size, 50px);
  font-weight: 900; 
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--title);
  text-align: center;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: capitalize;
}


.section-title-left {
  font-size: var(--section-title-size, 50px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #111;
  text-align: center;
}

@media (max-width: 768px) {
  .section-title {
    font-size: calc(var(--section-title-size, 50px) * 0.75);
  }
  .section-kicker {
    font-size: calc(var(--section-kicker-size, 17px) * 1.05);
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: calc(var(--section-title-size, 50px) * 0.6);
  }
  .section-kicker {
    font-size: calc(var(--section-kicker-size, 17px) * 0.95);
  }
}

.announcement-ribbon {
  width: 100%;
  background: #FFDE59;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
  z-index: 9;
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: ribbonScroll 45s linear infinite;
}

.announcement-track span {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  color: #000;
  padding-right: 50px;
  white-space: nowrap;
}

@keyframes ribbonScroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.service-choice {
  background: #fff;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-choice {
  border: 2px solid var(--red);
  background: transparent;
  color: var(--dark);
  padding: 12px 28px;
  min-width: 160px;
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.btn-choice.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

@media (max-width: 600px) {
  .service-choice {
    padding: 12px 0;
  }
  .btn-choice {
    padding: 10px 16px;
    font-size: 15px;
    min-width: 120px;
  }
}

.home-page {
  background: #fff;
}

.fade-up,
.fade-right,
.fade-left {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right {
  transform: translateX(30px);
}

.fade-left {
  transform: translateX(-30px);
}

.in-view.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.in-view.fade-right,
.in-view.fade-left {
  opacity: 1;
  transform: translateX(0);
}

.section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 28px;
}

.section-header--center {
  align-items: center;
  text-align: center;
}

.section-header--left {
  align-items: flex-start;
  text-align: left;
}

.section-header--right {
  align-items: flex-end;
  text-align: right;
}


.pt-section-header.section-header--center {
  align-items: flex-start;
  text-align: left;
}

.pt-section-header .section-kicker {
  font-size: var(--section-kicker-size, 17px);
  text-align: left;
  margin-left: 0;
  width: 100%;
}

.pt-section-header .section-title {
  font-size: var(--section-title-size, 50px);
  text-align: left;
  margin-left: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .pt-section-header .section-title {
    font-size: calc(var(--section-title-size, 50px) * 0.75);
  }
  .pt-section-header .section-kicker {
    font-size: calc(var(--section-kicker-size, 17px) * 1.05);
  }
}

@media (max-width: 600px) {
  .pt-section-header { align-items: center; text-align: center; }
  .pt-section-header .section-title { font-size: calc(var(--section-title-size, 50px) * 0.52); text-align: center; margin-left: 0; }
  .pt-section-header .section-kicker { font-size: calc(var(--section-kicker-size, 17px) * 0.95); text-align: center; margin-left: 0; }
}

.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: rgba(53, 58, 64, 0.72);
  margin: 0 0 18px;
}

.section-divider {
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 26px;
  font-size: 15px;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  transition:
    background 0.25s ease,
    box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--orange);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.hero-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hero-slider::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.hero-slider-inner {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  display: flex;
  transition: transform 0.9s ease;
  width: 100%;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  z-index: 1;
}

.hero-slide {
  min-width: 100%;
  flex: 0 0 100%; /* ensure one full-width slide at a time */
  flex-shrink: 0;
  display: block;
  height: clamp(360px, 50vw, 650px);
  position: relative;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-slide-gradient {
  width: 100%;
  height: 80px;
  margin-top: auto;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2));
  flex-shrink: 0;
}

/* Hero arrows */
.hero-arrow {
  grid-row: 1;
  align-self: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: none;
  background: rgba(0,0,0,0.75);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  margin: 0 24px;
}

.hero-prev {
  grid-column: 1;
}

.hero-next {
  grid-column: 3;
}

/* Hero dots */
.hero-dots {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  margin-bottom: 14px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}

.hero-dots .dot.active {
  width: 22px;
  background: #fff;
}

/* ============================
   Category / Popular Food Slider (pt-*)
============================ */

/* Note: Color and layout variables defined above in :root at top of file */
/* Additional variables can be added to the main :root declaration */

.pt-popular-section {
  background: var(--container-bg);
  padding: 60px 0;
  font-family: "Oswald", sans-serif;
}

.pt-food-wrap {
  width: 90%;
  max-width: 1314px;
  margin: 0 auto;
}

.pt-food-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 34px;
}

.pt-subtitle {
  font-size: var(--section-kicker-size, 17px);
  color: var(--subtitle);
  font-weight: 700;
  margin-left: 48px;
  text-align: left;
  margin-bottom: -20px;
}

.pt-title {
  font-size: var(--section-title-size, 50px);
  color: var(--title);
  font-weight: 900;
  margin-left: 48px;
  text-align: left;
}

.swiper.pt-slider {
  margin-top: 10px;
  padding: 0 24px 18px;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.swiper.pt-slider::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.swiper.pt-slider::-webkit-scrollbar:vertical {
  display: none;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
  overflow: visible;
  padding: 0 12px;
}

.swiper-slide {
  display: flex;
  width: clamp(220px, 27vw, 320px); /* responsive, uniform category card width */
  height: auto;
}


/* Ensure all sections don't show vertical scrollbars */
section {
  overflow-y: visible;
}

section.swiper-container,
section[class*="swiper"] {
  overflow-y: hidden;
}

.pt-card-media {
  margin-bottom: 12px;
  position: relative;
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-card-media img {
  max-height: 100%;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,0.12));
}

.pt-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
}

.pt-card-title {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 800;
  margin: 0;
  text-align: center;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.pt-divider {
  width: 70px;
  height: 4px;
  background: var(--text-color);
  border-radius: 4px;
  margin: 5px auto 0;
  transition: background 0.35s ease, transform 0.35s ease;
}

.pt-count {
  font-size: 12px;
  color: var(--text-color);
  font-weight: 700;
  margin: 0;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* Hover effect for homepage slider card */
.pt-food-card {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  min-height: 420px; /* ensure consistent card height on desktop */
  padding: 26px 20px;
  box-sizing: border-box;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
  cursor: pointer;
  box-shadow: none;
  background-color: var(--card-bg);
}

.pt-food-card:hover,
.swiper-slide:hover .pt-food-card {
  z-index: 2;
  background-color: var(--blue);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.13),
    0 2px 8px rgba(0,0,0,0.10);
}

.pt-food-card:hover .pt-card-title,
.pt-food-card:hover .pt-count,
.swiper-slide:hover .pt-card-title,
.swiper-slide:hover .pt-count {
  color: #fff;
}

.pt-food-card:hover .pt-divider,
.swiper-slide:hover .pt-divider {
  background: #fff;
}

@media (max-width: 1199px) {
  .pt-title { 
    font-size: calc(var(--section-title-size, 50px) * 0.84); 
  }
  .pt-food-card { width: 300px; min-height: 380px; }
  .pt-card-media { height: 180px; }
  .pt-card-media img { max-width: 175px; }
  .swiper.pt-slider {
    padding-left: 20px;
    padding-right: 20px;
  }
  .swiper-wrapper {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .pt-title { 
    font-size: calc(var(--section-title-size, 50px) * 0.72); 
  }
  .pt-food-card { width: 260px; min-height: 360px; }
  .pt-card-media { height: 160px; }
  .pt-card-media img { max-width: 160px; }
  .swiper.pt-slider {
    padding-left: 16px;
    padding-right: 16px;
  }
  .swiper-wrapper {
    padding: 0 8px;
  }
}

@media (max-width: 767px) {
  .pt-food-wrap { width: 95%; }
  .pt-title { 
    font-size: calc(var(--section-title-size, 50px) * 0.6); 
    margin-left: 0; 
  }
  .pt-subtitle { 
    margin-left: 0; 
    font-size: calc(var(--section-kicker-size, 17px) * 1.06); 
  }
  .pt-food-card {
    width: 220px;
    min-height: 330px;
    padding: 18px;
  }
  .pt-card-media { height: 150px; }
  .pt-card-media img { max-width: 130px; }
  .pt-card-title { font-size: 16px; }
  .pt-count { font-size: 14px; }
  .swiper.pt-slider {
    padding-left: 12px;
    padding-right: 12px;
  }
  .swiper-wrapper {
    padding: 0 6px;
  }
}

@media (max-width: 479px) {
  .pt-title { 
    font-size: calc(var(--section-title-size, 50px) * 0.52); 
    margin-left: 0; 
  }
  .pt-subtitle { 
    margin-left: 0; 
    font-size: calc(var(--section-kicker-size, 17px) * 0.94); 
  }
  .pt-food-card {
    width: 90%;
    min-height: auto;
    padding: 16px;
  }
  .pt-card-media { height: 140px; }
  .pt-card-media img { max-width: 120px; }
  .pt-card-title { font-size: 14px; }
  .pt-count { font-size: 14px; }
  .swiper.pt-slider {
    padding-left: 8px;
    padding-right: 8px;
  }
  .swiper-wrapper {
    padding: 0 4px;
  }
}

/* ============================
   HOME popular menu section
============================ */

.home-popular-menu .section-subtitle {
  font-size: var(--section-kicker-size, 17px);
  color: var(--subtitle);
  font-weight: 700;
  margin-left: 48px;
  text-align: left;
  margin-bottom: 20px;
}

.home-popular-menu .section-kicker {
  font-size: var(--section-kicker-size, 17px);
}

.home-popular-menu .section-title {
  font-size: var(--section-title-size, 50px);
  color: var(--title);
  font-weight: 900;
  margin-left: 38px;
  text-align: left;
  margin-bottom: 80px;
  text-transform: capitalize;
}

.home-popular-menu {
  padding: 56px 0; /* pulled up slightly for tighter layout */
}

@media (max-width: 768px) {
  .home-popular-menu .section-title {
    font-size: calc(var(--section-title-size, 50px) * 0.75);
  }
  .home-popular-menu .section-kicker {
    font-size: calc(var(--section-kicker-size, 17px) * 1.05);
  }
}

@media (max-width: 600px) {
  .home-popular-menu .section-title {
    font-size: calc(var(--section-title-size, 50px) * 0.6);
  }
  .home-popular-menu .section-kicker {
    font-size: calc(var(--section-kicker-size, 17px) * 0.95);
  }
}

/* ============================
   HOW TO ORDER SECTION
============================ */
.how-order-section {
  padding: 92px 0 140px;
  background: #fff;
  font-family: 'Oswald', sans-serif;
}

.how-order-section .section-header {
  text-align: center;
  margin-bottom: 28px;
}

.how-order-section .section-kicker {
  font-size: var(--section-kicker-size, 17px);
}

.how-order-section .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: var(--section-title-size, 50px);
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0 0 8px;
  font-weight: 900;
}

.how-order-support {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: rgba(53,58,64,0.8);
  margin: 0 auto 18px;
  max-width: 760px;
  line-height: 1.5;
}

.how-order-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 0 18px;
}

.how-order-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transition:
    box-shadow 0.22s ease,
    transform 0.24s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 460px;
  margin-bottom: 8px;
}

.how-order-card:hover {
  box-shadow: 0 36px 80px rgba(0,0,0,0.10);
  transform: translateY(-6px);
}

.how-order-qr-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}

.how-order-qr {
  display: block;
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin: 0 auto;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(0,0,0,0.10);
  transition: transform 0.22s ease;
}
.how-order-qr:hover {
  transform: scale(1.03);
}

.how-order-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--dark);
  margin: 6px 0 0;
  font-weight: 900;
  text-align: center;
}

.how-order-card-text {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  color: rgba(53,58,64,0.88);
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

/* Steps (timeline) for How-to-order — match reference */
.how-order-steps {
  list-style: none;
  margin: 16px 0 0;
  padding: 0 8px 0 8px;
}
.how-order-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  padding-left: 6px;
}
.how-order-step + .how-order-step { margin-top: 18px; }
.how-order-step:before { display: none; }
.how-order-step::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 36px;
  bottom: -10px;
  width: 2px;
  background: #e9ecf3;
}
.how-order-step:last-child::after { display: none; }
.how-order-step-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--blue);
  border: 1px solid rgba(0,0,0,0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.how-order-step:hover .how-order-step-icon {
  transform: scale(1.06);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.how-order-step-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  color: #1f2532;
  font-size: 16px;
  margin: 0 0 4px 0;
}
.how-order-step-text {
  font-family: 'Oswald', sans-serif;
  color: rgba(31,37,50,0.78);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .how-order-section { padding: 56px 0; }
  .how-order-section .section-title { 
    font-size: calc(var(--section-title-size, 50px) * 0.7); 
  }
  .how-order-section .section-kicker {
    font-size: calc(var(--section-kicker-size, 17px) * 1.05);
  }
  .how-order-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .how-order-card {
    min-height: auto;
    padding: 22px 18px;
  }
  .how-order-qr {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 600px) {
  .how-order-section .section-title {
    font-size: calc(var(--section-title-size, 50px) * 0.6);
  }
  .how-order-section .section-kicker {
    font-size: calc(var(--section-kicker-size, 17px) * 0.95);
  }
}

@media (max-width: 540px) {
  .how-order-card { padding: 18px; }
  .how-order-card-title { font-size: 18px; }
  .how-order-card-text { font-size: 14px; }
}

/* ============================
   PROMO BANNERS
============================ */
.promo-banners-section {
  width: 100%;
  max-width: 1320px;
  margin: 60px auto 0;
  padding: 36px 38px;
  background: transparent;
  border-radius: 38px;
  box-shadow: 0 25px 60px rgba(27, 10, 0, 0.08);
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.promo-banners-section::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.promo-banners-row {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 100%;
  overflow: hidden;
}

.promo-banner {
  flex: 1 1 48%;
  min-width: 0;
  max-width: none;
  height: 360px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  transition: box-shadow 0.35s ease;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.promo-banner::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.promo-banner-1 {
  flex-basis: 44%;
  background-image: url('/images/about/imgi_57_pizza-bg.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.promo-banner-2 {
  flex-basis: 56%;
  background-image: url('/images/about/imgi_56_pepsi-bg.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.promo-banner-1::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.promo-banner-2::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Background scattered food images */
.promo-banner-bg-images {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.promo-banner-bg-images::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.promo-bg-item {
  grid-column: span 1;
  grid-row: span 1;
  opacity: 0.25;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  transform-origin: center center;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hide all background scattered food items for banner 1 */
.promo-banner-1 .promo-bg-item-1,
.promo-banner-1 .promo-bg-item-2,
.promo-banner-1 .promo-bg-item-3,
.promo-banner-1 .promo-bg-item-4 {
  display: none; /* Hide all background items */
}

/* Hide all background scattered food items for banner 2 */
.promo-banner-2 .promo-bg-item-1,
.promo-banner-2 .promo-bg-item-2,
.promo-banner-2 .promo-bg-item-3,
.promo-banner-2 .promo-bg-item-4 {
  display: none; /* Hide all background items */
}

/* Hover zoom effect on background items */
.promo-banner:hover .promo-bg-item {
  opacity: 0.4;
}

/* Hide all background items on hover for banner 1 */
.promo-banner-1:hover .promo-bg-item-1,
.promo-banner-1:hover .promo-bg-item-2,
.promo-banner-1:hover .promo-bg-item-3,
.promo-banner-1:hover .promo-bg-item-4 {
  display: none; /* Hide all background items */
}

/* Hide all background items on hover for banner 2 */
.promo-banner-2:hover .promo-bg-item-1,
.promo-banner-2:hover .promo-bg-item-2,
.promo-banner-2:hover .promo-bg-item-3,
.promo-banner-2:hover .promo-bg-item-4 {
  display: none; /* Hide all background items */
}

.promo-banner-inner {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 2;
}

.promo-banner-inner::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.promo-banner-lines,
.promo-banner-img-wrap {
  z-index: 3;
}

.promo-banner-img-wrap {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 32px;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 1;
}

.promo-banner-img-wrap::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.promo-banner-img {
  width: 100%;
  max-width: 180px;
  max-height: 180px;
  object-fit: contain;
  border-radius: 0;
  transform-origin: center center;
}

/* Pizza image specific styling for banner 1 */
.promo-banner-img-wrap-pizza {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 24px 16px 24px 16px;
  z-index: 3;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.promo-banner-img-wrap-pizza::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.promo-banner-pizza-img {
  max-width: 220px;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.promo-banner-1:hover .promo-banner-pizza-img {
  transform: scale(1.1);
}

.promo-banner:hover {
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.promo-banner-lines {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 38px;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 2;
}

.promo-banner-lines::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.promo-banner-lines-left {
  align-items: flex-start;
  text-align: left;
}



.promo-banner-top {
  font-size: 16px;
  font-family: 'Oswald', sans-serif;
  color: #ffde59;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  animation: promoTextZoom 2s ease-in-out infinite;
  display: inline-block;
}

.promo-banner-lines-left .promo-banner-top {
  transform-origin: left center;
}

.promo-banner-lines-right .promo-banner-top {
  transform-origin: right center;
}

.promo-banner-main {
  font-size: 35px;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.1;
  animation: promoTextZoom 2.5s ease-in-out infinite;
  animation-delay: 0.3s;
  display: inline-block;
}

.promo-banner-lines-left .promo-banner-main {
  transform-origin: left center;
}

.promo-banner-lines-right .promo-banner-main {
  transform-origin: left center;
}

.promo-banner-support {
  font-size: 17px;
  font-family: 'Roboto', sans-serif;
  color: #f3f3f3;
  font-weight: 400;
  margin-bottom: 0;
  animation: promoTextZoom 2.2s ease-in-out infinite;
  animation-delay: 0.6s;
  display: inline-block;
}

.promo-banner-lines-left .promo-banner-support {
  transform-origin: left center;
}

.promo-banner-lines-right .promo-banner-support {
  transform-origin: left center;
}

@keyframes promoTextZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes promoTextZoomCentered {
  0%, 100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.05);
  }
}

/* Animated promo banner text images */
.promo-banner-animated-text {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  z-index: 4;
  animation: promoTextZoom 2.5s ease-in-out infinite;
  pointer-events: none;
  align-self: center;
  justify-self: start;
}

.promo-banner-pizza-text {
  margin-left: 16px;
  max-width: 160px;
  width: auto;
  height: auto;
  transform-origin: left center;
  z-index: 5;
  animation: promoTextZoomCentered 2.5s ease-in-out infinite;
}

.promo-banner-off-text {
  align-self: flex-end;
  justify-self: start;
  margin-bottom: 4%;
  margin-left: 19%;
  max-width: 140px;
  width: auto;
  height: auto;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

.promo-banner-2:hover .promo-banner-off-text {
  transform: scale(1.1);
}

/* Food items group for banner 2 (black panel) */
.promo-banner-food-group {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  z-index: 3;
  pointer-events: none;
  align-self: flex-end;
  justify-self: flex-end;
}

.promo-banner-food-group-2 {
  margin-bottom: 10%;
  margin-right: 1%;
  display: flex;
  align-items: flex-end;
  gap: -35px;
  z-index: 4;
}

.promo-banner-food-item {
  width: auto;
  height: auto;
  transition: transform 0.3s ease;
}

.promo-banner-2:hover .promo-banner-food-item {
  transform: scale(1.1);
}

.promo-banner-burger {
  max-width: 240px;
  max-height: 240px;
  width: auto;
  height: auto;
  margin-right: -50px;
  z-index: 4;
}

.promo-banner-fries {
  max-width: 200px;
  max-height: 200px;
  width: auto;
  height: auto;
  z-index: 5;
}

@media (max-width: 768px) {
  .promo-banners-row {
    flex-direction: column;
    gap: 16px;
  }
  .promo-banner {
    width: 100%;
    min-width: 0;
    height: 297px;
    border-radius: 18px;
  }
  .promo-banner-img-wrap {
    padding: 18px;
  }
  .promo-banner-img {
    max-width: 120px;
    max-height: 120px;
  }
  .promo-banner-lines {
    padding: 0 18px;
  }
  .promo-banner-img-wrap-pizza {
    padding: 18px 18px 18px 0;
  }
  .promo-banner-pizza-img {
    max-width: 260px;
    max-height: 260px;
  }
  .promo-banner-pizza-text {
    max-width: 180px;
    margin-left: 20px;
  }
  .promo-banner-off-text {
    max-width: 100px;
    bottom: 10%;
    left: 4%;
  }
  .promo-banner-food-group-2 {
    bottom: 6%;
    right: 6%;
    gap: -30px;
  }
  .promo-banner-burger {
    max-width: 180px;
    max-height: 180px;
    margin-right: -40px;
  }
  .promo-banner-fries {
    max-width: 150px;
    max-height: 150px;
  }
}

@media (max-width: 600px) {
  .promo-banner {
    height: 216px;
    max-width: 100vw;
  }
  .promo-banner-img-wrap {
    padding: 8px;
  }
  .promo-banner-img {
    max-width: 80px;
    max-height: 80px;
  }
  .promo-banner-main {
    font-size: 21px;
  }
  .promo-banner-img-wrap-pizza {
    padding: 12px 12px 12px 0;
  }
  .promo-banner-pizza-img {
    max-width: 200px;
    max-height: 200px;
  }
  .promo-banner-pizza-text {
    max-width: 140px;
    margin-left: 16px;
  }
  .promo-banner-off-text {
    max-width: 80px;
    bottom: 8%;
    left: 3%;
  }
  .promo-banner-food-group-2 {
    bottom: 4%;
    right: 4%;
    gap: -25px;
  }
  .promo-banner-burger {
    max-width: 140px;
    max-height: 140px;
    margin-right: -35px;
  }
  .promo-banner-fries {
    max-width: 120px;
    max-height: 120px;
  }
}


