/* Chomok Restaurant - Custom Styles */

:root {
  --brand-yellow: #feda00;
  --brand-yellow-dark: #1d1903;
  --brand-white: #e0e0ca;
  --brand-black: #000000;
  --brand-dark: #1f1f1f;
  --brand-cream: #fffcee;
  --divider-color: rgba(0, 0, 0, 0.1);
  --divider-color-dark: rgba(255, 255, 255, 0.2);
  --side-gap: clamp(8px, 1.5vw, 18px);
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/playfair-display-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-800.woff2') format('woff2');
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: var(--brand-cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ===== Header ===== */

.site-header {
  position: relative;
  margin: var(--side-gap) var(--side-gap) 0;
  z-index: 20;
}

/* Top info bar */
.top-bar {
  background-color: var(--brand-yellow-dark);
  color: var(--brand-white);
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 2px solid var(--brand-white);
}

.top-bar-item {
  padding: 8px 15px;
  text-align: center;
}

@media (min-width: 992px) {
  .top-bar-left {
    border-right: 2px solid var(--brand-white);
  }
}

@media (max-width: 991px) {
  .top-bar-right {
    display: none;
  }
}

/* Main nav */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  margin: 0 var(--side-gap);
  background-color: var(--brand-yellow-dark);
  padding: 15px clamp(15px, 4vw, 50px);
  border-bottom: 2px solid var(--brand-white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.main-nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-col {
  display: flex;
  align-items: center;
  padding-right: 1.5rem;
  margin-right: 1rem;
}

.logo-img {
  height: 55px;
  width: auto;
}

@media (min-width: 992px) {
  .logo-col {
    border-right: 2px solid var(--brand-white);
  }
}

@media (max-width: 991px) {
  .logo-img {
    height: 34px;
  }

  .logo-col {
    padding-right: 0;
    margin-right: 0;
  }
}

.menu-col {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

.main-menu {
  display: flex;
  gap: 5px;
  margin: 0;
}

.main-menu .nav-link {
  color: var(--brand-white);
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-menu .nav-link.active,
.main-menu .nav-link:hover {
  color: var(--brand-white);
  border-bottom: 2px solid var(--brand-white);
}

.main-nav .navbar-toggler {
  border-color: var(--brand-white);
}

.main-nav .navbar-toggler-icon {
  filter: invert(1);
}

.cart-col {
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  margin-left: 1rem;
}

@media (min-width: 992px) {
  .cart-col {
    border-left: 2px solid var(--brand-white);
  }
}

@media (max-width: 991px) {
  .cart-col {
    display: none;
  }
}

.cart-link {
  color: var(--brand-white);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cart-link:hover {
  opacity: 0.6;
}

/* ===== Hero Slider ===== */

.hero-slider {
  position: relative;
  margin: 10px var(--side-gap) 0;
}

#heroCarousel {
  --bs-carousel-transition-duration: 1.2s;
}

.carousel-item .slider-img {
  height: 70vh;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0) 65%
  );
}

.slider-caption {
  position: absolute;
  left: clamp(20px, 5vw, 60px);
  bottom: clamp(20px, 5vw, 50px);
  right: clamp(20px, 5vw, 60px);
  text-align: left;
}

.caption-inner {
  max-width: 460px;
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.caption-eyebrow,
.caption-title,
.caption-text,
.caption-buttons {
  opacity: 0;
  transform: translateY(25px);
}

.carousel-item.active .caption-eyebrow,
.carousel-item.active .caption-title,
.carousel-item.active .caption-text,
.carousel-item.active .caption-buttons {
  animation: captionRise 0.8s ease forwards;
}

.carousel-item.active .caption-eyebrow { animation-delay: 0.3s; }
.carousel-item.active .caption-title  { animation-delay: 0.5s; }
.carousel-item.active .caption-text   { animation-delay: 0.7s; }
.carousel-item.active .caption-buttons { animation-delay: 0.9s; }

@keyframes captionRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.caption-eyebrow {
  display: inline-block;
  color: var(--brand-yellow);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.caption-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.caption-text {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.caption-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-brand-yellow {
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
  font-weight: 700;
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: 4px;
  border: 2px solid var(--brand-yellow);
  transition: all 0.3s ease;
}

.btn-brand-yellow:hover {
  background-color: transparent;
  color: var(--brand-white);
  border-color: var(--brand-white);
}

.btn-brand-outline {
  background-color: transparent;
  color: var(--brand-white);
  font-weight: 700;
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: 4px;
  border: 2px solid var(--brand-white);
  transition: all 0.3s ease;
}

.btn-brand-outline:hover {
  background-color: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: var(--brand-dark);
}

@media (max-width: 768px) {
  .caption-title {
    font-size: 1.5rem;
  }

  .caption-text {
    font-size: 0.85rem;
  }

  .caption-inner {
    max-width: 100%;
    padding: 20px 22px;
  }
}

/* ===== Category Scroller ===== */

.category-scroller {
  background-color: var(--brand-white);
  overflow: hidden;
  margin: 15px var(--side-gap) 0;
  padding: 22px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.scroller-track {
  display: flex;
  width: max-content;
  animation: scrollLeftToRight 22s linear infinite;
}

.category-scroller:hover .scroller-track {
  animation-play-state: paused;
}

.scroller-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 40px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-dark);
  position: relative;
}

.scroller-item::after {
  content: "";
  position: absolute;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-yellow-dark);
}

.scroller-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

@keyframes scrollLeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

@media (max-width: 768px) {
  .scroller-item {
    font-size: 1.05rem;
    padding: 0 26px;
  }

  .scroller-emoji {
    font-size: 1.3rem;
  }
}

/* ===== About Section ===== */

.about-section {
  background-color: var(--brand-cream);
  padding: 70px var(--side-gap) 60px;
}

.about-container {
  width: 100%;
  text-align: center;
}

.about-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-yellow);
  color: var(--brand-dark);
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.about-heading {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-dark);
  line-height: 1.05;
  margin: 0 0 35px;
}

.heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: clamp(2.4rem, 6vw, 5rem);
  flex-wrap: wrap;
}

.heading-row-2 {
  font-size: clamp(2.4rem, 6.5vw, 5.3rem);
  margin-top: 10px;
}

.heading-img {
  object-fit: cover;
  border: 3px solid var(--brand-yellow);
  flex-shrink: 0;
}

.pill-img {
  width: clamp(90px, 12vw, 160px);
  height: clamp(48px, 6vw, 80px);
  border-radius: 50px;
}

.circle-img {
  width: clamp(60px, 7vw, 100px);
  height: clamp(60px, 7vw, 100px);
  border-radius: 50%;
}

.about-footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.about-text-col {
  max-width: 420px;
  margin: 0 auto;
}

.about-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-dark);
  line-height: 1.6;
  margin-bottom: 22px;
}

