/* ============================================
   La Popular Bakery — Webflow-Based Design System
   Extracted from la-popular-bakery.webflow.css
   ============================================ */

/* --- Font Faces (self-hosted Oswald) --- */
@font-face {
  font-family: Oswald;
  src: url("fonts/Oswald-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Oswald;
  src: url("fonts/Oswald-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Oswald;
  src: url("fonts/Oswald-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables (Design Tokens) --- */
:root {
  --greenish-blue: #07281e;
  --selective-yellow: #ffb91d;
  --floral-white: #f6f1e8;
  --alabaster: #f4ede1;
  --light-sand: #eadfcb;
  --greenish-gray: #5b786f;
  --davy-s-grey: #515151;
  --white: #ffffff;
  --black: #000000;
  --transparent: #fff0;
  --warm-ivory: #faf2e8;
  --chinese-silver: #c9c7c7;
  --font-h1: 60px;
  --font-h2: 40px;
  --font-h3: 30px;
  --font-h4: 24px;
  --font-h5: 20px;
  --font-h6: 18px;
  --font-body: 16px;
  --radius: 10px;
  --radius-pill: 100px;
  --container: 1320px;
  --container-big: 1630px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Lato", "Roboto", sans-serif;
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--davy-s-grey);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--davy-s-grey);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--selective-yellow);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Oswald, Arial, sans-serif;
  font-weight: 500;
  color: var(--greenish-blue);
  text-transform: uppercase;
  margin: 0;
}

h1 {
  font-size: var(--font-h1);
  letter-spacing: -0.64px;
  line-height: 1.16667;
}
h2 {
  font-size: var(--font-h2);
  letter-spacing: -0.48px;
  line-height: 1.25;
}
h3 {
  font-size: var(--font-h3);
  line-height: 1.46667;
}
h4 {
  font-size: var(--font-h4);
  line-height: 1.41667;
}
h5 {
  font-size: var(--font-h5);
  line-height: 1.5;
}
h6 {
  font-size: var(--font-h6);
  line-height: 1.55556;
}

p {
  color: var(--davy-s-grey);
  font-size: var(--font-body);
  line-height: 1.75;
  margin-bottom: 10px;
}

strong {
  text-transform: uppercase;
  color: #0f1214;
  font-family: Oswald, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

/* --- Layout Utilities --- */
.rt-container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.rt-big-container {
  max-width: var(--container-big);
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.rt-position-relative {
  position: relative;
}
.rt-position-absolute {
  position: absolute;
}
.rt-overflow-hidden {
  overflow: hidden;
}
.rt-radius-ten {
  border-radius: var(--radius);
}
.rt-gap-off {
  margin-top: 0;
  margin-bottom: 0;
}
.rt-color-white {
  color: var(--white);
}
.rt-text-align-center {
  text-align: center;
}
.rt-auto-fit {
  object-fit: cover;
}
.rt-align-xy-center {
  justify-content: center;
  align-items: center;
}

.rt-auto-fit.rt-bottom-radius-ten {
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.rt-auto-fit.rt-top-radius-ten {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

/* --- Navigation --- */
.rt-navbar {
  background-color: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.rt-navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.rt-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.rt-brand {
  font-family: Oswald, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--greenish-blue);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 20px 0;
}

.rt-brand:hover {
  opacity: 0.75;
}

/* Footer/dark-bg brand: force white so it's always visible (fixes
   equal-specificity bug where .rt-brand's dark color was winning over
   .rt-color-white by source order). */
.rt-brand.rt-color-white {
  color: var(--white);
}
.rt-brand.rt-color-white:hover {
  color: var(--selective-yellow);
  opacity: 1;
}

.rt-nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.rt-menu-text {
  color: var(--davy-s-grey);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.625;
  padding: 30px 15px;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
}

.rt-menu-text:hover,
.rt-menu-text.active {
  color: var(--black);
}

.rt-nav-right-side {
  display: flex;
  gap: 15px;
  align-items: center;
}

.rt-devaider {
  width: 1px;
  height: 30px;
  background: var(--chinese-silver);
}

.rt-nav-shadow {
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.lang-toggle button {
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--greenish-gray);
  transition: all var(--transition);
  font-family: Oswald, sans-serif;
}

.lang-toggle button.active {
  color: var(--white);
  background: var(--selective-yellow);
}

.lang-toggle span {
  color: var(--chinese-silver);
}

/* Mobile Hamburger */
.mobile-list-button {
  display: none;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.nav-open-mobile-button {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 28px;
}

.mobile-list-line-one,
.mobile-list-line-two,
.mobile-list-line-three {
  width: 100%;
  height: 2px;
  background: var(--greenish-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-list-button.open .mobile-list-line-one {
  transform: rotate(45deg) translate(5px, 6px);
}
.mobile-list-button.open .mobile-list-line-two {
  opacity: 0;
}
.mobile-list-button.open .mobile-list-line-three {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Pill Buttons (Webflow style) --- */
.rt-button {
  border-radius: var(--radius-pill);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  border: 1px solid var(--selective-yellow);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.rt-button-inner-wrap {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.rt-button-text-wrap {
  position: relative;
  overflow: hidden;
}

.rt-button-text {
  color: var(--greenish-blue);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.86667;
  transition: transform 0.3s ease;
}

.rt-buttom-arrow-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  width: 11px;
  height: 12px;
}

.rt-arrow-image {
  transition: transform 0.3s ease;
}

.rt-button-hover-arrow {
  position: absolute;
  top: 100%;
  transition: transform 0.3s ease;
}

.rt-color-overley {
  background-color: var(--selective-yellow);
  width: 120%;
  height: 120%;
  position: absolute;
  top: 100%;
  left: -10%;
  transition: top 0.4s ease;
  z-index: 1;
}

.rt-button:hover .rt-color-overley {
  top: -10%;
}

.rt-button:hover .rt-button-text {
  color: var(--greenish-blue);
}

.rt-button:hover .rt-arrow-image {
  transform: translateY(-100%);
}

.rt-button:hover .rt-button-hover-arrow {
  transform: translateY(-100%);
}

/* White text button variant (for dark backgrounds) */
.rt-button.white-text {
  border-color: var(--white);
}

.rt-button.white-text .rt-button-text {
  color: var(--white);
}

.rt-button.white-text .rt-color-overley {
  background-color: var(--white);
}

.rt-button.white-text:hover .rt-button-text {
  color: var(--greenish-blue);
}

/* --- Hero Section (Homepage V3) --- */
.rt-hero-home-v3 {
  background-color: var(--floral-white);
  padding-top: 100px;
  padding-bottom: 30px;
  z-index: 1;
}

.rt-hero-wrapper-home-v3 {
  display: flex;
  align-items: center;
  gap: 30px;
}

.rt-hero-heading-left-side {
  flex: 1;
  max-width: 460px;
}

.rt-hero-heading-bottom-padding {
  padding-bottom: 25px;
}

.rt-heading-description-bottom-padding {
  padding-bottom: 35px;
}

.rt-hero-description-wrap-v3 {
  color: var(--davy-s-grey);
  font-size: 16px;
  line-height: 1.75;
}

.rt-hero-content-right-side {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.rt-flex-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 50px;
  height: 100%;
  padding-top: 20px;
}

.rt-flex {
  display: contents;
}

.rt-image-wrap {
  display: none;
}

.rt-sticker {
  z-index: 10;
  position: absolute;
  top: 60px;
  right: 350px;
  transform: rotate(12deg);
  pointer-events: auto;
}

.rt-sticker.rt-position-absolute {
  position: absolute;
}

.rt-sticker img {
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.rt-features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  pointer-events: auto;
  margin-top: 60px;
}

.rt-features-inner-wrap {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 16px 24px;
  background: transparent;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.rt-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.rt-icon-box img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.rt-text-style-h6 {
  color: var(--greenish-blue);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

/* Social Icons */
.rt-social-icon-main-wrap {
  padding-top: 30px;
}

.rt-social-icon-wrap {
  display: flex;
  gap: 12px;
}

.rt-social-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--light-sand);
  transition: all 0.3s ease;
}

.rt-social-icon-box:hover {
  background: var(--selective-yellow);
  border-color: var(--selective-yellow);
}

.rt-social-hover {
  text-decoration: none;
}

.rt-tittle-text {
  padding-bottom: 22px;
  color: var(--greenish-blue);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/* --- Hero Center Image --- */
.image-3 {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transform: translate(-70px, 70px);
}

/* --- Text Marquee Banner --- */
.rt-hero-big-text-banner-big-text-wrap-v1 {
  display: flex;
  width: 100%;
  margin-top: 10px;
}

.rt-marquee-train {
  display: flex;
  animation: marquee-scroll 20s linear infinite;
  flex-shrink: 0;
}

.rt-marquee-text {
  font-family: Oswald, Arial, sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 600;
  color: var(--greenish-blue);
  opacity: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 30px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.rt-marquee-text::after {
  content: "La Popular Panaderia";
}

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

/* --- Three Location Cards --- */
.rt-menu-three-item {
  padding-bottom: 150px;
  display: block;
  position: relative;
  z-index: 2;
  background-color: var(--floral-white);
}

.rt-three-item-wrapper {
  display: flex;
  background-image: url("images/Rectangle-16992.webp");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 365px;
  padding-bottom: 80px;
  padding-left: 85px;
  padding-right: 85px;
}

.rt-three-item-wrapper.rt-position-relative {
  gap: 80px;
  justify-content: center;
  margin-top: -184px;
}

.rt-three-item-wrapper.rt-position-relative.rt-shadow {
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 80px 40px -34px #07281e66;
}

.rt-item {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: min(298px, 86vw);
  margin-top: clamp(-100px, -9vw, -40px);
  display: flex;
  text-decoration: none;
  transition: all 0.4s ease;
}

.rt-image-wrapper {
  background-color: #eadfcb;
  background-image: url("images/Untitled-design-11.avif");
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  width: clamp(140px, 22vw, 263px);
  height: clamp(140px, 22vw, 263px);
  transition: all 0.4s ease;
  overflow: hidden;
}

.rt-item:hover .rt-image-wrapper {
  transform: scale(1.05);
}

.rt-category-coffee-image {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.circle-inner-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 80%;
  height: auto;
}

.rt-menu-item-details-wrap {
  padding-top: 31px;
}

.rt-text-style-h4 {
  color: var(--greenish-blue);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.41667;
}

.rt-item-name {
  padding-bottom: 17px;
}

.rt-text-style-h4.rt-color-white {
  color: var(--white);
}

/* --- Our Story / Cities (Dark Green Section) --- */
.rt-our-story.rt-v2 {
  background-color: var(--greenish-blue);
  padding-top: 150px;
  padding-bottom: 150px;
}

.rt-our-story-content-wrapper-v2 {
  display: flex;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.rt-our-story-left-side-v2 {
  flex: 1;
  max-width: 530px;
  position: relative;
  padding-right: 60px;
}

/* Homepage-only spacing now that the overlay image was removed */
.rt-home-story-media {
  padding-right: 24px;
}

.rt-our-story-right-side-v2 {
  padding-left: 24px;
}

.rt-our-story-right-image-v1 {
  width: 100%;
  max-width: 360px;
  /* Matches the bakery-truck video's real content aspect (the source
     file has white bars at x=33%-67%, so only the center 11:18 strip
     is actual footage). With object-fit:cover this aspect crops the
     white bars out automatically. */
  aspect-ratio: 11 / 18;
  height: auto;
  border-radius: 28px;
  overflow: hidden;
  margin: 0 auto;
}

.rt-our-story-right-image-v1 img,
.rt-our-story-right-image-v1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rt-our-story-right-image-v2 {
  display: flex;
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 410px;
  height: 396px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid var(--greenish-blue);
}

.rt-our-story-right-image-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-our-story-right-side-v2 {
  flex: 1;
}

.rt-our-story-heading-wrap {
  max-width: 570px;
}

.rt-heading-bottom-padding {
  padding-bottom: 33px;
}

.rt-our-story-description {
  color: var(--greenish-gray);
  line-height: 1.75;
}

.rt-our-story-description.rt-change-color {
  color: rgba(255, 255, 255, 0.7);
}

.rt-time-table-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 35px;
  padding-top: 10px;
}

.rt-text-style-h6.rt-change-color-v3 {
  color: rgba(255, 255, 255, 0.6);
}

a.rt-city-link {
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.rt-city-link:hover {
  color: var(--selective-yellow);
}

.rt-change-width-v4 {
  max-width: 100%;
}
.rt-features-heading-icon {
  display: none;
}

/* --- Image Marquee Gallery --- */
.rt-marquee-section-home-v3 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  padding: 80px 0;
  gap: 20px;
  background: var(--white);
}

.rt-marquee-top-main-wrapper {
  display: flex;
  gap: 20px;
}

.rt-marquee-bottom-main-wrapper {
  display: flex;
  gap: 20px;
}

.rt-marquee-train-home-v3 {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  animation: marquee-gallery 40s linear infinite;
}

.rt-marquee-train-home-v3.rt-bg-change {
  animation-direction: reverse;
}

.rt-marquee-train-home-v3.align-top {
  animation-direction: reverse;
}

.rt-marquee-item {
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.rt-marquee-item.tall {
  width: 280px;
  height: 380px;
}

.rt-marquee-item.wide {
  width: 320px;
  height: 240px;
}

.rt-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes marquee-gallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 20px));
  }
}

/* --- Testimonial Section --- */
.rt-testimonial-home-v1 {
  background-color: var(--white);
  padding-top: 100px;
  padding-bottom: 120px;
}

.rt-testimonial-heading-home-v1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rt-heading-card-bottom-padding {
  padding-bottom: 52px;
}

.rt-testimonial-content-wrapper-home-v1 {
  display: flex;
  gap: 30px;
  position: relative;
  align-items: stretch;
}

.rt-testimonial-left-side {
  flex: 1 1 55%;
  min-width: 0;
  order: 2;
}

.rt-testimonial-left-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.rt-testimonial-left-image img {
  width: 100%;
  height: auto;
}

.rt-vedio-block {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.rt-vedio-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-testimonial-right-side {
  flex: 1 1 45%;
  min-width: 0;
  order: 1;
  position: relative;
}

.rt-inner-testimonial-right-side {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Static Reviews */
.rt-static-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rt-review-heading {
  padding-bottom: 20px;
}

.rt-text-style-h3 {
  color: var(--greenish-blue);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.46667;
}

.rt-review-description-v2 {
  padding-bottom: 20px;
}

.rt-review-description {
  color: var(--davy-s-grey);
  line-height: 1.75;
}

.rt-review-block-border {
  border-bottom: 1px solid var(--chinese-silver);
  margin-bottom: 20px;
}

.rt-review-author-detail-wrap {
  overflow: hidden;
}

.rt-testimonial-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.rt-review-rating-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rt-review-star-wrapper {
  display: flex;
  gap: 2px;
}

.rt-review-star-wrapper img {
  width: 16px;
  height: 16px;
}

.rt-podition-quote-element {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20px;
  right: 30px;
  z-index: 10;
}

.rt-display-none {
  display: flex;
}
.rt-star-view-none {
  display: none;
}

/* --- Menu Hero Section --- */
.rt-menu-hero {
  background-color: var(--floral-white);
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.rt-menu-hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
}

.rt-menu-hero-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg, var(--white) 0%, transparent 100%);
}

.rt-menu-content-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-end;
}

.rt-product-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rt-product-wrap.rt-top-auto {
  align-self: flex-start;
  margin-top: 60px;
}

.rt-product-image {
  position: relative;
  margin-bottom: 20px;
}

.rt-product-details-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rt-text-style-h5 {
  color: var(--greenish-blue);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.rt-star-wrapper {
  display: flex;
  gap: 4px;
}

.rt-star-image img {
  width: 20px;
  height: 20px;
}

.rt-amount-text-color-change {
  color: var(--black);
}

/* --- Contact Form Section --- */
.rt-contact-form {
  background-color: var(--greenish-blue);
  padding-top: 160px;
  padding-bottom: 80px;
}

.rt-contact-form-content {
  display: flex;
  gap: 60px;
}

.rt-contact-form-left-side {
  flex: 1;
}

.rt-contact-form-right-side {
  flex: 1;
}

.rt-h3-bottom-gap {
  padding-bottom: 24px;
}

.rt-our-details-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rt-change-color {
  color: var(--floral-white);
}

.rt-details-heading {
  padding-bottom: 8px;
}

.rt-contact-form .rt-our-details-wrap,
.rt-contact-form .rt-our-details-wrap a,
.rt-contact-form .rt-our-details-wrap strong,
.rt-contact-form .rt-our-details-wrap div {
  color: #fff;
}

.rt-hover {
  transition: all 0.3s;
}

.rt-hover:hover {
  color: var(--selective-yellow);
}

/* Contact Form Inputs */
.rt-contact-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: var(--white);
  transition: all 0.3s ease;
  outline: none;
}

.rt-contact-input:focus {
  border-color: var(--selective-yellow);
  background: rgba(255, 255, 255, 0.12);
}

.rt-contact-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.rt-contact-textarea {
  min-height: 140px;
  resize: vertical;
}

.rt-contact-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23fff'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.rt-contact-select option {
  background: var(--greenish-blue);
  color: var(--white);
}

.rt-form-status {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  display: none;
  margin-top: 12px;
}

.rt-form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}

.rt-form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}

/* Light variant nav (for dark background pages) */
.rt-navbar.light-variant .rt-brand,
.rt-navbar.light-variant .rt-menu-text {
  color: rgba(255, 255, 255, 0.7);
}

.rt-navbar.light-variant .rt-menu-text:hover,
.rt-navbar.light-variant .rt-menu-text.active {
  color: var(--white);
}

.rt-navbar.light-variant .mobile-list-line-one,
.rt-navbar.light-variant .mobile-list-line-two,
.rt-navbar.light-variant .mobile-list-line-three {
  background: var(--white);
}

.rt-navbar.light-variant .rt-devaider {
  background: rgba(255, 255, 255, 0.2);
}

.rt-navbar.light-variant.scrolled {
  background-color: var(--greenish-blue);
}

.rt-navbar.light-variant.scrolled .rt-brand {
  color: var(--white);
}

/* --- Footer --- */
.rt-footer {
  position: relative;
  background-color: var(--greenish-blue);
  padding-top: 100px;
  padding-bottom: 30px;
  overflow: hidden;
  isolation: isolate;
}

.rt-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/footer-bg.webp");
  background-position: 50%;
  background-size: cover;
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}

.rt-footer > .rt-container {
  position: relative;
  z-index: 1;
}

.rt-footer-content-wrapper {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 32px;
  flex-wrap: wrap;
}

.rt-footer-menu-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.rt-footer-social-iconbox-wrapper {
  display: flex;
  gap: 12px;
}

.rt-social-box-wrapper {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}

.rt-social-box-wrapper img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s;
}

.rt-social-box-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.rt-social-box-wrapper:hover img {
  opacity: 1;
}

.rt-footer-bottom-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 23px;
  padding-bottom: 22px;
}

.rt-footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.rt-footer-links li {
  margin: 0;
}

.rt-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.3s;
}

.rt-footer-links a:hover {
  color: var(--white);
}

/* Bottom row: make spacing + legibility consistent on a dark bg */
.rt-footer-bottom-content-wrapper .rt-change-color {
  color: rgba(255, 255, 255, 0.55);
}
.rt-footer-bottom-content-wrapper a.rt-footer-links {
  display: inline;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.rt-footer-bottom-content-wrapper a.rt-footer-links:hover {
  color: var(--white);
}

/* --- 404 Page --- */
.rt-utility-page-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.rt-utility-page-content {
  text-align: center;
}

.rt-error-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.rt-error-content-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.rt-error-content img {
  max-width: 100%;
  height: auto;
}

.rt-error-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rt-404-hover {
  color: var(--selective-yellow);
  text-decoration: underline;
}

.rt-404-button {
  margin-top: 20px;
}

/* --- Inner Page Hero --- */
.rt-inner-hero {
  background-color: var(--floral-white);
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
}

.rt-inner-hero h1 {
  margin-bottom: 16px;
}

.rt-inner-hero p {
  max-width: 600px;
  margin: 0 auto;
}

/* --- Location Pages (city-level polish) --- */
.rt-location-page .rt-inner-hero {
  background:
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(255, 185, 29, 0.12) 0%,
      rgba(255, 185, 29, 0) 55%
    ),
    var(--floral-white);
  padding-top: 132px;
  padding-bottom: 72px;
  text-align: left;
  border-bottom: 1px solid rgba(7, 40, 30, 0.08);
}

.rt-location-page .rt-inner-hero .rt-container {
  max-width: 960px;
}

.rt-location-page .rt-inner-hero h1 {
  font-size: clamp(44px, 6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.rt-location-page .rt-inner-hero p {
  margin: 0;
  max-width: 720px;
  color: var(--greenish-gray);
  font-size: clamp(18px, 2.1vw, 32px);
  line-height: 1.35;
}

.rt-location-page .rt-section {
  padding: 64px 0;
}

.rt-location-page .rt-info-card {
  border: 1px solid rgba(7, 40, 30, 0.1);
  box-shadow: 0 18px 38px rgba(7, 40, 30, 0.08);
}

.rt-location-page .grid-2 {
  gap: 28px;
}

.rt-location-page .grid-2 img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(7, 40, 30, 0.16);
}

.rt-location-page .rt-breadcrumbs {
  font-size: 0.92rem;
}

.rt-location-page .rt-breadcrumbs [aria-current="page"] {
  color: var(--greenish-blue);
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .rt-location-page .rt-inner-hero {
    padding-top: 118px;
    padding-bottom: 52px;
  }

  .rt-location-page .rt-inner-hero h1 {
    font-size: clamp(36px, 9vw, 48px);
  }

  .rt-location-page .rt-inner-hero p {
    font-size: clamp(15px, 4.4vw, 22px);
  }

  .rt-location-page .grid-2 img {
    max-height: 420px;
  }
}

/* Othello-only creative treatment */
.rt-location-othello {
  background: linear-gradient(180deg, #f7f7f7 0%, #f4f1eb 100%);
}

.rt-location-othello .rt-breadcrumbs {
  padding-bottom: 22px;
}

.rt-location-othello .rt-inner-hero {
  background:
    linear-gradient(130deg, rgba(7, 40, 30, 0.08) 0%, rgba(7, 40, 30, 0) 45%),
    #f3efe8;
}

.rt-location-othello .rt-inner-hero h1 {
  text-wrap: balance;
}

.rt-location-othello .rt-section {
  position: relative;
}

.rt-location-othello .rt-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(7, 40, 30, 0) 0%,
    rgba(7, 40, 30, 0.08) 30%,
    rgba(7, 40, 30, 0.08) 70%,
    rgba(7, 40, 30, 0) 100%
  );
}

.rt-location-othello .rt-info-card {
  border-radius: 16px;
  padding: 36px;
}

.rt-location-othello .rt-info-card h2,
.rt-location-othello .rt-info-card h3 {
  color: var(--greenish-blue);
  letter-spacing: -0.01em;
}

.rt-location-othello .rt-othello-warning {
  background: #f8f1e6;
  border-left: 5px solid #e56b1f;
}

.rt-location-othello .rt-othello-warning p {
  font-size: 1.05rem;
  color: #3f4e4a;
}

.rt-location-othello .rt-othello-city-section {
  background: transparent;
}

.rt-location-othello .rt-othello-city-grid {
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.rt-location-othello .rt-othello-city-card {
  height: 100%;
}

.rt-location-othello .rt-othello-city-section img {
  border-radius: 16px;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.rt-location-othello .rt-othello-expect {
  max-width: 760px;
  margin: 0 auto;
}

.rt-location-othello .rt-othello-cta {
  background: transparent;
}

.rt-location-othello .rt-othello-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Cards & Info Cards --- */
.rt-info-card {
  background: var(--floral-white);
  border-radius: var(--radius);
  padding: 32px;
}

.rt-info-card h3 {
  margin-bottom: 8px;
}

.rt-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rt-card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* --- Schedule Cards --- */
.rt-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.rt-schedule-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px;
  transition: all var(--transition);
}

.rt-schedule-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.rt-schedule-day {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  font-family: Oswald, sans-serif;
  background: var(--greenish-blue);
  color: var(--white);
}

.rt-schedule-link {
  color: var(--greenish-blue);
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition);
}
.rt-schedule-link:hover {
  opacity: 0.7;
}

.rt-schedule-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rt-schedule-note {
  font-size: 0.85rem;
  color: #86868b;
  margin-top: 10px;
}

.rt-schedule-closed {
  opacity: 0.45;
}

/* --- Gallery Grid --- */
.rt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.rt-gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.rt-gallery-grid img:hover {
  transform: scale(1.03);
}

/* --- Steps --- */
.rt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.rt-step {
  text-align: center;
  counter-increment: step;
}

.rt-step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--selective-yellow);
  color: var(--greenish-blue);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

