* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body{
    background-color: #f6f0e6;
  }

  .location-popup-backdrop {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.4); z-index: 9999;
  }
  .location-popup {
    font-family: "Regular";
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: #f6f0e6; padding: 2em; z-index: 10000; border-radius: 12px;
    max-width: 90vw; box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    text-align: center;
  }
 

  .location-popup h3, .location-popup h4 { margin: 0.5em 0; color: #000; }
  .location-popup button.loc-choice { font-family: "Bold"; display: block; margin: 0.5em auto; padding: 1em 2em; width: 100%; font-size: 1.2em; border-radius: 8px; border: 1px solid #000; background: #fff; cursor: pointer; color: #000; }
  .location-popup button.loc-choice:hover { background: #d62828; color: #fff; }
  .location-popup button#close-location-popup { margin-top: 1em; }
   @media (max-width: 768px) {
    .location-popup {
      max-width: 93vw; 
      width: 92vw;
    }

    .location-popup button.loc-choice { font-family: "Bold"; display: block; margin: 0.5em auto; padding: 1em 1em; width: 100%; font-size: 1.2em; border-radius: 8px; border: 1px solid #000; background: #fff; cursor: pointer; }
  
  
  }
  /* Fonts */

  @font-face {
    font-family: 'Regular';
    src: url('../../fonts/BebasNeuePro-Regular.woff2') format('woff2'),
         url('../../fonts/BebasNeuePro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Bold';
    src: url('../../fonts/BebasNeuePro-Bold.woff2') format('woff2'),
         url('../../fonts/BebasNeuePro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Light';
    src: url('../../fonts/BebasNeuePro-Light.woff2') format('woff2'),
         url('../../fonts/BebasNeuePro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Book';
    src: url('../../fonts/BebasNeuePro-Book.woff2') format('woff2'),
         url('../../fonts/BebasNeuePro-Book.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  #locationModal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  }

  #orderText {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    background-color: #e63946;
    color: white;
    transition: background 0.3s ease;
  }

  .btn:hover {
    background-color: #d62839;
  }

  .hidden {
    display: none;
  }

  small a {
    color: #0077cc;
    text-decoration: underline;
  }
  

/* ------------------- */
/* Navbar              */
/* ------------------- */

.mobile-menu, .hamburger{
  display: none;
}

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f6f0e6; /* Light beige */
    padding: 10px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #000;
    text-transform: uppercase;
    font-family: "Bold";
    line-height: normal;
    border-bottom: 1px solid black;
  }

  .navbar a{
    font-size: 1.5em;
    text-decoration: none;
    color: #000;
    display: inline-block;
    width: auto;
  }
  
  /* Left links */
  .navbar-left a {
    position: relative;           /* Needed for the ::after positioning */
    display: inline-flex;         /* Makes it wrap the text only */
    width: auto;                  /* Ensure no stretching */
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 1.5em;
    margin-right: 1.875em;
    padding: 0.5rem 0;            /* Adds vertical space */
    justify-content: center;      /* Center text horizontally in inline-flex */
  }
  

/* Create the underline as a pseudo-element */
.navbar-left a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px; /* adjust spacing under text */
  width: 0; /* starts hidden */
  height: 2px;
  background: #EEA633; /* yellow */
  transition: width 0.3s ease;
}

/* On hover, grow the underline under the text */
.navbar-left a:hover::after {
  width: 100%;
}
  
  /* Center logo */
  .navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(10%);
    padding: 0.5rem;
    z-index: 5;
  }
  
  .navbar-center .logo-nav {
    height: 100px;
    width: auto;
  }

  .navbar-center a .logo-nav {
    transition: transform 0.4s ease;
    display: block;
  }
  
  .navbar-center a:hover .logo-nav {
    transform: rotate(15deg);
  }
  
  /* Right side */
  .navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5em;
  }
  
  /* Location */
  .location-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5em;
    cursor: pointer;
    margin-right: 1em;
  }

  .nav-address-icon {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
  }
  
  /* Black icon underneath */
  .nav-address-icon-neutral {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* Yellow icon on top, hidden */
  .nav-address-icon-yellow {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  /* On hover, fade the yellow one in */
  .location-dropdown:hover .nav-address-icon-yellow  {
    opacity: 1;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 180px;
    display: none; /* Hidden by default */
    z-index: 10;
  }
  
  .dropdown-menu li {
    padding: 0;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #000;
    font-size: 1em;
  }
  
  .dropdown-menu li a:hover {
    background: #f6f0e6;
  }

  .location-dropdown:hover .dropdown-menu {
    display: block;
  }
  
  /* Order button */

  #red-btn{
    font-size: 1em;
    padding: 7px 15px;
    border-radius: 50px;
    border: 1px solid #000;
    background: #D91729;
    color: white;
    transition: background-color 0.3s ease;
  }

  #red-btn:hover {
    background-color: #b61a1f;
  }

  /* Hide hamburger by default on desktop */
.hamburger {
  display: none;
}

.navbar-location-mobile{
display: none;
}
  
/* Large Desktop (>1280px)   */

@media (min-width: 1281px) {
  .navbar {
    padding: 10px 60px;
  }

  .navbar a {
    font-size: 1.7em;
  }

  .navbar-center .logo-nav {
    height: 105px;
  }

  .navbar-location-mobile{
    display: none;
    }
}

/* Small Desktop / Large Tablet Landscape */

@media (max-width: 1280px) and (min-width: 1025px) {
  .navbar {
    padding: 10px 40px;
  }

  .navbar a {
    font-size: 1.5em;
  }

  .navbar-center .logo-nav {
    height: 100px;
  }
  .navbar-location-mobile{
    display: none;
    }
}


/* Tablet Portrait */

@media (max-width: 1024px) and (min-width: 769px) {
  .navbar {
    padding: 10px 20px;
  }

  .navbar a {
    font-size: 1.3em;
  }

  .navbar-left a {
    margin-right: 1.3em;
  }

  .navbar-center .logo-nav {
    height: 90px;
  }

  #red-btn {
    font-size: 0.95em;
    padding: 6px 12px;
  }
  .navbar-location-mobile{
    display: none;
    }
}

/* Small Tablet / Large Phone */

@media (max-width: 768px) {
  /* Hide left and right content */
  .navbar-left,
  .navbar-right {
    display: none;
  }

  /* Center logo stays on the left */
  .navbar-center {
    position: relative;
    left: auto;
    transform: none;
    padding: 0;
  }

  /* Shrink logo size */
  .navbar-center .logo-nav {
    height: 60px;
  }

  /* Show hamburger */
  .hamburger {
    display: block;
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #b61a1f;
  }

  /* Align logo left, hamburger right */
  .navbar {
    justify-content: space-between;
    padding: 7px 20px;
    align-items: center;
    width: 100vw;
  }

  .navbar-location-mobile {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #f4a621;
    color: #000;
    font-family: "Bold";
    font-size: 1.25em;
    padding: 8px 16px;
    border-bottom: 1px solid #000;
    z-index: 998;
    position: relative;
  }
  #nav-dropdown-arrow-mobile{
    width: 15px;
    height: 15px;
  }
  .navbar-location-mobile .nav-address-icon {
    display: flex;
    align-items: center;
    position: relative;
    width: 25px;
    height: 25px;
  }
  .navbar-location-mobile img {
    width: 25px;
    height: 25px;
    display: block;
  }
  .navbar-location-mobile .location-name {
    color: #d91729;
    font-weight: bold;
  }


/* Panels overlay */
.menu-panels {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10001;
}

.panel {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
}


.panel-yellow { background: #f4a020; }
.panel-red { background: #d91729; }
.panel-green { background: #046c4e; }
.panel-white { background: #fff; }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  background: #f6f0e6;
  width: 100%;
  height: 100%;
  z-index: 10002;
  padding: 60px 30px;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.mobile-menu li {
  margin: 40px 10px;
}

.mobile-menu a {
  font-size: 3rem;
  text-decoration: none;
  color: #000;
  font-family: "bold";
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-footer{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

#mobile-menu-order-now{
  padding: 7px 50px;
  background: #D91729;
  color: #fff;
  text-decoration: none;
  font-family: "Bold";
  font-size: 2em;
  border-radius: 50px;
  border: 1px solid #000;
  width: 95%;
}

.mobile-menu-social{
  padding: 45px;
}
}

/* ------------------- */
/* Hero Homepage       */
/* ------------------- */


.hero-homepage {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: -30px;
  /* z-index: -1; */
  width: 100%;
  height: 100svh; 
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; 
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Make picture/img fill the box */
.hero-background picture,
.hero-background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;              /* key: not auto */
  display: block;
}

.hero-background img {
  object-fit: cover;
  object-position: center;   /* adjust crop if needed */

  /* Safari friendliness for clip-path animation */
  -webkit-clip-path: circle(20% at 50% 50%);
  clip-path: circle(20% at 50% 50%);
  opacity: 1;
  animation: revealCircle 2s ease forwards;
  animation-delay: 0.5s;
}

/* The content on top */
.hero-homepage-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #D91729;
  opacity: 0;
  transform: scale(0.95); /* Start slightly smaller */
  animation: fadeZoomInContent 1s ease forwards;
  animation-delay: 0.5s; /* adjust timing if needed */
}


.hero-homepage-content h1{ 
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #D91729;
  text-align: center;
  font-family: "Bold";
  font-size: 6em;
  line-height: 100px;
  margin-bottom: 2.9em;
}


/* If your keyframes only set clip-path, add the prefixed one too */
@keyframes revealCircle {
  from { 
    -webkit-clip-path: circle(20% at 50% 50%);
            clip-path: circle(20% at 50% 50%);
  }
  to {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
}

/* Keyframes: expand the circle */
/*@keyframes revealCircle {*/
/*  to {*/
/*    clip-path: circle(150% at 50% 50%);*/
/*  }*/
/*}*/

@keyframes fadeZoomInContent {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#on-btn-hero-mobile {
  display: none;
}

#on-btn-hero{
  display: inline-flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #000;
  background: #D91729;
  text-decoration: none;
  color: #fff;
  font-family: "Bold";
  font-size: 2em;
  z-index: 10000;
  pointer-events: auto;
}

/* Small Tablet / Large Phone */

@media (max-width: 768px) {
    .hero-homepage {
  height: 68vh; 
  min-height: 520px;
}
    
    
  .hero-homepage-content h1{ 
    font-size: 4em;
    line-height: 65px;
    margin-bottom: 3em;
  }

  .hero-homepage-content{ 
    height: 100%;
  }

  #on-btn-hero-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    border-radius: 0;
    border-top: 1px solid #000;
    background: #D91729;
    color: #fff;
    font-family: "Bold";
    font-size: 1.5em;
    text-decoration: none;
    z-index: 10000; 
  }
  
  #on-btn-hero{
    display: none;
  }
}

.banner-discount{
  background: #006848;
  height: 50px;
  width: 100%;
  border: 1px solid #000;
  color: #FFF;
  text-align: center;
  font-family: "Light";
  font-size: 1.2em;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-discount span{
  font-family: "Bold";
}

/* ------------------- */
/* Best Sellers        */
/* ------------------- */


.best-sellers-hp {
  padding: 4rem 1rem;
  text-align: center;
  background: #fdf9f1;
}

.best-sellers-hp h2 {
  font-family: "Bold";
  color: #D91729;
  font-size: 3.5em;
}

.best-sellers-hp p {
  font-family: "Bold";
  font-size: 2em;
  margin-bottom: 0.7em;
}

.products-hp {
  margin-top: 4em;
}

.product-hp {
  text-align: center;
  opacity: 0;
  max-width: 300px;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-hp.is-visible {
  opacity: 1;
  transform: scale(1);
}

.product-image-hp {
  position: relative;
  display: inline-block;
  height: 200px;
  min-height: 200px;
}

.product-image-hp img {
  width: 280px;
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

/* Badge container */
.badge-hp {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
}

/* Badge SVG itself */
.badge-hp img {
  width: 100%;
  height: 100%;
  display: block;
}

/* When hovered, start spinning infinitely */
.product-hp:hover .badge-hp img {
  animation: spinBadge 7s linear infinite;
}

.product-hp:hover .product-image-hp img {
  transform: scale(1.1);
}

/* Keyframes to rotate full circle */
@keyframes spinBadge {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Text over badge */
.badge-hp .badge-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 0.8em;
  font-family: "Book";
  line-height: 1.2;
  font-weight: bold;
  padding: 0.2em;
}

.product-hp h3 {
  font-family: "Bold";
  font-size: 2.5em;
  margin: 1rem 0 0.3rem;
}

.product-hp p {
  font-family: "Regular";
  font-size: 1.1em;
}

.price-hp {
  font-family: "Bold";
  margin-top: 1.4em;
}

.start-order-btn-hp {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background: #d91729;
  color: #fff;
  text-decoration: none;
  font-family: "Bold";
  font-size: 1.2em;
  border-radius: 50px;
  transition: background 0.3s;
  border: 1px solid #000;
}
.start-order-btn-hp:hover {
  background: #b61a1f;
}

/* Animation Keyframes */
@keyframes fadeScaleIn-hp {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Large Desktop (>1280px)   */

@media (min-width: 1281px) {
  .products-hp {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
  }
}

/* Small Desktop / Large Tablet Landscape */

@media (max-width: 1280px) and (min-width: 1025px) {
  .products-hp {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
  }

}


/* Tablet Portrait */

@media (max-width: 1024px) and (min-width: 769px) {
  .products-hp {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .product-hp {
    max-width: 220px;
  }

  .product-image-hp img {
    width: 200px;
  }

  .product-hp h3 {
    font-size: 1.7em;
  }

}

/* Small Tablet / Large Phone */

@media (max-width: 768px) {
  .best-sellers-hp h2 {
    font-size: 3.2em;
    line-height: 50px;
  }

  .best-sellers-hp p {
    font-size: 1.7em;
  }

  .products-hp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .product-hp h3 {
    font-size: 2em;
  }

  .product-hp p {
    font-size: 1.1em;
  }

  .price-hp {
    margin-top: 1em;
  }

}

/* ------------------- */
/* Rewards             */
/* ------------------- */

.rewards-section-hp {
  padding: 4rem 1em;
  background: #fdf9f1;
  text-align: center;
}

.rewards-header-hp {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.rewards-header-hp .rewards-icon {
  width: 90px;
  margin-bottom: 1rem;
}

.rewards-header-hp h2 {
  font-family: "Bold";
  color: #006848;
  font-size: 3.6em;
}

.rewards-stars-hp {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.star-hp {
  position: relative;
  width: 200px;
}

.star-hp img {
  width: 100%;
  display: block;
}

.star-hp p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Bold";
  font-size: 1.4em;
  color: #000;
  line-height: 1.2;
}

.rewards-tiers-hp {
  display: flex;
  justify-content: center;
  gap: 12rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.tier-hp {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tier-hp:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: #000;
}

.tier-hp p {
  font-family: "Bold";
  font-size: 2em;
  color: #006848;
  margin-bottom: 0.3rem;
}

.tier-hp strong {
  font-family: "Bold";
  font-size: 2.5em;
  color: #006848;
}

.rewards-section-hp {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.rewards-section-hp.is-visible {
  opacity: 1;
  transform: scale(1);
}


/* Large Desktop (>1280px)   */

@media (min-width: 1281px) {

  .rewards-stars-hp {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem;
    margin-bottom: 3rem;
  }
  
  .star-hp {
    position: relative;
    width: 270px;
  }
  
  .star-hp p {
    font-size: 1.8em;
  }
}

/* Small Desktop / Large Tablet Landscape */

@media (max-width: 1280px) and (min-width: 1025px) {

}


/* Tablet Portrait */

@media (max-width: 1024px) and (min-width: 769px) {
  .rewards-stars-hp {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .rewards-tiers-hp {
    display: flex;
    justify-content: center;
    gap: 8rem;
    flex-wrap: wrap;
    margin-top: 3rem;
  }

  .tier-hp:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -4rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: #000;
  }
}

/* Small Tablet / Large Phone */

@media (max-width: 768px) {
.rewards-section-hp {
  padding: 1rem 1em;
}
    
  .rewards-header-hp .rewards-icon {
    width: 60px;
  }

  .rewards-header-hp h2 {
    font-size: 3em;
    width: 80%;
    line-height: 44px;
  }

  .rewards-stars-hp {
    gap: 1rem;
  }

  .rewards-tiers-hp {
    gap: 1.2rem;
  }

  .tier-hp p {
    font-size: 1.2em;
    margin-bottom: 0.3rem;
  }
  
  .tier-hp strong {
    font-size: 1.7em;
  }

  .tier-hp:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: #000;
  }

}


.rewards-marquee-hp {
  width: 100%;
  overflow: hidden;
  background: #006848;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: scroll-marquee 20s linear infinite;
}

.rewards-marquee-hp:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-content span {
  font-family: "Bold";
  color: #fff;
  font-size: 5em;
}

.marquee-content .join-btn {
  display: inline-block;
  padding: 0.3em 1.2em;
  margin: 0 0.7rem;
  border-radius: 50px;
  background: #F4A621;
  border: 1px solid #000;
  color: #000;
  font-family: "Bold";
  font-size: 1.8em;
  text-decoration: none;
  white-space: nowrap;
}

/* Scrolling animation */
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Small Tablet / Large Phone */

@media (max-width: 768px) {
  .marquee-content span {
    font-size: 3.5em;
  }
}

/* ------------------- */
/* LTO                 */
/* ------------------- */

.lto-slider-hp {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  overflow: hidden;
  min-height: 650px;
}

.slider-container {
  min-height: 550px;
  display: flex;
  transition: transform 0.5s ease;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  scroll-snap-align: start;
}

.lto-content {
  text-align: center;
  position: relative;
  margin-top: 50px;
}

.lto-image {
  max-width: 600px;
  width: 80%;
  height: auto;
}

.price-badge {
  position: absolute;
  top: 10%;
  right: -15%;
  width: 130px;
  height: auto;
}

.price-badge img {
  width: 100%;
  height: 100%;
  display: block;
  animation: spinInfinite 15s linear infinite;
}

@keyframes spinInfinite {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.price-badge .price-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Bold";
  font-size: 2.5em;
  color: black;
  text-align: center;
}

.lto-text h3 {
  font-family: "Bold";
  font-size: 4em;
  color: white;
  margin: 0.5rem 0 0.1rem;
}

.lto-text p {
  font-family: "Book";
  font-size: 1.8em;
  color: white;
}

.lto-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background: #F4A621;
  color: #000;
  font-family: "Bold";
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid #000;
  font-size: 1.5em;
}

/* Arrows */

/* Base Arrow Styles */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

/* The images inside arrows */
.arrow img {
  width: 40px; /* or adjust size */
  height: auto;
  display: block;
}

/* Left arrow positioning */
.arrow.prev {
  left: 25px;
}

/* Right arrow positioning */
.arrow.next {
  right: 25px;
}


/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5em;
}
.dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
}
.dots button.active {
  opacity: 1;
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.slider-container::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.slider-container {
  scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for IE, Edge */
.slider-container {
  -ms-overflow-style: none; /* Internet Explorer and Edge */
}

/* Small Tablet / Large Phone */

@media (max-width: 768px) {
  .lto-slider-hp {
    min-height: 550px;
  }

  .lto-image {
    max-width: 550px;
    width: 75%;
    height: auto;
  }

  .price-badge {
    position: absolute;
    top: -8%;
    right: 6%;
  }

  .lto-text h3 {
    font-size: 3em;
  }

  .lto-text p {
    font-size: 1.4em;
  }

}



.ig-feed {
  padding: 60px 20px;
  text-align: center;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ig-feed.visible {
  opacity: 1;
  transform: scale(1);
}

#section-subtitle {
  font-size: 2em;
  font-family: 'Bold';
  margin-bottom: 1em;
}

#section-title {
  line-height: 1em;
  font-size: 3.5em;
  color: #D91729;
  font-family: 'Bold';
}

.ig-feed-header p {
  font-size: 1.5em;
  font-family: 'Regular';
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
  margin: 40px auto;
  max-width: 900px;
}

.ig-item img {
  width: 100%;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s ease;
  border: #000 1px solid;
}

.ig-item:hover img {
  transform: scale(1.05);
}

.ig-socials {
  margin-top: 40px;
}

.ig-socials p {
  font-size: 1.4em;
  font-family: "Regular";
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon-wrapper {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
}

.icon-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  transition: opacity 0.3s ease;
}

.icon-default {
  opacity: 1;
}

.icon-hover {
  opacity: 0;
}

.icon-wrapper:hover .icon-default {
  opacity: 0;
}

.icon-wrapper:hover .icon-hover {
  opacity: 1;
}


/* Responsive adjustments */

/* Large Desktop (>1280px) */
@media (min-width: 1281px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small Desktop / Large Tablet Landscape */
@media (max-width: 1280px) and (min-width: 1025px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Portrait */
@media (max-width: 1024px) and (min-width: 769px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 750px;
  }
}

/* Small Tablet / Large Phone */
@media (max-width: 768px) {
  .ig-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 340px;
  }
  .ig-item:nth-child(n+4) {
    display: none;
  }
}




.catering-hp {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.catering-bg {
  background-color: #EEA633;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 400px;
  width: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  z-index: 1;
}


.catering-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.catering-text {
  max-width: 500px;
  color: #000;
  z-index: 2;
  padding-left: 80px;
}

.catering-text h2 {
  font-family: "Bold";
  font-size: 4.5em;
  line-height: 0.7em;
}

.catering-text h3 {
  font-family: "Bold";
  font-size: 3em;
  margin: 0;
}

.catering-text p {
  font-family: "Book";
  font-size: 1.5em;
  margin: 0 0 1em;
}

#catering-note {
  font-size: 0.8em;
  margin-top: 0.5em;
}

.catering-btn {
  display: inline-block;
  background: #d91729;
  color: #fff;
  font-family: "Bold";
  font-size: 1.2em;
  padding: 0.8em 2em;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid #000;
  transition: background 0.3s;
}

.catering-btn:hover {
  background: #b61a1f;
}

/* Image container */
.catering-image {
  position: relative;
  z-index: 3;
}

.catering-image img {
  width: 650px;
  height: auto;
  display: block;
}

/* Hidden by default */
.catering-text,
.catering-image {
  opacity: 0;
  transform: translateY(0);
  transition: all 1s ease;
}

/* Text from left */
.catering-text {
  transform: translateX(-50px);
}

/* Image from right */
.catering-image {
  transform: translateX(50px);
}

/* Visible state triggers animation */
.catering-text.is-visible,
.catering-image.is-visible {
  opacity: 1;
  transform: translateX(0);
}


/* Responsive adjustments */

/* Large Desktop (>1280px)   */

@media (min-width: 1281px) {
  .catering-image img {
    width: 650px;
  }

  .catering-text {
    padding-left: 160px;
  }
  
  .catering-text h2 {
    font-size: 5em;
    line-height: 0.8em;
  }
  
  .catering-text h3 {
    font-size: 3.5em;
  }

  .catering-bg {
    height: 500px;
  }

  .catering-text {
    max-width: 800px;
  }

}

/* Small Desktop / Large Tablet Landscape */

@media (max-width: 1280px) and (min-width: 1025px) {
  .catering-image img {
    width: 600px;
  }

  .catering-text {
    padding-left: 80px;
  }
  
  .catering-text h2 {
    font-size: 4.5em;
    line-height: 0.7em;
  }
  
  .catering-text h3 {
    font-size: 3em;
  }

  .catering-bg {
    height: 400px;
  }
}


/* Tablet Portrait */

@media (max-width: 1024px) and (min-width: 769px) {
  .catering-image img {
    width: 480px;
  }

  .catering-text {
    padding-left: 80px;
  }
  
  .catering-text h2 {
    font-size: 4.5em;
    line-height: 0.7em;
  }
  
  .catering-text h3 {
    font-size: 3em;
  }

  .catering-bg {
    height:360px;
  }
}

/* Small Tablet / Large Phone */

@media (max-width: 768px) {
  .catering-bg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 700px;
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    z-index: 1;
  }

  .catering-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 2;
    flex-direction: column;
  }

  .catering-text {
    max-width: 600px;
    padding: 30px 40px;
    margin-top: 60px;
  }

  .catering-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .catering-text h2 {
    font-size: 3.8em;
    line-height: 0.7em;
  }
  
  .catering-text h3 {
    font-size: 2.7em;
  }
  
  .catering-text p {
    font-size: 1.2em;
  }

}

.reviews-section {
  margin: 40px 0;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.reviews-header p {
  font-size: 1rem;
  color: #222;
  margin: 10px 0 30px;
}

/* Carousel container */
.reviews-carousel {
  margin-top: 50px;
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

/* Track that moves */
.reviews-track {
  display: flex;
  gap: 40px;
  animation: scrollReviews 40s linear infinite;
}

/* Each item */
.review-item {
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
}

.review-star {
  position: relative;
  width: 100%;
  height: 95px;
  margin-bottom: 0px;
}

.review-star .star-bg {
  width: 100%;
  height: auto;
  display: block;
}

.review-star .guy-icon {
  position: absolute;
  top: 70%;
  left: 50%;
  width: 40px;
  height: auto;
  transform: translate(-50%, -50%);
}

/* Review text */
.review-item p {
  font-family: 'Regular';
  font-size: 1em;
  color: #222;
  line-height: 1.4;
  position: relative;
  z-index: 100;
  margin: 0 auto;
  width: 73%;
}

#review-item-red{
  color: #D91729;
}

#review-item-yellow{
  color: #EEA633;
}

#review-item-green{
  color: #006848;
}

/* Keyframes for scrolling */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

/* Small Tablet / Large Phone */

@media (max-width: 768px) {
  #section-subtitle {
    font-size: 1.2em;
  }
  
  #section-title {
    line-height: 1em;
    font-size: 3em;
    color: #D91729;
    font-family: 'Bold';
  }
  
}


.locations-section {
  background: #d62828; /* red background */
  padding: 60px 40px;
  color: #fff;
  text-align: center;
}

.locations-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.locations-header .text-group {
  text-align: left;
}

.locations-header div {
  color: #FFF;
  font-family: "Bold";
  font-size: 64px;
  line-height: 45px;
  margin: 0;
}

.locations-header p {
  margin: 5px 0 0;
  font-size: 32px;
  font-family: "Book";
}

.all-locations-button {
  background: #f4a020;
  color: #000;
  font-family: "Bold";
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #000;
  transition: background 0.3s ease;
}

.all-locations-button:hover {
  background: #e3961c;
}

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

.location-card-hp {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.location-background {
  position: relative;
  border: 1px solid #000;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  padding: 8px;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
}

.location-info {
  background: #fff;
  border: 1px solid #000;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.text-info {
  text-align: left;
  max-width: 70%;
}

.text-info h2 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  color: #d62828;
  font-family: "Bold";
}

.text-info p {
  font-family: "Regular";
  margin: 4px 0;
  font-size: 0.9rem;
  color: #000;
  line-height: 1.3;
}

.rotating-badge {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background-color: #EEA633;
  border: 1px solid #d62828;
  border-radius: 50%;
  padding: 5px;
}

.circle-text {
  width: 100%;
  height: 100%;
  animation: rotate 15s linear infinite;
}

.guy-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.order-button {
  margin-top: 8px;
  display: block;
  text-align: center;
  background: #046c4e;
  font-family: "Bold";
  font-size: 1.6em;
  color: #fff;
  font-weight: bold;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  border: 1px solid #000;
}

.order-button:hover {
  background: #03553d;
}

/* Tablet Portrait */

@media (max-width: 1024px) and (min-width: 769px) {
  .rotating-badge {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .locations-header div {
    font-size: 42px;
    line-height: 40px;
  }

  .locations-header p {
    font-size: 28px;
  }

  .all-locations-button {
    font-size: 1.5em;
  }
  
  .locations-section {
  padding: 60px 30px;
 }
}



.footer {
  padding: 0;
  color: #000;
}

.footer-top {
  background-color: #fff;
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;  
  background-attachment: fixed;
  width: 100%;
  height: 10vh;
}

.footer-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: center; */
  height: 212px;
  padding: 0;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}

.footer-content {
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
  align-items: start;
  width: 65%;
}

.footer-logo {
  width: 140px;
  height: auto;
}

.footer-column-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Bold";
  font-size: 1.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin: 5px 0;
  font-family: "Regular";
  font-size: 1.2rem;
}

.footer-column a {
  text-decoration: none;
  color: #000;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Social icons */
.social-icons-footer {
  display: grid;
  grid-template-columns: repeat(2, 40px);
  gap: 10px;
}

.icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
}

.icon-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.icon-wrapper .default {
  opacity: 1;
}

.icon-wrapper .hover {
  opacity: 0;
}

.icon-wrapper:hover .default {
  opacity: 0;
}

.icon-wrapper:hover .hover {
  opacity: 1;
}

/* CTA buttons */
.footer-cta{
  height: 100%;
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 0;
  font-family: "Bold";
  text-decoration: none;
  border-left: 1px solid #000;  
}

.footer-cta .footer-column-title{
  padding: 20px 0 0 20px; 
}

.cta-line{
  height: 1px;
  background: #000;
  width: 100%;
}

.green-button {
  display: inline-block;
  background: #046c4e;
  color: #fff;
  padding: 7px 20px;
  width: 90%;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #000;
  text-decoration: none;
  font-family: "Bold";
  font-size: 1.5em;
  margin-left: 20px;
  text-align: center;
}

.green-button:hover {
  background: #03553d;
}

.yellow-button {
  margin-left: 20px;
  background: #f4a020;
  color: #000;
  width: 90%;
  padding: 7px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #000;
  text-decoration: none;
  font-family: "Bold";
  font-size: 1.5em;
  text-align: center;
}

.yellow-button:hover {
  background: #d98c00;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}

.footer-bottom nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #000;
  padding: 10px;
  font-family: "Book";
}

.footer-bottom nav a:hover {
  text-decoration: underline;
}

#footer-bottom-txt{
  font-family: "Book";
}

/* Small Desktop / Large Tablet Landscape */

@media (max-width: 1280px) and (min-width: 1025px) {
  .footer-content {
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    align-items: start;
    width: 75%;
  }
  
  /* CTA buttons */
  .footer-cta{
    width: 25%;
  }

  .green-button , .yellow-button{
    width: 90%;
    font-size: 1.3em;
    margin: 0 20px;
  }
}


/* Tablet Portrait */

@media (max-width: 1024px) and (min-width: 769px) {
  .footer-logo {
    width: 90px;
    height: auto;
  }

  .footer-content {
    padding: 20px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
    align-items: start;
    width: 70%;
  }

  .footer-column-title {
    font-size: 1.1rem;
  }
  
  /* CTA buttons */
  .footer-cta{
    width: 30%;
  }

  .green-button , .yellow-button{
    width: 90%;
    font-size: 1em;
    margin: 0 20px;
  }
}

/* Small Tablet / Large Phone */

@media (max-width: 768px) {
  .footer-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 675px;
    padding: 0;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
  }

  .footer-content {
    padding: 40px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 0;
    align-items: start;
    width: 100%;
  }

  .footer-cta{
    border-top: 1px solid #000;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .footer-cta .footer-column-title{
    padding: 15px 0 0 30px; 
    line-height: 20px;
  }

  .footer-bottom{
    margin-bottom: 70px;
    text-align: center;
  }

}


                                      /* ------------------- */
                                      /* MENU WEEBPAGE       */
                                      /* ------------------- */