.btn-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--brand-dark);
  color: var(--brand-white);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 50px;
  transition: background-color 0.25s ease;
}

.btn-about-cta:hover {
  background-color: var(--brand-yellow-dark);
  color: var(--brand-white);
}

.cta-arrow {
  font-size: 1.1rem;
}

.about-trust-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.trust-arrow {
  color: var(--brand-yellow);
  transform: scaleX(-1);
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--brand-white);
  background-color: var(--brand-cream);
  font-size: 1.3rem;
  margin-left: -12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-count {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.trust-count strong {
  font-size: 1.3rem;
  color: var(--brand-dark);
}

.trust-count span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-dark);
  opacity: 0.7;
}

@media (max-width: 576px) {
  .trust-arrow {
    display: none;
  }
}

/* ===== Menu / Product List ===== */

.menu-section {
  padding: 20px var(--side-gap) 10px;
  background-image: url('../images/food_section_background.png');
  background-repeat: repeat;
  background-position: top left;
}

.menu-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.menu-section-head .badge-text {
  display: inline-block;
  margin-bottom: 10px;
}

.menu-section-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--brand-dark);
  text-transform: uppercase;
  margin: 0;
}

.menu-category {
  border-radius: 20px;
  margin-bottom: 25px;
  overflow: hidden;
}