/* --- CTA Banner --- */
.rt-cta-banner {
  background: var(--greenish-blue);
  border-radius: var(--radius);
  padding: 48px;
  color: var(--white);
  text-align: center;
}

.rt-cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.rt-cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* --- Map --- */
.rt-map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-sand);
}

.rt-map-embed iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* --- Section Padding --- */
.rt-section {
  padding: 80px 0;
}

.rt-section-lg {
  padding: 120px 0;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Breadcrumbs --- */
.rt-breadcrumbs {
  padding: 116px 0 16px;
  margin-top: 0;
  font-size: 0.85rem;
  color: var(--greenish-gray);
}

ol.rt-breadcrumbs {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

ol.rt-breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

ol.rt-breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--greenish-gray);
}

nav.rt-breadcrumbs .rt-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

@media screen and (max-width: 991px) {
  .rt-breadcrumbs {
    padding-top: 96px;
  }
}

.rt-breadcrumbs a {
  color: var(--greenish-gray);
}

.rt-breadcrumbs a:hover {
  color: var(--selective-yellow);
}

/* --- Utility --- */
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-48 {
  margin-bottom: 48px;
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* 1440px */
@media screen and (max-width: 1440px) {
  .rt-our-story-right-image-v1 {
    max-width: 320px;
  }
  .rt-our-story-right-image-v2 {
    width: 350px;
    height: 340px;
  }
}

/* 1280px */
@media screen and (max-width: 1280px) {
  .rt-hero-wrapper-home-v3 {
    flex-wrap: wrap;
  }
}

/* 991px — Tablet */
@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 26px;
  }

  .rt-container {
    max-width: 728px;
  }

  .rt-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 999;
  }

  .rt-nav-menu.open {
    display: flex;
  }

  .rt-nav-menu .rt-menu-text {
    font-size: 20px;
    padding: 15px 20px;
  }

  .mobile-list-button {
    display: block;
    z-index: 1001;
  }

  .rt-hero-home-v3 {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  /* Center the main basket image + crop its excessive vertical space on mobile.
     The source is 950x2261 (tall portrait) so without an aspect-ratio container
     the image rendered at intrinsic 0.42:1 aspect and overflowed the viewport.
     Use a square frame with object-fit:cover to consistently show the basket. */
  .rt-hero-wrapper-home-v3 > .rt-container {
    margin: 32px auto 0 !important;
    padding: 0 !important;
    width: calc(100% - 32px);
    max-width: 360px;
    /* Circular mask over the basket — no card frame, no shadow. */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
    display: block;
  }
  .rt-hero-wrapper-home-v3 > .rt-container .image-3 {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    /* Source is 500x1190 with the basket subject at y=64-556
       (the rest is empty background). 9% keeps the cake top and
       basket rim inside the circular mask with minimal clipping. */
    object-position: 50% 9%;
    border-radius: 0;
    margin: 0;
    display: block;
    /* Cancel desktop `.image-3` offset (transform: translate(-70px,70px))
       so the basket stays inside its mobile frame instead of shifting out. */
    transform: none;
  }

  .rt-hero-content-right-side {
    position: static;
    inset: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 32px;
    z-index: auto;
  }

  .rt-hero-content-right-side .rt-flex-wrap {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
  }

  /* The basket image is rendered by .rt-container <img> — the circular
     .rt-image-wrap background duplicates it on mobile and crowds the hero.
     Hide the secondary decorative circle + keep only the sticker visible. */
  .rt-hero-content-right-side .rt-image-wrap {
    display: none;
  }

  .rt-hero-content-right-side .rt-position-relative.rt-flex {
    display: none;
  }

  .rt-features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 20px;
    padding: 0 16px;
    max-width: 520px;
    margin: 0 auto;
  }

  .rt-features-inner-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    min-width: 0;
  }

  .rt-features-inner-wrap .rt-text-style-h6 {
    font-size: clamp(12px, 2.5vw, 15px);
    line-height: 1.2;
  }

  .rt-hero-big-text-banner-big-text-wrap-v1 {
    display: block;
    overflow: hidden;
  }

  .rt-hero-big-text-banner-big-text-wrap-v1 .rt-marquee-train {
    animation-duration: 28s;
  }

  .rt-three-item-wrapper.rt-position-relative {
    flex-wrap: wrap;
    height: auto;
    margin-top: 0;
    padding: 66px 30px;
    justify-content: center;
  }

  .rt-three-item-wrapper.rt-position-relative.rt-shadow {
    margin-top: 0;
  }

  .rt-menu-three-item {
    background-color: var(--floral-white);
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .rt-three-item-wrapper.rt-position-relative {
    padding: 40px 20px;
    gap: 24px;
  }

  .rt-item {
    max-width: none;
    margin-top: 0;
  }

  .rt-image-wrapper.rt-overflow-hidden.rt-three,
  .rt-image-wrapper.rt-overflow-hidden.rt-two,
  .rt-image-wrapper.rt-overflow-hidden.rt-one {
    background-image: url("images/Untitled-design-11.avif");
  }

  .rt-our-story-content-wrapper-v2 {
    flex-direction: column;
  }

  .rt-our-story-left-side-v2 {
    max-width: 100%;
  }

  .rt-our-story-right-image-v1 {
    max-width: 280px;
  }

  .rt-our-story-right-image-v2 {
    display: none;
  }

  .rt-testimonial-content-wrapper-home-v1 {
    flex-direction: column;
  }

  .rt-testimonial-right-side {
    order: 2;
  }

  .rt-testimonial-left-side {
    order: 1;
  }

  .rt-contact-form-content {
    flex-direction: column;
  }

  .rt-menu-content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .rt-product-wrap.rt-top-auto {
    margin-top: 0;
  }

  .rt-card-grid {
    grid-template-columns: 1fr;
  }

  .rt-card-grid-2 {
    grid-template-columns: 1fr;
  }

  .rt-steps {
    grid-template-columns: 1fr;
  }

  .rt-footer-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .rt-footer-bottom-content-wrapper {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Nav light variant mobile */
  .rt-navbar.light-variant .rt-nav-menu {
    background: var(--greenish-blue);
  }
}

/* 767px — Mobile landscape */
@media screen and (max-width: 767px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }

  .rt-container {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .rt-our-story.rt-v2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .rt-testimonial-home-v1 {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .rt-marquee-text {
    font-size: 48px;
  }

  .rt-marquee-item.tall {
    width: 180px;
    height: 250px;
  }

  .rt-marquee-item.wide {
    width: 200px;
    height: 150px;
  }

  .rt-footer {
    padding-top: 60px;
  }

  .rt-schedule-grid {
    grid-template-columns: 1fr;
  }

  .rt-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .rt-inner-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .rt-contact-form {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .rt-menu-hero {
    padding-top: 120px;
  }
}

/* 479px — Mobile portrait */
@media screen and (max-width: 479px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 22px;
  }

  .rt-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .rt-hero-home-v3 {
    padding-top: 100px;
  }

  .rt-button {
    padding: 12px 24px;
  }

  .rt-features-wrapper {
    gap: 16px;
  }

  .rt-three-item-wrapper.rt-position-relative {
    padding: 32px 16px;
    gap: 16px;
  }

  .rt-sticker img {
    width: 92px;
  }

  .rt-cta-banner {
    padding: 32px 20px;
  }

  .rt-error-content-inner-wrapper {
    flex-direction: column;
  }

  .rt-marquee-item img {
    width: 150px;
  }

  .rt-our-story-right-image-v1 {
    max-width: 240px;
  }
}

/* ============================================
   Cart Badge, Drawer & Checkout Styles
   ============================================ */

/* ===== Cart Nav Button ===== */
/* Default: white icon — the navbar is transparent when unscrolled and
   overlays a dark/colored hero on most pages, so green-on-green would
   disappear. A small drop-shadow keeps it readable on rare light hero
   backgrounds. Scrolled state (below) flips to dark green for white bg. */
.cart-nav-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin-left: 12px;
  color: var(--white);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
  transition:
    color var(--transition),
    filter var(--transition);
}
.cart-nav-btn:hover {
  color: var(--selective-yellow);
}
.light-variant .cart-nav-btn {
  color: var(--white);
}
.light-variant .cart-nav-btn:hover {
  color: var(--selective-yellow);
}
.scrolled .cart-nav-btn {
  color: var(--greenish-blue);
  filter: none;
}
.scrolled .cart-nav-btn:hover {
  color: var(--selective-yellow);
}
/* On light-variant pages (contact, etc.) the scrolled navbar background
   itself becomes dark green, so the icon must stay WHITE — otherwise
   green-on-green makes the cart invisible. Higher specificity than
   `.scrolled .cart-nav-btn` so this wins when both classes are present. */
.light-variant.scrolled .cart-nav-btn {
  color: var(--white);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
.light-variant.scrolled .cart-nav-btn:hover {
  color: var(--selective-yellow);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--selective-yellow);
  /* Dark text on the yellow badge — white-on-yellow is ~1.9:1 contrast
     (invisible). Dark green on yellow is ~10:1, readable at 11px. */
  color: var(--greenish-blue);
  font-family: Oswald, sans-serif;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  /* Ring keeps the badge visible no matter what sits behind the nav. */
  border: 2px solid var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* ===== Cart Overlay ===== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 40, 30, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1050;
}
.cart-overlay.open {
  display: block;
}

/* ===== Cart Drawer ===== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background: var(--floral-white);
  z-index: 1051;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--greenish-blue);
  color: var(--white);
  flex-shrink: 0;
}
.cart-drawer-header h3 {
  font-family: Oswald, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0;
}
.cart-drawer-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 0;
}
.cart-drawer-close:hover {
  color: var(--selective-yellow);
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
}

.cart-drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.cart-item-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--greenish-blue);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  color: var(--davy-s-grey);
  margin-top: 2px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--chinese-silver);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--greenish-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
}
.cart-qty-btn:hover {
  background: var(--selective-yellow);
  color: var(--white);
  border-color: var(--selective-yellow);
}
.cart-qty-num {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}
.cart-remove-btn {
  background: none;
  border: none;
  color: var(--chinese-silver);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.cart-remove-btn:hover {
  color: #e74c3c;
}

/* Cart progress bar */
.cart-drawer-progress {
  padding: 12px 24px;
  border-bottom: 1px solid var(--light-sand);
  background: linear-gradient(135deg, #fdf8ef 0%, #fef6e0 100%);
}
.cart-progress-text {
  font-family: "Roboto", Lato, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--greenish-blue);
  margin-bottom: 6px;
}
.cart-progress-bar {
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.cart-progress-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--selective-yellow), #f4c94a);
  border-radius: 3px;
  transition: width 0.4s ease;
}
/* Box upsell */
.cart-box-upsell {
  padding: 12px 24px;
  border-bottom: 1px solid var(--light-sand);
  background: linear-gradient(135deg, #f6f1e8 0%, #fef6e0 100%);
}
.cart-box-upsell-text {
  font-family: "Roboto", Lato, sans-serif;
  font-size: 0.8rem;
  color: var(--greenish-blue);
  margin-bottom: 8px;
  line-height: 1.4;
}
.cart-box-upsell-btn {
  padding: 8px 16px;
  background: var(--selective-yellow);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: "Roboto", Lato, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.25s;
}
.cart-box-upsell-btn:hover {
  background: var(--greenish-blue);
}

.cart-drawer-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--light-sand);
  background: var(--white);
  flex-shrink: 0;
}
.cart-drawer-subtotal,
.cart-drawer-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-family: "Roboto", Lato, sans-serif;
  font-size: 0.85rem;
  color: var(--greenish-blue);
}
.cart-drawer-discount {
  color: #2d8f4e;
  font-weight: 600;
}
.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-family: Oswald, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--greenish-blue);
  text-transform: uppercase;
}
.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--selective-yellow);
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.cart-checkout-btn:hover {
  background: var(--greenish-blue);
  color: var(--white);
}