.best-sellers-hp-menu{
  margin-top: 2.5em;
}

/* ------------------- */
/* Grab Yours CTA      */
/* ------------------- */

.line-pattern{
  width: 100%;
  margin: 0;
  padding: 0;
  height: auto;
  min-width: 100%;
}

.grab-yours-cta {
  display: inline-flex;
  align-items: center;
  color: #e50021;
  margin-top: 8px;
  font-size: 1em;
  font-family: "Bold";
  transition: color 0.3s ease;
  border-bottom: 1.5px solid #e50021;
  text-decoration: none;
  margin-left: 10px;
}

.grab-yours-cta:hover {
  color: #b0001a;
  border-bottom: 1.5px solid #e50021;
}

.grab-yours-cta .arrow-icon {
  width: 16px;
  height: auto;
  transition: transform 0.3s ease;
}

.tmg-menu {
  padding: 2rem;
  text-align: center;
}

.tmg-menu h2{
  font-size: 3.5em;
  font-family: "Bold";
}

.menu-scroll-wrapper {
  margin: auto;
  padding: 0 25px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 9999px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 1rem;
  overflow: hidden;
  max-width: 80%;
}

.menu-scroll-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;
  margin: 0 2rem;
}

.menu-item {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 0 20px;
}

.menu-item img {
  width: 33px;
  height: auto;
  margin-bottom: 5px;
}