.menu-category-inner {
  padding: 20px 0;
  text-align: center;
}

.menu-cat-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--brand-white);
  background-color: var(--brand-yellow-dark);
  padding: 15px;
  margin-bottom: 15px;
}

.menu-subtitle {
  display: block;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin: 25px 0 16px;
}

.menu-subtitle:first-of-type {
  margin-top: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

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

@media (max-width: 575px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-item {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.menu-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-item-photo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  margin-right: -85px;
}

.menu-item-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.3));
}

.menu-item-banner {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 150px;
  background-image: url('../images/food_background.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 10px 24px 10px 100px;
}

.menu-item-name {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--brand-dark);
  line-height: 1.1;
  margin: 0 0 6px;
}

.menu-item-desc {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--brand-dark);
  opacity: 0.8;
  margin: 4px 0 0;
  order: 1;
}

.menu-item-price,
.menu-item-prices {
  margin: 6px 0 0;
  order: 0;
}

.menu-item-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.menu-item-price,
.price-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
  border-radius: 0;
  background-color: transparent;
  padding: 5px 10px;
}

.menu-item-price {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

.price-pill {
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.price-pill-input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.price-pill:has(.price-pill-input:checked) {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

.price-pill em {
  font-style: normal;
}

.price-pill em::after {
  content: " - ";
}

.menu-item-actions {
  margin-top: 14px;
  order: 2;
}

.btn-add-cart {
  border: none;
  padding: 10px 22px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-white);
  background-color: var(--brand-dark);
  cursor: pointer;
  transition: filter 0.2s ease;
}

.btn-add-cart:hover {
  filter: brightness(1.3);
}

@media (max-width: 575px) {
  .menu-item {
    flex-direction: column;
  }

  .menu-item-photo {
    width: 190px;
    height: 190px;
    margin-right: 0;
    margin-bottom: -95px;
  }

  .menu-item-banner {
    width: 100%;
    align-items: center;
    text-align: center;
    background-image: url('../images/food_background_mobile.png');
    padding: 110px 20px 20px;
  }

  .menu-item-prices {
    justify-content: center;
  }
}

/* ===== Promo Banner Grid ===== */

.banner-section {
  margin: 10px var(--side-gap) 40px;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.banner-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
}

.banner-card:nth-child(1) { grid-column: span 5; }
.banner-card:nth-child(2) { grid-column: span 7; }
.banner-card:nth-child(3) { grid-column: span 4; }
.banner-card:nth-child(4) { grid-column: span 4; }
.banner-card:nth-child(5) { grid-column: span 4; }

.banner-card--img-left {
  flex-direction: row-reverse;
}

.banner-fried-rice    { background-color: #4a1f12; }
.banner-pizza         { background-color: #f0a833; }
.banner-burger        { background-color: #16130f; }
.banner-pasta         { background-color: #dcdcd6; }
.banner-fried-chicken { background-color: #f3e6c8; }

.banner-fried-rice .banner-text,
.banner-burger .banner-text {
  color: var(--brand-white);
}

.banner-pizza .banner-text,
.banner-pasta .banner-text,
.banner-fried-chicken .banner-text {
  color: #4a1f12;
}

.banner-text {
  position: relative;
  z-index: 1;
  max-width: 60%;
}

.banner-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.banner-desc {
  font-size: 0.8rem;
  opacity: 0.85;
  line-height: 1.4;
  margin: 0 0 14px;
}

.banner-price {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.banner-photo {
  flex-shrink: 0;
  width: 42%;
  align-self: stretch;
}

.banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.btn-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: none;
}

.btn-buy-now.is-yellow {
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
}

.btn-buy-now.is-white {
  background-color: var(--brand-white);
  color: #4a1f12;
}

.btn-buy-now.is-dark {
  background-color: #2a1810;
  color: var(--brand-white);
}

@media (max-width: 767px) {
  .banner-card,
  .banner-card:nth-child(1),
  .banner-card:nth-child(2),
  .banner-card:nth-child(3),
  .banner-card:nth-child(4),
  .banner-card:nth-child(5) {
    grid-column: span 12;
  }
}

/* ===== Office & Outlets ===== */

.outlets-section {
  margin: 10px var(--side-gap) 60px;
}

.outlets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.outlet-card {
  background-color: var(--brand-white);
  overflow: hidden;
}

.outlet-map {
  position: relative;
  width: 100%;
  height: 220px;
  background-color: var(--brand-cream);
}

.outlet-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.outlet-info {
  padding: 18px 20px 22px;
}

.outlet-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 0 0 8px;
}

.outlet-address {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--brand-dark);
  opacity: 0.75;
  margin: 0;
}

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

@media (max-width: 575px) {
  .outlets-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Hungry CTA ===== */

.cta-section {
  position: relative;
  background-color: var(--brand-yellow);
  padding: 70px 20px 0;
  overflow: hidden;
}

.cta-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-bottom: 90px;
}

.cta-text {
  text-align: center;
  max-width: 460px;
}

.cta-heading {
  color: #4a1f12;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 14px;
}

.cta-subtext {
  color: #4a1f12;
  font-size: 0.95rem;
  margin: 0 0 24px;
}

.btn-cta-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-white);
  color: #4a1f12;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 30px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.btn-cta-book:hover {
  transform: translateY(-3px);
}

.cta-img {
  flex-shrink: 0;
  width: 220px;
  position: relative;
}

.cta-img::before {
  content: "";
  position: absolute;
  inset: -14px;
  background-color: var(--brand-white);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  z-index: 0;
}

.cta-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cta-img-left img {
  transform: rotate(-8deg);
}

.cta-img-right img {
  transform: rotate(8deg);
}

.cta-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
}

.cta-wave svg {
  display: block;
  width: 100%;
  height: 90px;
}

.cta-wave path {
  fill: #2a1810;
}

@media (max-width: 767px) {
  .cta-content {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 70px;
  }

  .cta-img {
    width: 160px;
  }

  .cta-img img {
    height: 130px;
  }
}

/* ===== Footer ===== */

.site-footer {
  background-color: #2a1810;
  margin-top: -1px;
  padding: 0 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 20px 0 40px;
}

.footer-logo {
  color: var(--brand-yellow);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 20px;
}

.footer-address {
  display: flex;
  gap: 12px;
}

.footer-address-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.footer-address h4 {
  color: var(--brand-white);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.footer-address p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.footer-col h4 {
  color: var(--brand-white);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--brand-yellow);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--brand-yellow);
}

@media (max-width: 767px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ===== Floating Side Action Stack & Offcanvas ===== */

.side-fab-stack {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  background-color: var(--brand-dark);
  box-shadow: -4px 4px 18px rgba(0, 0, 0, 0.25);
}

.fab-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.fab-btn:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.fab-btn:hover {
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
}

.cart-fab-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--brand-yellow);
  color: var(--brand-dark);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1.5px solid var(--brand-dark);
}