.cart-drawer-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 40px 24px;
  text-align: center;
}
.cart-drawer-empty p {
  font-family: "Lato", sans-serif;
  color: var(--davy-s-grey);
  font-size: 1rem;
  margin-bottom: 20px;
}
.cart-browse-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--selective-yellow);
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.25s;
}
.cart-browse-btn:hover {
  background: var(--greenish-blue);
  color: var(--white);
}

/* ===== Cart Toast Notification ===== */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--greenish-blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1100;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Order / Checkout Page ===== */
.order-page {
  background: var(--floral-white);
  min-height: 60vh;
  padding-bottom: 80px;
}
.order-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.order-grid {
  display: grid;
  gap: 24px;
}

.order-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.order-card-title {
  font-family: Oswald, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--greenish-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--selective-yellow);
}

/* Order summary items */
.order-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-sand);
}
.order-summary-item:last-child {
  border-bottom: none;
}
.order-summary-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.order-summary-info {
  flex: 1;
}
.order-summary-name {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--greenish-blue);
  text-transform: uppercase;
}
.order-summary-qty {
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  color: var(--davy-s-grey);
}
.order-summary-price {
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--greenish-blue);
  flex-shrink: 0;
}
.order-subtotal-row,
.order-discount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  font-family: Lato, sans-serif;
  font-size: 0.9rem;
  color: var(--greenish-blue);
}
.order-discount-row {
  color: #2d8f4e;
  font-weight: 600;
}
.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--greenish-blue);
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--greenish-blue);
  text-transform: uppercase;
}