.menu-item span {
  text-align: center;
  font-family: "Regular";
  font-size: 1.35em;
}

.menu-item.active {
  opacity: 1;
}

.menu-item .underline {
  width: 0%;
  height: 2px;
  background-color: #f28c00; /* or #000 if you prefer */
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.menu-item.active .underline {
  width: 80%;
}

.scroll-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn-left{
  transform: scaleX(-1);
}

.scroll-btn img {
  width: 40px;
  height: 40px;
}
.category-content {
  font-family:"Bold";
  margin: 2em auto;
  font-size: 1.1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 850px; /* Optional limit */
  gap: 3rem 2rem;
  justify-content: center;
  padding: 0 1rem;
  text-align: left;
}

.menu-item-block {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0eae4;
}

.menu-item-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.menu-item-info {
  flex: 1;
  text-align: left;
}

.menu-item-info h3 {
  font-size: 1.25rem;
  font-family: "Bold";
  margin-bottom: 0.4em;
}

.menu-item-info p {
  font-size: 0.95rem;
  font-family: "Regular";
  margin-bottom: 0.5em;
}

.menu-item-info .price-hp{
  margin-bottom: 0.5em;
  margin-top: 0;
}

.menu-item-info .grab-yours-cta{
  margin-left: 0;
}

/* Tablet Portrait */

@media (max-width: 1024px) and (min-width: 769px) {
  .menu-scroll-wrapper {
    max-width: 90%;
  }

}

/* Small Tablet / Large Phone */

@media (max-width: 768px) {
  .menu-scroll-wrapper {
    min-width: 100vw;
    border-radius: 0px;
    padding: 0 10px;
  }
  .tmg-menu {
    margin-top: 2em;
    padding: 0;
  }
  .menu-scroll-container {
    display: flex;
    gap: 0.3rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.7rem 0;
    margin: 0 0.3rem;
  }
  .scroll-btn img {
    width: 30px;
    height: 30px;
  }
}


.limited-offers {
  text-align: center;
  padding: 4rem 3rem;
  background-color: #fdfaf6;
}

#section-title {
  font-size: 3.5em;
  color: #d8232a;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

#section-subtitle {
  font-size: 2em;
  font-weight: 500;
  color: #222;
  margin-bottom: 1rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5%;
  justify-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 3em auto 0 auto;
  position: relative;
}

