@font-face {
  font-family: "Archivo";
  src: url("fonts/ArchivoBlack-Regular.woff2") format("woff2"), url("fonts/ArchivoBlack-Regular.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.woff2") format("woff2"), url("fonts/Poppins-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.woff2") format("woff2"), url("fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Primary Colors – Energetic teal/mint vibe */
  --color-primary: #2ec4b6;
  --color-primary-dark: #1b9e8f;
  --color-primary-light: #88e0d6;

  /* Secondary Colors – Zingy citrus lime contrast */
  --color-secondary: #aacc00;
  --color-secondary-dark: #809c00;
  --color-secondary-light: #cfee75;

  /* Accent Colors – Deep purple-blue */
  --color-accent: #3a0ca3;
  --color-accent-dark: #240867;
  --color-accent-light: #9d4edd;

  /* Neutrals */
  --color-white: #ffffff;
  --color-light: #f6f6f6;
  --color-mid: #dcdcdc;
  --color-dark: #333333;

  /* Backgrounds */
  --bg-body: var(--color-light);
  --bg-section: #ecfdfd;
  --bg-footer: #131517;

  /* Text Colors */
  --text-base: #131517;
  --text-muted: #666666;
  --text-inverse: #ffffff;

  /* Fonts */
  --font-base: "Poppins", sans-serif;
  --font-heading: "Archivo", sans-serif;

  /* Font Sizes */
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.8rem;
  --font-size-2xl: 2.2rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

* {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
}

body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: 1.5;
  background-color: var(--bg-body);
  color: var(--text-base);
}

button {
  border: 0;
  cursor: pointer;
}

figure {
  margin: 0;
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aspect-3-4 {
  aspect-ratio: 3/4;
}

.aspect-4-3 {
  aspect-ratio: 4/3;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

.aspect-1-1 {
  aspect-ratio: 1/1;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  background-color: var(--color-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.logo-img img {
  width: 150px;
  height: auto;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--text-base);
  font-weight: bold;
  font-size: var(--font-size-base);
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: var(--bg-section);
}

.nav-link:hover {
  background-color: var(--color-primary-dark);
  color: var(--text-inverse);
}

.btn-cart {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-base);
  background-color: var(--color-accent);
  padding: 6px;
  border-radius: 100%;
  position: relative;
}

.btn-cart img {
  width: 30px;
  height: 30px;
}

#cartCount {
  background-color: var(--color-secondary);
  color: var(--text-inverse);
  border-radius: 50%;
  padding: 0.1rem 0.2rem;
  font-size: 0.75rem;
  position: absolute;
  width: 1.5rem;
  text-align: center;
  top: -8px;
  right: -8px;
}

.burger-toggle {
  display: none;
  background: none;
}

.burger-icon {
  width: 24px;
  height: 24px;
}

.burger-close {
  display: none;
}

.main-nav.active .burger-open {
  display: none;
}

.main-nav.active .burger-close {
  display: block;
}

@media (max-width: 1023px) {
  .burger-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    border-radius: 100%;
    width: 42px;
    height: 42px;
    margin: 0 1rem 0 auto;
  }
  .main-nav.active .nav-list {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .nav-list {
    display: none;
    flex-direction: column;
    padding: 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: var(--font-size-base);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--text-inverse);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--text-inverse);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-dark);
}

.btn-wrap {
  text-align: center;
  margin-top: 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--bg-section);
  padding: 6rem 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-text {
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 8px;
}