/* Order progress bar */
.order-progress {
  background: linear-gradient(135deg, #fdf8ef 0%, #fef6e0 100%);
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-top: 12px;
}
.order-progress-text {
  font-family: Lato, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--greenish-blue);
  margin-bottom: 8px;
}
.order-progress-bar {
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.order-progress-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--selective-yellow), #f4c94a);
  border-radius: 3px;
  transition: width 0.4s ease;
}
.order-progress-link {
  display: inline-block;
  margin-top: 8px;
  font-family: Lato, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--selective-yellow);
  text-decoration: none;
  transition: color 0.25s;
}
.order-progress-link:hover {
  color: var(--greenish-blue);
}

/* Order box upsell */
.order-box-upsell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, #f6f1e8 0%, #fef6e0 100%);
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-top: 10px;
}
.order-box-upsell-text {
  font-family: Lato, sans-serif;
  font-size: 0.82rem;
  color: var(--greenish-blue);
  line-height: 1.4;
}
.order-box-upsell-btn {
  padding: 8px 16px;
  background: var(--selective-yellow);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.order-box-upsell-btn:hover {
  background: var(--greenish-blue);
}

/* Order success recap */
.order-success-recap {
  background: var(--floral-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
  text-align: left;
  max-width: 400px;
  width: 100%;
}
.order-recap-title {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--greenish-blue);
  margin-bottom: 8px;
}
.order-recap-item {
  font-family: Lato, sans-serif;
  font-size: 0.85rem;
  color: var(--davy-s-grey);
  padding: 3px 0;
}
.order-recap-discount {
  font-family: Lato, sans-serif;
  font-size: 0.85rem;
  color: #2d8f4e;
  font-weight: 600;
  padding: 3px 0;
}
.order-recap-total {
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--greenish-blue);
  border-top: 1px solid var(--light-sand);
  margin-top: 8px;
  padding-top: 8px;
}
.order-success-contact {
  margin: 16px 0 8px;
}
.order-success-contact p {
  font-family: Lato, sans-serif;
  font-size: 0.9rem;
  color: var(--greenish-blue);
}
.order-success-contact a {
  color: var(--selective-yellow);
  font-weight: 700;
  text-decoration: none;
}
.order-success-contact a:hover {
  color: var(--greenish-blue);
}
.order-success-social {
  margin-bottom: 16px;
}
.order-success-fb {
  display: inline-block;
  font-family: Lato, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--selective-yellow);
  text-decoration: none;
  transition: color 0.25s;
}
.order-success-fb:hover {
  color: var(--greenish-blue);
}