/* Divider lines only on large screens */
@media (min-width: 1030px) {
  .offers-grid::before,
  .offers-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: black;
  }

  .offers-grid::before {
    left: 33.33%;
  }

  .offers-grid::after {
    left: 66.66%;
  }
}

@media (max-width: 1029px) {
  .offers-grid::before,
  .offers-grid::after {
    display: none;
  }
}

/* When hovered, start spinning infinitely */
.offer-card:hover .offer-badge {
  animation: spinBadgeLTO 7s linear infinite;
}

.offer-card:hover .offer-image img {
  transform: scale(1.1);
} 

/* Keyframes to rotate full circle */
@keyframes spinBadgeLTO {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.offer-card {
  max-width: 290px;
  border-radius: 1rem;
  transition: transform 0.2s ease-in-out;
  position: relative;
}

/* IMAGE */
.offer-image {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #000;
  height: 360px;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* BADGE OUTSIDE IMAGE */
.offer-badge-wrapper {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  z-index: 5;
}

.offer-badge {
  width: 120pxpx;
  height: 120px;
}

.badge-label {
  position: absolute;
  top: 35px;
  left: 20px;
  width: 80px;
  font-size: 1.5em;
  font-weight: bold;
  z-index: 6;
  pointer-events: none;
  color: #FFF;
  text-align: center;
  font-family: "Bold";
  line-height: 25px; /* 107.143% */
}

/* TEXT */
.offer-title {
  color: #000;
  text-align: center;
  font-family: "Bold";
  font-size: 2em;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.offer-description {
  color: #000;
  text-align: center;
  font-family: "Regular";
  font-size: 1.2em;
}

.offer-price {
  color: #000;
  text-align: center;
  font-family: "Bold";
  font-size: 1.2em;
  margin: 15px;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  #section-title {
    font-size: 2rem;
  }

  #section-subtitle {
    font-size: 1.1rem;
  }

  .offer-description {
    font-size: 1rem;
  }

  .offer-badge-wrapper {
    width: 70px;
    top: -16px;
    left: -16px;
  }

  .badge-label {
    font-size: 0.5rem;
    width: 52px;
    top: 10px;
    left: 8px;
  }

  .badge-label {
    position: absolute;
    top: 35px;
    left: 20px;
    width: 80px;
    font-size: 1.5em;
    font-weight: bold;
    z-index: 6;
    pointer-events: none;
    color: #FFF;
    text-align: center;
    font-family: "Bold";
    line-height: 25px; /* 107.143% */
  }
}

@media (max-width: 480px) {
  .limited-offers {
    padding: 3rem 1rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    width: 100%;
    max-width: 100%;
  }

  .offer-description {
    margin: 0 0.5rem 0.75rem;
  }

  .offer-image {
    height: auto;
  }

  .badge-label {
    position: absolute;
    top: 35px;
    left: 20px;
    width: 80px;
    font-size: 1.5em;
    font-weight: bold;
    z-index: 6;
    pointer-events: none;
    color: #FFF;
    text-align: center;
    font-family: "Bold";
    line-height: 25px; /* 107.143% */
  }

  .offer-image {
    height: 450px;
  }

  .limited-offers {
    min-height: 2300px;
  }
}

                                      /* ------------------- */
                                      /* LOCATIONS WEBPAGE  */
                                      /* ------------------- */



.location-hero {
  background-color: #EEA633;
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.location-hero h3{
  margin-top: 1.25em;
  color: #D91729;
  text-align: center;
  font-family: "Bold";
  font-size: 4em;
}

.location-hero p {
  color: #000;
  text-align: center;
  font-family: "Bold";
  font-size: 1.8em;
  margin-top: 0.5rem;
}

.location-details {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.location-card{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  background-color: #fff;
  border-radius: 12px;
  border: #000 1px solid;
  overflow: hidden;
  padding: 1em;
  min-width: 1000px;
  align-items: stretch; 
}

.location-image {
  width: 50%;
  flex: 1 1 0; 
}

.location-image img {
  width: 100%;
  height:auto;          
  display:block; 
  border-radius: 12px;
  object-fit: cover;
  border: #000 1px solid;
  aspect-ratio: 4 / 3; 
}

.location-txt {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 50%;
}

.location-txt h2 {
  color: #D91729;
  font-family: "Bold";
  font-size: 3em;
  margin-bottom: 1rem;
}

.location-txt p {
  margin: 0.5rem 0;
  color: #000;
  font-family: "Regular";
  font-size: 1.4em;
  display: flex;
  align-items: center;
}

.location-txt a {
  color: #000;
}

.location-txt-icon{
  width: 25px;
  height: auto;
  margin-right: 10px;
}

.map-container iframe {
  margin-top: 10px;
  width: 100%;
  height: 280px; 
  border: 1px solid #000;
}


#order-btn-location {
  display: inline-block;
  margin-top: 10px;
  background-color: #007a4e;
  color: white;
  width: 100%;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  padding: 0.2em;
  transition: background 0.3s ease;
  text-align: center;
  font-family: "Bold";
  font-size: 1.8em;
  border: #000 1px solid;
}

#order-btn-location a{
  color: white;
}

.order-btn:hover {
  background-color: #005e3a;
}

/* Responsive adjustments */

/* Large Desktop (>1280px) */
@media (min-width: 1281px) {

}

/* Small Desktop / Large Tablet Landscape */
@media (max-width: 1280px) and (min-width: 1025px) {

}

/* Tablet Portrait */
@media (max-width: 1024px) and (min-width: 860px) {
  .location-details {
    max-width: 800px;
  }
  
  .location-card{
    min-width: 800px;
  }
}

@media (max-width: 860px) and (min-width: 769px) {
  .location-details {
    max-width: 700px;
  }
  
  .location-card{
    min-width: 700px;
  }

}

/* Small Tablet / Large Phone */
@media (max-width: 768px) {
  .location-hero h3{
  margin-top: 0.2em;
  font-size: 3em;
}

.location-hero p {
  font-size: 1.35em;
  margin-top: 0.5rem;
}
    
  .location-details {
    max-width: 600px;
  }

  .location-card{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow: hidden;
    padding: 0.6em;
    max-width: 600px;
    min-width: 100px;
  }

  .location-image {
    max-height: 300px;
    width: 100%;
    margin-bottom: 0;
  }

  .location-image img {
    width: 100%;
  }

  .location-txt {
    width: 100%;
  }

  .location-txt h2 {
    font-size: 2.5em;
    margin-bottom: 0.3rem;
    margin-left: 0.2em;
  }

  .location-txt p {
    margin: 0.2rem 0;
    font-size: 1.2em;
  }

  .map-container iframe {
    height: 200px; 
  }

}


#contact {
    background-color: #EEA633;

  padding: 14rem 2rem 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}