.hero-subtitle {
  font-size: var(--font-size-base);
  font-weight: bold;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: var(--font-size-2xl);
  color: var(--text-base);
  margin: 0.5rem 0;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-desc {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  .hero-title {
    font-size: var(--font-size-xl);
  }
}

/* What Makes Us Special */
.special {
  background-color: var(--bg-section);
  padding: 4rem 0;
}

.section-title {
  font-size: var(--font-size-2xl);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.section-title span {
  color: var(--color-accent);
}

.section-lead {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
}

.special-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.special-card {
  position: relative;
  flex: 1;
  max-width: 300px;
  color: var(--color-white);
  background-color: var(--color-accent);
  border: 1px solid var(--color-mid);
  border-radius: 50%;
  text-align: center;
  padding: 1rem;
  margin-top: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.special-icon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
}

.special-title {
  font-size: var(--font-size-lg);
  margin: 3rem 0 1rem;
}

@media (max-width: 767px) {
  .special-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Popular Picks (Accordion) */
.popular {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: transparent;
  display: flex;
  flex-direction: column;
}

.product-image {
  background-color: var(--color-primary-light);
  padding: 1rem;
  border-radius: 8px 8px 0 0;
  flex: 0 0 auto;
}

.product-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--color-secondary-light);
  padding: 1rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-title {
  font-size: var(--font-size-lg);
  color: var(--text-base);
}

.product-subtitle {
  font-size: var(--font-size-base);
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-ingredients {
  list-style: none;
  margin: 0.5rem 0;
  padding: 0;
  color: var(--text-muted);
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-weight: bold;
  color: var(--color-accent);
  margin: 0.5rem 0;
}

.btn-order img {
  width: 26px;
  height: 26px;
}

/* Daily Crunch Deals (Slider) */
.deals {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.deals-slider {
  position: relative;
  overflow: hidden;
}

.slider-item {
  display: none;
}

.slider-item.active {
  display: block;
}

.slider-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider-text {
  text-align: left;
}

.slider-title {
  font-size: var(--font-size-lg);
  color: var(--text-base);
  margin-bottom: 0.5rem;
}

.slider-text p {
  color: var(--text-muted);
}

.slider-image {
  border-radius: 8px;
}

@media (max-width: 767px) {
  .slider-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .slider-text {
    text-align: center;
  }
}

/* Chicken Around Spain */
.map {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.map-content {
  text-align: center;
}

.map-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.map-pin {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
  color: var(--text-inverse);
  border-radius: 4px;
  font-weight: bold;
}

.map-image {
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Flavour Lab Preview (Tabs) */
.flavour-lab {
  position: relative;
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.flavour-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.flavour-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 8px;
}

.flavour-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tab-btn {
  flex: 1;
  padding: 0.75rem;
  background-color: var(--color-light);
  color: var(--text-base);
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--color-primary);
  color: var(--text-inverse);
}

.tab-content {
  display: none;
  padding: 1rem;
  background-color: var(--color-light);
  border-radius: 4px;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.tab-content ul {
  list-style: disc;
  margin: 0;
  padding: 0;
  list-style-position: inside;
  color: var(--text-muted);
}

/* How We Cook It */
.cooking-process {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  align-items: stretch;
  background-color: var(--color-white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.process-image {
  height: 100%;
}

.process-content {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.5rem;
}

.process-title {
  font-size: var(--font-size-lg);
}

@media (max-width: 767px) {
  .process-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Happy Customers Say */
.testimonials {
  padding: 4rem 0;
  background-color: var(--color-white);
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

blockquote {
  margin: 0 0 1rem;
}

.testimonial-card {
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: "";
  background: url(images/speech.svg) 0 0 / cover no-repeat;
  width: 100%;
  aspect-ratio: 40/27;
  position: absolute;
  left: 0;
  opacity: 0.4;
  transform: rotate(3deg);
  transition: all 0.2s;
}

.testimonial-card:hover::before {
  opacity: 0.2;
}

.testimonial-card:nth-child(2n + 1)::before {
  background-image: url(images/speech1.svg);
  transform: scaleY(-1) rotate(20deg);
}

.testimonial-image {
  width: 80px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
  border-radius: 0 50%;
}

.testimonial-card blockquote {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: bold;
  color: var(--color-accent-dark);
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Quick Order Steps */
.order-steps {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.order-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.order-card {
  position: relative;
  flex: 1;
  max-width: 300px;
  background-color: var(--color-white);
  border: 1px solid var(--color-mid);
  border-radius: 8px;
  text-align: center;
  padding: 1rem;
  margin-top: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.order-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--text-inverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  font-weight: bold;
}

.order-title {
  font-size: var(--font-size-lg);
  margin: 2rem 0 0.5rem;
}

.order-card p {
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .order-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Call to Action */
.cta {
  position: relative;
  padding: 4rem 0;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-subtitle {
  font-size: var(--font-size-base);
  font-weight: bold;
  color: var(--color-accent);
  text-transform: uppercase;
}

.cta-title {
  font-size: var(--font-size-2xl);
  margin: 0.5rem 0;
}

.cta-title span {
  color: var(--color-secondary);
}

.cta-desc {
  font-size: var(--font-size-lg);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background-color: var(--bg-footer);
  color: var(--text-inverse);
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo img {
  width: 180px;
  height: auto;
}

.footer-brand p {
  color: var(--color-mid);
  font-size: var(--font-size-base);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  font-size: var(--font-size-lg);
  text-transform: uppercase;
  color: var(--color-primary);
}

.footer-nav,
.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-nav li,
.footer-contact-list li {
  margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-contact-list a {
  color: var(--color-mid);
  text-decoration: none;
  font-size: var(--font-size-base);
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-contact-list a:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-social-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
}

.footer-social-list img {
  width: 32px;
  height: 32px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid var(--color-mid);
  padding-top: 1rem;
}

.footer-legal-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
}

.footer-legal-list a {
  color: var(--color-mid);
  text-decoration: none;
  font-size: var(--font-size-base);
}

.footer-legal-list a:hover {
  color: var(--color-primary);
}

.footer-legal p {
  color: var(--color-mid);
  font-size: var(--font-size-base);
}

@media (max-width: 767px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo img {
    margin: auto;
  }

  :root {
    --font-size-2xl: 1.6rem;
  }
}

/* Menu Section */
.menu-section {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1023px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Footer */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

/* Notes Section */
.notes {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.notes-content {
  max-width: 800px;
  margin: 0 auto;
}

.notes-content h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.notes-content h4 {
  font-size: var(--font-size-base);
  text-transform: uppercase;
  margin: 1.5rem 0 0.5rem;
}

.notes-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.notes-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.notes-list img {
  width: 24px;
  height: 24px;
}

.notes-content p {
  color: var(--text-muted);
}

.notes-content a {
  color: var(--color-primary);
  text-decoration: none;
}

.notes-content a:hover {
  text-decoration: underline;
}

/* Where We Began */
.begin {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  background-color: var(--color-white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.5s;
  transition-delay: 0.3s;
}

.timeline-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.timeline-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.timeline-year {
  font-size: var(--font-size-lg);
  color: var(--color-primary);
}

.timeline-title {
  font-size: var(--font-size-base);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .timeline-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Our Chicken Ethos */
.ethos {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.ethos-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.ethos-card {
  position: relative;
  flex: 1;
  max-width: 300px;
  background-color: var(--color-white);
  border: 1px solid var(--color-mid);
  border-radius: 8px;
  text-align: center;
  padding: 1rem;
  margin-top: 50px;
}

.ethos-icon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
}

.ethos-title {
  font-size: var(--font-size-lg);
  margin: 3rem 0 1rem;
}

.ethos-card p {
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .ethos-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Meet the Team */
.team {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background-color: var(--color-white);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 120px;
  margin: 0 auto 1rem;
}

.team-name {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-muted);
}

@media (max-width: 1023px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Farm to Fryer */
.farm {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.farm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.farm-step {
  background-color: var(--color-white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.farm-step:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.farm-title {
  font-size: var(--font-size-lg);
  margin: 1rem 0 0.5rem;
}

.farm-step p {
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .farm-grid {
    grid-template-columns: 1fr;
  }
}

/* Ingredient Spotlight */
.ingredient {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.ingredient-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ingredient-title {
  font-size: var(--font-size-lg);
}

.ingredient-list {
  list-style: disc;
  margin: 0.5rem 0 0 1.5rem;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .ingredient-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ingredient-list {
    margin-left: 0;
  }
}

/* Brand Promise */
.promise {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.promise-quote {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--text-muted);
}

.promise-quote p {
  font-style: italic;
}

.promise-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--color-primary);
}

.promise-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.promise-badge {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.badge-icon {
  width: 80px;
  margin: 0 auto 1rem;
  background-color: var(--color-primary-light);
  border-radius: 50%;
}

.badge-title {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.promise-badge p {
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .promise-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Why Use the App */
.why-app {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.why-app-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.why-app-card {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.why-app-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.why-app-icon {
  width: 80px;
  margin: 0 auto 1rem;
  background-color: var(--color-primary-light);
  border-radius: 50%;
}

.why-app-title {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.why-app-card p {
  color: var(--text-muted);
}

/* Track Your Meal */
.track {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.track-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.track-list li {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.track-list li strong {
  color: var(--color-dark);
}

@media (max-width: 767px) {
  .track-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Customize Everything */
.customize {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.customize-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.customize-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.customize-title {
  font-size: var(--font-size-lg);
}

.customize-list {
  list-style: disc;
  margin: 0.5rem 0 0 1.5rem;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .customize-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .customize-list {
    margin-left: 0;
  }
}

/* Exclusive App Deals */
.deals {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.deals-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.deal-badge {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 1.5rem;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.deal-badge:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.deal-icon {
  width: 100px;
  margin: 0 auto 1rem;
  background-color: var(--color-primary-light);
  border-radius: 50%;
}

.deal-title {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.deal-badge p {
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .deals-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* FAQ: App Edition */
.faq {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background-color: var(--color-white);
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: var(--font-size-base);
  color: var(--color-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "";
  background: url(images/icon-chevron-down.svg) 0 0 / cover no-repeat;
  width: 24px;
  height: 24px;
}

.faq-item[open] .faq-question::after {
  transform: scaleY(-1);
}

.faq-answer {
  background-color: var(--color-white);
  padding: 1rem;
  border-radius: 0 0 8px 8px;
  color: var(--text-muted);
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: var(--color-primary);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Get in Touch */
.get-in-touch {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-card {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon {
  width: 60px;
  margin: 0 auto 1rem;
  background-color: var(--color-primary-light);
  border-radius: 50%;
}

.contact-title {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Opening Hours */
.hours {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.hours-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.hours-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--color-mid);
}

.hours-icon {
  width: 40px;
  flex-shrink: 0;
}

.hours-day {
  flex: 1;
  font-weight: bold;
  color: var(--color-dark);
}

.hours-time {
  color: var(--text-muted);
}

/* Location */
.location {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.location-map {
  height: 350px;
  margin: 2rem auto;

  overflow: hidden;
}

.location-map iframe {
  border-radius: 8px;
  border: 0;
}

/* Feedback Form */
.feedback {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.feedback-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: var(--font-size-base);
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--color-mid);
  border-radius: 4px;
  font-size: var(--font-size-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary-light);
}

.form-group textarea {
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-checkbox label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.form-checkbox a {
  color: var(--color-primary);
  text-decoration: none;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.feedback-form .btn {
  width: 100%;
  max-width: 200px;
}

@media (max-width: 767px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Hiring Now */
.hiring {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.hiring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hiring-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hiring-title {
  font-size: var(--font-size-lg);
}

.hiring-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.hiring-list li {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.hiring-list li strong {
  color: var(--color-dark);
}

.hiring-content .btn {
  max-width: 200px;
}

@media (max-width: 767px) {
  .hiring-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Lost Something? */
.lost {
  padding: 4rem 0;
  background-color: var(--color-white);
  text-align: center;
}

.lost .btn {
  max-width: 250px;
  margin: 1rem auto 0;
}

/* This Week’s Hot Deals */
.hot-deals {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.deal-card {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.deal-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-expiry {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  margin: 1rem 0 0.5rem;
}

.deal-title {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.deal-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.deal-card .btn {
  max-width: 200px;
}

@media (max-width: 1023px) {
  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .deals-grid {
    grid-template-columns: 1fr;
  }
}

/* Loyalty Rewards */
.loyalty {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.loyalty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.loyalty-step {
  text-align: center;
  border: 1px solid var(--color-primary-dark);
  box-shadow: 0 0 15px var(--color-primary-light);
  padding: 1rem;
  border-radius: 8px;
}

.loyalty-icon {
  width: 80px;
  margin: 0 auto 1rem;
  background-color: var(--color-primary-light);
  border-radius: 50%;
}

.loyalty-title {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.loyalty-step p {
  color: var(--text-muted);
}

@media (max-width: 1023px) {
  .loyalty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .loyalty-grid {
    grid-template-columns: 1fr;
  }
}

/* Student Specials */
.student {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.student-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.student-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.student-title {
  font-size: var(--font-size-lg);
}

.student-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.student-list li {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.student-list li strong {
  color: var(--color-dark);
}

@media (max-width: 767px) {
  .student-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Combo of the Month */
.combo {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.combo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.combo-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.combo-title {
  font-size: var(--font-size-lg);
}

.combo-content p {
  color: var(--text-muted);
}

.combo-content .btn {
  max-width: 200px;
}

.combo-image {
  position: relative;
}

.combo-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
}

@media (max-width: 767px) {
  .combo-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .combo-badge {
    right: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Refer & Earn */
.refer {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.refer-steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.refer-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.refer-icon {
  width: 80px;
  margin: 0 auto 1rem;
  background-color: var(--color-primary-light);
  border-radius: 50%;
}

.refer-title {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.refer-step p {
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .refer-steps {
    flex-direction: column;
    align-items: center;
  }
}

/* Never Miss a Deal */
.subscribe {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.subscribe-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subscribe-form .form-group {
  display: flex;
  flex-direction: column;
}

.subscribe-form label {
  font-size: var(--font-size-base);
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.subscribe-form input {
  padding: 0.75rem;
  border: 1px solid var(--color-mid);
  border-radius: 4px;
  font-size: var(--font-size-base);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary-light);
}

.form-checkbox {
  flex-direction: row !important;
}
.form-checkbox input {
  width: auto;
}

.subscribe-form .form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.subscribe-form .form-checkbox label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.subscribe-form .form-checkbox a {
  color: var(--color-primary);
  text-decoration: none;
}

.subscribe-form .form-checkbox a:hover {
  text-decoration: underline;
}

.subscribe-form .btn {
  max-width: 200px;
  align-self: center;
}

/* Cart Section */
.cart {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.cart-empty {
  text-align: center;
  padding: 2rem;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-empty h2 {
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.cart-empty .btn-wrap {
  margin-top: 1rem;
}

.btn-remove {
  width: 30px;
  height: 30px;
  background: url(images/trash.svg) center/20px no-repeat;
}

.cart-table {
  margin-top: 2rem;
}

.cart-wrapper {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.cart-wrapper th,
.cart-wrapper td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-mid);
}

.cart-wrapper th {
  font-size: var(--font-size-base);
  color: var(--color-dark);
  text-transform: uppercase;
  white-space: nowrap;
}

.cart-wrapper td {
  color: var(--text-muted);
}

.cart-summary {
  text-align: right;
  font-size: var(--font-size-lg);
  color: var(--color-dark);
}

.cart-summary strong {
  color: var(--color-primary);
}

.cart-table .btn-wrap {
  text-align: center;
  margin-top: 1.5rem;
}

.cart-table .btn {
  max-width: 200px;
}

@media (max-width: 767px) {
  .cart-wrapper table {
    display: block;
    overflow-x: auto;
  }
}

/* Checkout Section */
.checkout {
  padding: 4rem 0;
  background-color: var(--color-white);
}

#checkoutContainer .cart-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* Checkout Form Section */
.checkout-form {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.checkout-form .form {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-cell {
  display: flex;
  flex-direction: column;
}

.form-input {
  padding: 0.75rem;
  border: 1px solid var(--color-mid);
  border-radius: 4px;
  font-size: var(--font-size-base);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary-light);
}

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-check span {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.form-check a {
  color: var(--color-primary);
  text-decoration: none;
}

.form-check a:hover {
  text-decoration: underline;
}

.form-submit .btn {
  max-width: 200px;
}

@media (max-width: 767px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero Gradient Background */
.hero-bg {
  background: linear-gradient(135deg, var(--color-primary) 20%, var(--color-secondary) 40%, var(--color-accent-light) 60%, var(--color-secondary-dark) 80%, var(--color-primary-light) 100%);
}

/* Privacy Policy Section */
.privacy {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h3 {
  font-size: var(--font-size-lg);
  margin: 1.5rem 0 0.5rem;
  color: var(--color-dark);
}

.privacy-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.privacy-contact {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.privacy-contact li {
  margin-bottom: 0.5rem;
}

.privacy-contact a {
  color: var(--color-primary);
  text-decoration: none;
}

.privacy-contact a:hover {
  text-decoration: underline;
}

/* Terms of Use Section */
.terms {
  padding: 4rem 0;
  background-color: var(--bg-section);
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-content h3 {
  font-size: var(--font-size-lg);
  margin: 1.5rem 0 0.5rem;
  color: var(--color-dark);
}

.terms-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.terms-contact {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.terms-contact li {
  margin-bottom: 0.5rem;
}

.terms-contact a {
  color: var(--color-primary);
  text-decoration: none;
}

.terms-contact a:hover {
  text-decoration: underline;
}

/* Thank You Section */
.thanks {
  padding: 4rem 0;
  background-color: var(--bg-section);
  text-align: center;
}

.thanks-content {
  max-width: 800px;
  margin: 0 auto;
}

.thanks-content h3 {
  font-size: var(--font-size-lg);
  margin: 1.5rem 0 0.5rem;
  color: var(--color-dark);
}

.thanks-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.thanks-contact {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.thanks-contact li {
  margin-bottom: 0.5rem;
}

.thanks-contact a {
  color: var(--color-primary);
  text-decoration: none;
}

.thanks-contact a:hover {
  text-decoration: underline;
}

.thanks-cta {
  margin-top: 2rem;
}

.thanks-cta .btn {
  max-width: 200px;
}