/* Promo code */
.order-promo-row {
  display: flex;
  gap: 8px;
}
.order-promo-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.order-promo-input:focus {
  outline: none;
  border-color: var(--selective-yellow);
}
.order-promo-btn {
  padding: 12px 20px;
  background: var(--greenish-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: Oswald, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}
.order-promo-btn:hover {
  background: var(--selective-yellow);
  color: var(--greenish-blue);
}
.order-promo-msg {
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  margin-top: 8px;
  min-height: 1.2em;
}
.order-promo-msg.success {
  color: #2d8f4e;
  font-weight: 600;
}
.order-promo-msg.error {
  color: #c0392b;
}

/* Form fields */
.order-form-group {
  margin-bottom: 18px;
}
.order-form-group label {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--greenish-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.order-form-group input,
.order-form-group select,
.order-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--chinese-silver);
  border-radius: var(--radius);
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  color: var(--greenish-blue);
  background: var(--white);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.order-form-group input:focus,
.order-form-group select:focus,
.order-form-group textarea:focus {
  border-color: var(--selective-yellow);
  box-shadow: 0 0 0 3px rgba(255, 185, 29, 0.15);
}
.order-form-group input::placeholder,
.order-form-group textarea::placeholder {
  color: var(--chinese-silver);
}
.order-form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.order-form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23515151' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Square card container */
#card-container {
  min-height: 50px;
  margin-bottom: 16px;
}