.form-container {
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
  max-width: 1100px;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-text {
  max-width: 450px;
  width: 40%;
  color: #000;
  font-family: "Inter", sans-serif;
}

.contact-text h2 {
  color: #D91729;
  font-size: 4em;
  margin-bottom: 1rem;
  font-family: "Bold";
}

.contact-text p {
  font-size: 1.5em;
  font-family: "Regular";
}

.contact-form-card {
  background-color: #fff;
  padding: 3rem 1.2rem 2rem 1.2rem;
  border-radius: 20px;
  max-width: 700px;
  width: 60%;
  position: relative;
  border: 1px solid #000;
  font-family: "Inter", sans-serif;
}

.guac-burst-wrapper {
  position: absolute;
  top: -75px;
  right: -50px;
  width: 150px;
  height: 150px;
}

.guac-burst {
  width: 100%;
  height: auto;
  display: block;
}

.guac-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-family: "Bold";
  line-height: 1.1;
  width: 100%;
}

.guac-text span {
  display: block;
  font-size: 22px;
}

.guac-text small {
  display: block;
  font-size: 18px;
}


form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  border-radius: 6px;
  font-family: "Regular";
}

textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 100px;
}

.favorite-color-silly {
  display: none; /* honeypot field hidden from users */
}

.form-note {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
  font-family: "Light";
}

.form-note a {
  color: #000;
  text-decoration: underline;
  font-family: "Regular";
}

.submit-btn {
  font-family: "Bold";
  background-color: #007a4e;
  color: white;
  border: 1px solid #000;
  padding: 0.5rem 5rem;
  font-size: 1.8em;
  border-radius: 999px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #005e3a;
}

.submit-btn.submitting {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Overlay styling */
#overlay-contact {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#overlay-contact-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

#overlay-message {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

#overlay-contact-close {
  background: #D91729;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

#overlay-contact-close:hover {
  background: #a61220;
}

/* Small Desktop / Large Tablet Landscape */
@media (max-width: 1280px) and (min-width: 1025px) {

  .form-container {
    max-width: 1000px;
  }

  .contact-text {
    width: 40%;
  }

  .contact-form-card {
    width: 50%;
  }

  .guac-burst-wrapper {
    position: absolute;
    top: -55px;
    right: -20px;
    width: 130px;
    height: 130px;
  }

  .guac-text span {
    font-size: 20px;
  }
  
  .guac-text small {
    font-size: 16px;
  }
}