.fab-btn:hover .cart-fab-badge {
  border-color: var(--brand-white);
}

.cart-offcanvas {
  width: 380px;
  max-width: 90vw;
}

.cart-offcanvas .offcanvas-header {
  background-color: var(--brand-yellow);
  border-bottom: 2px solid var(--brand-dark);
}

.cart-offcanvas .offcanvas-title {
  font-size: 1.3rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background-color: var(--brand-cream);
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cart-item-name {
  font-size: 0.95rem;
  margin: 0;
}

.cart-item-variant {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--brand-dark);
  opacity: 0.6;
}

.cart-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--brand-dark);
  flex-shrink: 0;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

.qty-value {
  min-width: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.cart-offcanvas-footer {
  padding: 16px 20px 20px;
  border-top: 2px solid var(--brand-dark);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 14px;
}

.btn-checkout {
  width: 100%;
  border: none;
  background-color: var(--brand-dark);
  color: var(--brand-white);
  padding: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-checkout:hover {
  background-color: var(--brand-yellow-dark);
}

@media (max-width: 575px) {
  body {
    padding-bottom: 56px;
  }

  .side-fab-stack {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.25);
  }

  .fab-btn {
    flex: 1;
    width: auto;
    height: 56px;
  }

  .fab-btn:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
}