/* Place order button */
.order-submit-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--selective-yellow);
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(255, 185, 29, 0.3);
}
.order-submit-btn:hover {
  background: var(--greenish-blue);
  box-shadow: 0 4px 16px rgba(7, 40, 30, 0.3);
}
.order-submit-btn:disabled {
  background: var(--chinese-silver);
  cursor: not-allowed;
  box-shadow: none;
}

/* Error message */
.order-error {
  background: #fef2f2;
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
}
.order-error.show {
  display: block;
}

/* Success state */
.order-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.order-success.show {
  display: block;
}
.order-success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}
.order-success h2 {
  font-family: Oswald, sans-serif;
  font-size: 2rem;
  color: var(--greenish-blue);
  margin-bottom: 12px;
}
.order-success p {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  color: var(--davy-s-grey);
  max-width: 400px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.order-success-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--selective-yellow);
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.25s;
}
.order-success-btn:hover {
  background: var(--greenish-blue);
  color: var(--white);
}

/* Empty cart on order page */
.order-empty {
  text-align: center;
  padding: 60px 20px;
}
.order-empty p {
  font-family: "Lato", sans-serif;
  color: var(--davy-s-grey);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* ===== Cart responsive ===== */
@media (max-width: 768px) {
  .cart-nav-btn {
    margin-left: 8px;
  }
  .cart-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .cart-drawer-item {
    gap: 8px;
    padding: 10px;
  }
  .cart-item-img {
    width: 40px;
    height: 40px;
  }
  .cart-item-name {
    font-size: 0.78rem;
  }

  .order-card {
    padding: 20px 16px;
  }
  .order-container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }
}