/* Tablet Portrait */
@media (max-width: 1024px) and (min-width: 860px) {
  #contact {
    padding: 7rem 2rem 6rem 2rem;
  }

  .contact-text {
    max-width: 650px;
    width: 100%;
    color: #000;
    text-align: center;
  }

  .contact-text h2 {
    font-size: 3em;
    margin-bottom: 0.6rem;
    font-family: "Bold";
  }

  .contact-text p {
    font-size: 1.35em;
    width: 60%;
    margin: 0 auto 2em auto;
  }

  .guac-burst {
    width: 140px;
  }

  .guac-burst-wrapper {
    position: absolute;
    top: -75px;
    right: -20px;
    width: 140px;
    height: 140px;
  }

  .guac-text span {
    font-size: 21px;
  }
  
  .guac-text small {
    font-size: 17px;
  }

}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .form-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-text,
  .contact-form-card {
    max-width: 100%;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-text {
    text-align: center;
  }
}

/* Small Tablet / Large Phone */
@media (max-width: 859px) {
  #contact {
    padding: 3rem 1rem 5rem 1rem;
  }

  .contact-text {
    max-width: 500px;
    width: 90%;
  }

  .contact-text h2 {
    font-size: 3.5em;
  }

  .contact-text p {
    font-size: 1.2em;
  }

  .contact-form-card {
    margin-top: 2em;
    padding: 2rem 1rem 2rem 1rem;
    width: 90%;
  }

  .guac-burst-wrapper {
    position: absolute;
    top: -60px;
    right: -25px;
    width: 120px;
    height: 120px;
  }

  .guac-text span {
    font-size: 18px;
  }
  
  .guac-text small {
    font-size: 16px;
  }
}



#faq-section {
  max-width: 850px;
  margin: 40px auto;
  padding: 2rem 1rem;
  min-height: 850px;
}

.faq-title {
  font-family: "Bold";
  font-size: 4rem;
  margin-bottom: 2rem;
  color: #D91729;
}

.faq-item {
  border-bottom: 1px solid #333;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: "Bold";
  font-size: 1.7em;
  color: #000;
}

.faq-question:hover {
  background-color: #f9f1e6;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  color: #000;
  font-family: "Regular";
  font-size: 1.15em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}

.faq-answer a{
  color: #000;
  font-family: "Bold";
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Adjust depending on content */
  padding-bottom: 1rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg); /* Turn ▾ into an X */
  content: "✕";
}

/* Small Tablet / Large Phone */
@media (max-width: 768px) {

  .faq-title {
    font-size: 3.5em;
  }

  #faq-section {
    padding: 2rem 1.5rem;
  }
}



/* ===== CONTACT SECTION WRAPPER ===== */
.c-contact-details {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  padding: 0 1rem;
  width: 100%;
}

/* ===== CONTACT CARD BOXES ===== */
.c-contact-card {
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #000;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 320px;
  position: relative;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-contact-icon-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
}

.c-contact-burst {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.c-contact-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.c-mobile span {
  color: #000;
  font-family: "Bold";
  font-size: 1.3em;
  text-decoration: none;
  list-style: none; 
}

.c-mobile a {
  color: #000;
  font-family: "Bold";
  font-size: 1.3em;
  list-style: none; 
  text-decoration: underline;
  text-align: right;
  word-break: break-word;
}

.c-mobile ul {
  width: 100%;
}

.c-mobile li {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0.6em;
}

.c-address li{
  text-decoration: none;
  list-style: none; 
  margin-top: 0.6em;
}

.c-address span{
  color: #000;
  font-family: "Bold";
  font-size: 1.3em;
  text-decoration: none;
  list-style: none; 
}

.c-address a {
  color: #000;
  font-family: "Regular";
  font-size: 1em;
  list-style: none; 
  text-decoration: underline;
  text-align: right;
  word-break: break-word;
}

/* Social icons */
.c-social-icons {
  display: grid;
  grid-template-columns: repeat(2, 60px);
  gap: 30px;
}

.c-icon-wrapper{
  position: relative;
  width: 60px;
  height: 60px;
  display: inline-block;
}

.c-icon-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.c-icon-wrapper .default {
  opacity: 1;
}

.c-icon-wrapper .hover {
  opacity: 0;
}

.c-icon-wrapper:hover .default {
  opacity: 0;
}

.c-icon-wrapper:hover .hover {
  opacity: 1;
}

/* Small Desktop / Large Tablet Landscape */

@media (max-width: 1280px) and (min-width: 769px) {
  .c-contact-details {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding: 0 1rem;
    width: 100%;
  }
}

/* ===== RESPONSIVE BEHAVIOR ===== */
@media (max-width: 768px) {
  .c-contact-details {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
    width: 100%;
  }

  .c-contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .c-contact-card {
    max-width: 90%;
  }

  .c-contact-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .c-contact-line a {
    margin-top: 0.25rem;
  }

  .c-social-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}


                                      /* ------------------- */
                                      /* ABOUT US WEBPAAGE   */
                                      /* ------------------- */

.horizontal-sliders {
  overflow: hidden;
}

.main {
  display: flex;
  flex-wrap: nowrap;
  width: 75vw; 
  height: 100vh;
}

.slide {
  width: 25vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  min-height: 800px;
}

.au-slide-one {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3vw;
  box-sizing: border-box;
  position: relative;
}

.au-slide-content-1 {
  position: relative;
  /* max-width: 1000px; */
  width: 100%;
  height: 100%;
}

.au-who-1{
  position: absolute;
  z-index: 1;
  top: 8%;
  left: 0%;
  color: #000;
  font-family: "Bold";
  font-size: 128px;
}

.au-1-main-image{
  position: absolute;
  z-index: 1;
  top: 22%;
  left: 4%;
}

.au-text-1 {
  max-width: 600px;
  position: absolute;
  top: 30%;
  left: 45%;
}

.au-title-1 {
  margin-bottom: 0.5rem;
  color: #D91729;
  font-family: "Bold";
  font-size: 2.3em;
}

.au-description-1 {
  color: #000;
  font-family: "Regular";
  font-size: 1.3em;
}

.au-1-logo{
  position: absolute;
  top: 55%;
  left: 35%;
  width: 330px;
  z-index: 3;
}

.au-slide-two {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2vw;
  box-sizing: border-box;
  position: relative;
  max-width: 800px;
}

.au-text-2 {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.au-title-2 {
  color: #D91729;
  font-family: "Bold";
  font-size: 2.3em;
  margin-bottom: 0.5rem;
}

.au-description-2 {
  color: #000;
  font-family: "Regular";
  font-size: 1.3em;
  max-width: 500px;
  margin-bottom: 0;
}

.au-image-2{
  margin-top: 0;
  width: 750px;
}

.au-slide-three{
  position: relative;
  /* max-width: 1000px; */
  width: 100%;
  height: 100%;
}

.au-image-3-1{
  position: absolute;
  top: 6%;
  left: 13%;
  width: 600px;
}

.au-image-3-2{
  display: block;
  position: absolute;
  top: 45%;
  left: 60%;
  width: 200px;
  transform: rotate(10deg);
}

.au-text-3 {
  text-align: left;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 60%;
  left: 5%;
}

.au-title-3 {
  color: #D91729;
  font-family: "Bold";
  font-size: 2.3em;
  margin-bottom: 0.5rem;
}

.au-description-3 {
  color: #000;
  font-family: "Regular";
  font-size: 1.3em;
  max-width: 450px;
  margin-bottom: 0;
}

/* Small Desktop / Large Tablet Landscape */

@media (max-width: 1280px) and (min-width: 1025px) {
  .au-text-1 {
    max-width: 470px;
    position: absolute;
    top: 30%;
    left: 48%;
  }

  .au-1-main-image{
    position: absolute;
    top: 22%;
    left: 3%;
  }

  .au-1-logo{
    position: absolute;
    top: 55%;
    left: 30%;
  }

}

/* Tablet Portrait */

@media (max-width: 1024px) and (min-width: 769px) {

  /* main container that is pinned and scrolls horizontally */
.main {
  display: flex;
  flex-wrap: nowrap;
  width: 100vw; /* 3 slides = 3 x 100vw */
  height: 100vh;
}

/* each slide takes full viewport width */
.slide {
  width: 32vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  min-height: 800px;
}

  .au-1-main-image{
    position: absolute;
    top: 22%;
    left: 3%;
  }

  .au-text-1 {
    max-width: 380px;
    position: absolute;
    top: 30%;
    left: 53%;
  }

  .au-1-logo{
    position: absolute;
    top: 55%;
    left: 25%;
  }

  .au-image-2{
    margin-top: 0;
    width: 550px;
  }

  .au-text-3 {
    position: absolute;
    top: 60%;
    left: 3%;
  }

}

/* Small Tablet / Large Phone */

@media (max-width: 768px) {



.main {
  display: flex;
  flex-wrap: nowrap;
  width: 120vw;
  height: 100vh;
}

.slide {
  width: 40vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  min-height: 800px;
}

.au-title-1, .au-title-2, .au-title-3 {
  font-size: 2em;
}

.au-description-1, .au-description-2, .au-description-3 {
  font-size: 1em;
}

  .au-slide-content-1 {
    position: relative;
    max-width: 800px;
    width: 100%;
    height: 100%;
  }

  .au-1-main-image{
    position: absolute;
    z-index: 1;
    top: 20%;
    left: 2%;
  }

  .au-who-1{
    position: absolute;
    top: 12%;
    left: 0%;
    font-size: 4.6em;
  }

  .au-1-main-image{
    width: 250px;
    height: auto;
  }

  .au-text-1 {
    max-width: 400px;
    position: absolute;
    top: 70%;
    left: 2%;
  }

  .au-1-logo{
    position: absolute;
    top: 50%;
    left: 45%;
    width: 250px;
  }

  .au-title-1 {
    font-size: 2em;
  }
  
  .au-description-1 {
    font-size: 1.2em;
    width: 80%;
  }

  .au-text-2 {
    margin: 0 auto;
    align-items: center;
  }

  /* .au-title-2 {
    width: 70%;
  } */

  .au-description-2 {
    max-width: 400px;
    width: 80%;
  }

  .au-image-2{
    margin-top: 0;
    width: 400px;
  }

  .au-text-3 {
    position: absolute;
    top: 74%;
    left: 2%;
    width: 78%;
  }

  .au-image-3-1{
    position: absolute;
    top: 10%;
    left: 1%;
    width: 500px;
  }

  .au-image-3-2{
    display: block;
    position: absolute;
    top: 35%;
    left: 25%;
    width: 200px;
    transform: rotate(10deg);
  }



}

.section-values {
  padding: 40px 20px;
  height: 400px;
}

.au-values-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;

  @media (min-width: 800px) {
    flex-direction: row;
    justify-content: space-between;
    position: relative;

    &::before,
    &::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 1px;
      background: rgba(0, 0, 0, 0.3);
    }

    &::before {
      left: 33.333%;
    }

    &::after {
      left: 66.666%;
    }
  }
}

.au-value-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;

  @media (min-width: 800px) {
    text-align: left;
  }
}

.au-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;

  .au-star {
    width: 100%;
    height: auto;
  }

  .au-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: auto;
  }
}



.au-value-title {
  font-size: 1.8em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #000;
  text-align: center;
  font-family: "Bold";
}

.au-value-text {
  font-size: 1em;
  color: #000;
  text-align: center;
  font-family: "Regular";
}

@media (max-width: 800px) {
  .section-values {
    height: 900px;
  }
}

.au-join-us{
  background-color: #D91729;;
  padding: 40px 60px;
}

.au-ju-main{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-start;
}

.au-ju-text{
  display: flex;
  /* justify-content: space-between; */
  flex-direction: column;
  /* align-items: flex-start; */
}

.au-ju-title{
  color: #dcb144;
  font-family: "Bold";
  font-size: 90px;
}

.au-ju-description{
   color: #FFF; 
  font-family: "Bold";
  font-size: 1.2em;
  max-width: 450px;
  margin-top: 0;
}

.au-ju-button{
  font-size: 2em;
  padding: 7px 50px;
  border-radius: 50px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  transition: background-color 0.3s ease;
  text-decoration: none;
  font-family: "Bold";
  margin-top: 30px;
}

.au-ju-button:hover {
  background-color: #dcb144;
}

.au-ju-img-container{
  background-color: #fff;
  border-radius: 12px;
  border: #000 1px solid;
  width: 100%;
  height: auto;
  padding: 10px;
  margin-top: 20px;
}

.au-ju-img{
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  border-radius: 12px;
  border: #000 1px solid;
  width: 100%;
  height: auto;
}

/* Responsive adjustments */

/* Large Desktop (>1280px) */
@media (min-width: 1400px) {
  .au-join-us{
    padding: 40px 150px;
  }

  .au-ju-description{
    max-width: 650px;
  }
}

/* Small Desktop / Large Tablet Landscape */
@media (max-width: 1280px) and (min-width: 1025px) {


}

/* Tablet Portrait */
@media (max-width: 1024px) and (min-width: 860px) {

}

@media (max-width: 860px) and (min-width: 769px) {

}

/* Small Tablet / Large Phone */
@media (max-width: 768px) {
  .au-join-us{
    padding: 40px 20px;
  }

  .au-ju-main{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
  }

  .au-ju-title{
    color: #EEA633;
    font-family: "Bold";
    font-size: 70px;
    line-height: 60px;
  }

  .au-ju-description{
    margin-top: 12px;
  }

  .au-ju-button{
    font-size: 1.3em;
    padding: 7px 50px;
    margin-top: 12px;
  }

  .au-ju-img-container{
    padding: 4px;
  }
}



/* --- FRANCHISE HERO --- */
.fr-hero{
  position: relative;
  background: #f4a020;     /* your gold */
  overflow: hidden;
  height: 85vh;
  min-height: 750px;
}