/* ============================================================
   Wave 1.2 / 1.3 / Wave 2 hygiene additions (appended, not overwritten)
   ============================================================ */

/* ---- Global focus ring (keyboard a11y) ---- */
:is(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 185, 29, 0.55);
  border-radius: 6px;
}

/* ---- Reduced motion (WCAG 2.3.3) ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- Video reveal-on-load (used with data-reveal-on-load) ---- */
video[data-reveal-on-load] {
  transition: opacity 0.5s ease;
  opacity: 1;
}
video[data-reveal-on-load].is-loading {
  opacity: 0;
}

/* ---- Language toggle (44×44 tap target, visible selected state) ---- */
.lang-toggle-btn {
  background: transparent;
  border: none;
  padding: 12px 14px;
  min-width: 44px;
  min-height: 44px;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  letter-spacing: 0.04em;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.lang-toggle-btn:hover {
  opacity: 0.85;
}
.lang-toggle-btn.active,
.lang-toggle-btn[aria-selected="true"] {
  opacity: 1;
  color: var(--selective-yellow);
}
.lang-toggle-sep {
  opacity: 0.35;
  padding: 0 2px;
  user-select: none;
}

/* ---- Contact: hours list ---- */
.rt-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
}
.rt-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.rt-hours-list li:last-child {
  border-bottom: none;
}
.rt-hours-day {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}
.rt-hours-time {
  font-variant-numeric: tabular-nums;
}
.rt-hours-list li.is-closed {
  opacity: 0.55;
  font-style: italic;
}

/* ---- Contact: social pills ---- */
.rt-social-intro {
  margin-bottom: 32px;
}
.rt-social-pill-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rt-social-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--white);
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}
.rt-social-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}
.rt-social-pill-icon {
  width: 48px;
  height: 48px;
  background: var(--selective-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rt-social-pill-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rt-social-pill-title {
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
}
.rt-social-pill-handle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Contact: responsive map (aspect-ratio instead of fixed 350px) ---- */
.rt-contact-map-section {
  margin-top: 60px;
}
.rt-map-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-sand);
}
.rt-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 767px) {
  .rt-map-embed {
    aspect-ratio: 4 / 3;
  }
}

/* ---- Schedule: + separator + section-tight helper + card lift ---- */
.rt-schedule-separator {
  display: block;
  text-align: center;
  font-family: Oswald, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--selective-yellow);
  opacity: 0.6;
  margin: 4px 0;
  user-select: none;
}
.rt-section-tight {
  padding: 80px 0;
}

/* ---- Square SDK skeleton loader ---- */
.sk-pulse {
  position: relative;
  display: block;
  width: 100%;
  min-height: 88px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.08) 50%,
    rgba(0, 0, 0, 0.04) 100%
  );
  background-size: 200% 100%;
  animation: sk-pulse-shimmer 1.4s ease-in-out infinite;
}
.sk-pulse[hidden] {
  display: none;
}
@keyframes sk-pulse-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ---- Order form help text (under inputs) ---- */
.order-form-help {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--chinese-silver, rgba(0, 0, 0, 0.55));
}

/* ---- Error toast (used by order.html) ---- */
.order-error-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.order-error-toast-close {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  opacity: 0.7;
  margin-left: auto;
  align-self: flex-start;
}
.order-error-toast-close:hover {
  opacity: 1;
}

/* ---- 404 page ---- */
.rt-404-hero {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  background: var(--floral-white);
  padding: 80px 0;
}
.rt-404-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.rt-404-concha {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(7, 40, 30, 0.12));
}
.rt-404-code {
  font-family: Oswald, sans-serif;
  font-size: clamp(80px, 18vw, 160px);
  line-height: 0.9;
  font-weight: 700;
  color: var(--greenish-blue);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.rt-404-tagline {
  font-family: Oswald, sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--selective-yellow);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.rt-404-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--greenish-blue);
  opacity: 0.8;
  max-width: 480px;
  margin: 0 auto 40px;
}
.rt-404-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.rt-404-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid rgba(7, 40, 30, 0.15);
  color: var(--greenish-blue);
  font-family: Oswald, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.rt-404-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 40, 30, 0.1);
}
.rt-404-btn-primary {
  background: var(--greenish-blue);
  border-color: var(--greenish-blue);
  color: var(--floral-white);
}
.rt-404-btn-primary:hover {
  background: var(--selective-yellow);
  border-color: var(--selective-yellow);
  color: var(--greenish-blue);
}