.fr-badge-line{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.fr-hero-content{
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.fr-hero h1{
  margin-top: 32%;
  font-size: 5.5em;
  line-height: .95;
  text-transform: uppercase;
  font-family: "Bold";
}

.fr-hero p{
   margin: 15px auto;
   font-size: 1.3em;
   font-family: "Regular";
   width: 55%;
  }

/* photos: simple rotate */
.fr-photo{
  position: absolute;
  width: 240px;
  height: auto;
  z-index: 1;
}
.fr-photo-left{  top: 220px; left: 80px;  transform: rotate(-8deg); }
.fr-photo-right{ top:  120px; right: 80px; transform: rotate(10deg); }

/* badges (SVGs) */
.fr-badge{
  position: absolute;
  width: 120px;
  height: auto;
  z-index: 3;
}
.fr-badge-left{  top: 510px; left: 250px; }
.fr-badge-right{ top: 90px; right: 245px; }

/* --- breakpoints --- */
@media (max-width: 1200px){
  .fr-photo{ width: 220px; }
  .fr-photo-left{  left: 40px; top: 220px; }
  .fr-photo-right{ right: 40px; top: 120px; }
  .fr-badge-left{  left: 175px;  top: 505px; }
  .fr-badge-right{ right: 170px;  top: 65px; }
}
@media (max-width: 900px){
  .fr-hero h1{ margin-top: 12%; }
  .fr-photo{ width: 220px; }
  .fr-photo-left{  left: 85px; top: 370px; transform: rotate(-6deg); }
  .fr-photo-right{ right: 85px; top: 370px; transform: rotate(7deg); }
  .fr-badge{ width: 110px; }
  .fr-badge-left{  top: 360px; left: 40px; }
  .fr-badge-right{ top: 350px; right: 28px; }
}
@media (max-width: 640px){
  .fr-hero h1{ margin-top: 30%; font-size: 60px; }
  .fr-hero p{ width: 85%; }
  .fr-photo{ width: 200px; }
  .fr-photo-left{  top: 370px; left: 10px; }
  .fr-photo-right{ top: 450px; right: 15px; }
  .fr-badge{ width: 90px; }
  .fr-badge-left{  top: 630px; left: 96px; }
  .fr-badge-right{ top: 400px; right: 147px; }
}

/* HERO fade-ins */
.fr-hero .fr-photo,
.fr-hero .fr-badge,
.fr-hero .fr-badge-line{
  opacity: 0;
  transition: opacity .6s ease;
  will-change: opacity;
}

/* Stagger (optional) */
.fr-hero .fr-photo-left  { transition-delay: .05s; }
.fr-hero .fr-photo-right { transition-delay: .20s; }
.fr-hero .fr-badge-left  { transition-delay: .35s; }
.fr-hero .fr-badge-right { transition-delay: .50s; }
.fr-hero .fr-badge-line  { transition-delay: .65s; }

/* When the hero is in view */
.fr-hero.is-in .fr-photo,
.fr-hero.is-in .fr-badge,
.fr-hero.is-in .fr-badge-line{
  opacity: 1;
}

/* accessibility: no motion */
@media (prefers-reduced-motion: reduce){
  .fr-hero .fr-photo,
  .fr-hero .fr-badge,
  .fr-hero .fr-badge-line{
    transition: none;
    opacity: 1;
  }
}


/* --- BENEFITS SECTION --- */
.fr-benefits{       
  padding:100px 40px;
}
.fr-benefits-inner{
  max-width:1200px;
  margin:0 auto;
}
.fr-benefits-intro{
  margin-bottom:30px;
  max-width:640px;
}
.fr-benefits-intro h2{
  text-transform:uppercase;
  margin:0 0 16px;
  font-family: "Bold";
  line-height: 0.95;
  font-size: 3em;
}
.fr-benefits-intro p{
  margin:0;
  font-family: "regular";
  font-size: 1.3em;
}

/* Grid */
.fr-benefits-grid{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:44px 28px;
}

/* Card */
.fr-benefit-card{
  position:relative;
  background:#fff;
  border:1px solid #111;
  border-radius:16px;
  padding:38px 15px 15px;  /* extra top space for the badge overlap */
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  text-align:center;
}
.fr-benefit-card h3{
  margin:10px 0 8px;
  line-height:1.1;
  text-align: center;
  font-family: "Bold";
  font-size: 24px;
}
.fr-benefit-card p{
  margin:0;
  font-size:16px;
  font-family: "Regular";
}

/* Star badge: half in/half out on top center */
.fr-card-star{
  position:absolute;
  left:50%;
  top:-34px;                 /* pull it up so it sits half outside */
  transform:translateX(-50%);
  width:70px;                /* adjust to your SVG size */
  height:70px;
  pointer-events:none;
}
.fr-card-star-base,
.fr-card-star-icon{
  position:absolute;
  width:100%;
  height:100%;
  display:block;
}
.fr-card-star-icon{
  inset:0;
  width:58%;                 /* icon smaller than starburst */
  height:58%;
  margin:auto;
  top:0; bottom:0; left:0; right:0;
}

/* --- Responsive breakpoints --- */
@media (min-width:1200px){
  /* Intro left, grid right on big screens */
  .fr-benefits-inner{
    display:grid;
    grid-template-columns: 1fr 2fr;
    column-gap:40px;
    align-items:start;
  }
  .fr-benefits-intro{ margin:0; }
}

@media (max-width:1100px){
  .fr-benefits-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width:700px){
  .fr-benefits-intro h2{ font-size:36px; }
  .fr-benefits-grid{ grid-template-columns: 1fr; }
  .fr-benefit-card{ padding-top:36px; }
  .fr-card-star{ top:-30px; width:64px; height:64px; }
}


/* Section layout */
.fr-locations {
  background: #D91F27; /* your red */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.fr-locations-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.fr-locations h2 {
  font-size: 4em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-family: "Bold";
}
.fr-locations p {
  width: 75%;
  margin: 0 auto 28px;
  font-family: "Regular";
  font-size: 1.3em;
  line-height: 24px; /* 120% */
}

/* Map stack */
.fr-map-wrap {
  --fr-fill-duration: 900ms;   /* fade time for yellow fills */
  --fr-icons-delay: 1400ms;    /* wait after scroll before icons animate */
  --fr-icons-duration: 700ms;  /* icons fade/slide time */

  position: relative;
  margin: 0 auto;
  max-width: 920px;
  width: 100%;
}

/* all map layers share sizing */
.fr-map {
  display: block;
  width: 100%;
  height: auto;
}

/* layer order via positioning */
.fr-map--base  { position: relative; z-index: 1; }
.fr-map--fills { position: absolute; inset: 0; z-index: 2; opacity: 0; }
.fr-map--icons { position: absolute; inset: 0; z-index: 3; opacity: 0; transform: translateY(22px); }

/* when in view: play animations */
.fr-map-wrap.is-in .fr-map--fills {
  transition: opacity var(--fr-fill-duration) ease-out;
  opacity: 1;
}
.fr-map-wrap.is-in .fr-map--icons {
  transition:
    opacity var(--fr-icons-duration) ease-out var(--fr-icons-delay),
    transform var(--fr-icons-duration) ease-out var(--fr-icons-delay);
  opacity: 1;
  transform: translateY(0);
}

/* mobile tweaks */
@media (max-width: 700px) {
  .fr-locations { padding: 64px 16px; }
  .fr-locations h2 { font-size: 44px; }
  .fr-locations p { font-size: 16px; width: 90%; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fr-map--fills,
  .fr-map--icons { transition: none !important; transform: none !important; }
}

/* section */
.fr-steps{
  background:#F5EFE6;     /* light beige */
  padding:100px 20px;
}
.fr-steps-inner{
  max-width:1300px;
  margin:0 auto;
  text-align:center;
}
.fr-steps h2{
  margin:0 0 54px;
  font-size:3.5em;
  line-height:1;
  font-family: "Bold";
}

/* grid: 5 -> 3/2 -> 1 */
.fr-steps-grid{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:24px;
}

/* card */
.fr-step-card{
  position:relative;
  background:#fff;
  border:1px solid #111;
  border-radius:18px;
  padding:46px 12px 14px;     /* extra top for the badge overlap */
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}
.fr-step-card h3{
  margin:6px 0 5px;
  font-size:22px;
  line-height:1.1;
  text-align: center;
  font-family: "Bold";
}
.fr-step-card p{
  margin:0;
  font-size:16px;
  font-family: "Regular";
}

/* star badge – half in/half out */
.fr-step-badge{
  position:absolute;
  left:50%;
  top:-30px;                 /* pull it up */
  transform:translateX(-50%);
  width:68px;
  height:68px;
  z-index:2;
  pointer-events:none;
}
.fr-step-badge img{
  width:100%;
  height:100%;
  display:block;
}
.fr-step-badge span{
  font-family: "Bold";
  position:absolute;
  top:55%;
  left:50%;
  transform:translate(-50%,-55%);
  font-weight:900;
  font-size:30px;
  color:#fff;                /* adjust if your star uses another color */
}

/* breakpoints */
@media (max-width:1200px){
  /* 3 columns -> will naturally wrap to 3 + 2 (no single orphan row) */
  .fr-steps-grid{ grid-template-columns:repeat(3, 1fr); gap: 44px 24px;}
  .fr-steps h2{ font-size:52px; }
}
@media (max-width:760px){
  .fr-steps-grid{ grid-template-columns:1fr; }
  .fr-steps h2{ font-size:40px; }
  .fr-step-badge{ top:-26px; width:60px; height:60px; }
  .fr-step-card{ padding-top:52px; }
}


/* --- INVEST / COST SECTION --- */
.fr-invest{
  background:#C88422;      /* your gold */
  color:#111;
  padding:80px 20px;
}
.fr-invest-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:start;
}

/* copy */
.fr-invest-copy h2{
  margin:0 0 18px;
  font-size: 3em;
  line-height:1.02;
  font-family: "Bold";
}
.fr-invest-copy p{
  margin:0 0 16px;
  font-size: 1.2em;
  max-width:58ch;
  font-family: "Regular";
}

/* card + button column */
.fr-invest-cardwrap{
  justify-self:center;   /* centers the card column nicely */
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* white card */
.fr-invest-card{
  background:#fff;
  border:1px solid #111;
  border-radius:18px;
  padding:28px 28px 18px;
  width: 100%;
  box-shadow:0 10px 28px rgba(0,0,0,.12);
}

/* card header (two headings) */
.fr-cost-head{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:150px;
  align-items:end;
  margin-bottom:22px;
}
.fr-cost-head h3{
  margin:0;
  font-size:24px;
  font-family: "Bold";
}
.fr-cost-head-right{
  text-align: right;
}

/* rows */
.fr-cost-row{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:20px;
  align-items:center;
  padding:14px 0;
  border-top:1px solid #E6E6E6;
}
.fr-cost-row:first-of-type{ border-top:0; }

.fr-cost-label{
  font-size:20px;
  font-family: "Regular";
}
.fr-cost-value{
  font-size:24px;
  font-weight:800;
  font-family: "Regular";
}

/* note */
.fr-cost-note{
  margin:14px 0 0;
  font-size:13px;
  color:#6b6b6b;
  font-family: "regular";
}

/* CTA pill */
.fr-cta-pill{
  margin-top:22px;
  display:inline-block;
  background:#0F7A55;
  color:#fff;
  border:1px solid #000;
  padding:8px 28px;
  border-radius:999px;
  font-family: "Bold";
  text-decoration:none;
  font-size: 1.5em;
  transition:transform .15s ease;
}
.fr-cta-pill:hover{ transform: translateY(-2px); }
.fr-cta-pill:active{ transform: translateY(0); }

/* --- Responsive --- */
@media (max-width:1100px){
  .fr-invest-inner{
    grid-template-columns: 1fr;
    gap:28px;
  }
  .fr-invest-copy{ text-align: center; margin: auto;}
  .fr-invest-copy h2{ font-size:52px; }
  .fr-invest-cardwrap{ align-items:center; }
  .fr-invest-copy p{ max-width:78ch;}
}

@media (max-width:700px){
  .fr-invest{ padding:64px 16px; }
  .fr-invest-copy h2{ font-size:40px; }
  .fr-invest-copy p{ font-size:16px; }
  .fr-cost-head h3{ font-size:22px; }
  .fr-cost-row{ padding:12px 0; }
  .fr-cost-label{ font-size:18px; }
  .fr-cost-value{ font-size:20px; }
  .fr-cta-pill{ padding:16px 22px; }
  .fr-invest-copy p{ max-width:80ch;}
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
  .fr-cta-pill{ transition:none; }
}


/* Stripe bar */
.mobile-location-stripe {
  display: none; /* hidden by default, shown on mobile */
  background: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.mobile-location-stripe strong {
  color: #d62828; /* your red brand color */
}

.mobile-location-stripe a {
  color: #d62828;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .mobile-location-stripe { display: flex; }
}
