body {
  margin: 0;
  font-family: "Goudy Bookletter 1911", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: env(safe-area-inset-bottom);
  letter-spacing: normal;
}

body > #root {
  backdrop-filter: blur(8px);
}

.root-container {
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  margin: auto;
  width: 100%;
}

header {
  text-align: center;
  color: white;
}

.langPickerWrapper {
  display: flex;
  justify-content: flex-end;
  padding: 10px 10px 0 0;
}

.logo {
  margin-bottom: -10px;
  max-width: 80%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.menu-main-title,
.category-title,
.subcategory-title,
.item-name,
.header-link,
.cta-button {
  font-family: "Outfit", sans-serif;
}

h3 {
  margin: 0;
}

p, small, span {
  letter-spacing: normal !important;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

main > ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  gap: 20px;
}

main > ul > li {
  display: block;
}

.social-media > li {
  width: 40px;
}

.social-icons > svg {
  color: inherit;
  stroke: white;
  fill: white;
}

main > .links {
  display: flex;
  flex-direction: column;
  width: 95%;
  padding: 10px;
  max-width: 500px;
  overflow-x: hidden;
}

main > .links a {
  background-color: #759883;
  display: block;
  padding: 15px;
  border-radius: 40px;
  color: inherit;
  text-decoration: none;
  text-align: center;
  font-size: 1.2em;
  transition:
    background-color 0.2s,
    color 0.2s;
}

main > .links a:hover,
main > .links a:active {
  background-color: white;
  color: #759883;
}

main > .links a.LinkItem {
  position: relative;
  padding: 15px 55px;
}

.LinkItem .badge {
  width: 25px;
  height: 25px;
  text-align: center;
  position: absolute;
  top: -2px;
  right: -2px;
  border-radius: 100%;
  display: none;
}

.LinkItem .badge:not(.custom) {
  background: #8b0e1b;
}

.LinkItem .badge.display,
.LinkItem .badge.custom {
  display: block;
}

.menu-modal li {
  font-size: 1.5em;
}

.OfferBanner {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  padding: 20px;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: white;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1000;
}

.OfferBanner .bg-div {
  background: url("/assets/img/bg_valentin.jpg");
  background-size: cover;
  opacity: 0.7;
  z-index: -1;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 480px) {
  .OfferBanner {
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }
}

.OfferBanner > span {
  font-size: 1.4em;
}

#nextui-modal > div[class*="fullScreen-true"] {
  top: 0;
  bottom: 0;
  bottom: env(safe-area-inset-bottom);
}

#nextui-modal > div[class*="fullScreen-true"] > .nextui-backdrop-content {
  height: 100%;
}

/* --- Menu Page Styles --- */
.menu-page-container {
  background-color: #f7f3f0;
  color: #1a1a1a;
  min-height: 100vh;
  padding: 0;
  font-family: "Goudy Bookletter 1911", serif;
  letter-spacing: normal;
}

.menu-header {
  background-color: #f7f3f0;
  padding: 20px;
  text-align: center;
  position: relative;
  border-bottom: 2px solid #8e3a35;
  margin-bottom: 40px;
}

.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  font-size: 1.1em;
  color: #194346;
  cursor: pointer;
  font-weight: bold;
}

.menu-logo-container {
  margin: 20px 0;
}

.menu-logo {
  max-width: 200px;
}

.menu-title-section {
  color: #194346;
}

.menu-main-title {
  font-size: 3em;
  font-weight: 300;
  letter-spacing: 5px;
  margin: 10px 0;
  text-transform: uppercase;
}

.menu-subtitle {
  font-size: 1.1em;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.menu-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-toggle-icon {
  font-size: 1.2em;
  color: #8e3a35;
  transition: transform 0.2s ease;
}

.menu-category {
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  box-sizing: border-box;
}

.category-header {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.category-header.expanded {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.category-content {
  margin-top: 5px;
}

.category-title {
  color: #194346;
  font-size: 1.5em;
  text-transform: uppercase;
  margin: 0;
}

.category-desc {
  color: #666;
  font-size: 0.9em;
  margin-top: 5px;
}

.menu-subcategories {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.subcategory-title {
  color: #194346;
  font-size: 1.3em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.subcategory-desc {
  color: #8e3a35;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-items-compact {
  gap: 5px;
}

.menu-item {
  display: flex;
  flex-direction: column;
}

.menu-items-compact .menu-item-header {
  gap: 0;
}

.menu-items-compact .item-name {
  font-size: 1em;
}

.menu-item-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.item-name {
  color: #8e3a35;
  font-size: 1.1em;
  font-weight: 600;
}

.price-separator {
  color: #8e3a35;
}

.item-price {
  color: #8e3a35;
  font-weight: 600;
  font-size: 1.1em;
}

.item-description {
  color: #4a4a4a;
  font-size: 0.9em;
  margin: 3px 0 0 0;
  line-height: 1.4;
}

.badge-new {
  background-color: #194346;
  color: #ffffff;
  font-size: 0.6em;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: bold;
  letter-spacing: 1px;
}

.menu-supplements {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed #ccc;
}

.supplement-item {
  font-size: 0.95em;
  color: #194346;
}

.menu-footer {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  color: #194346;
  font-size: 1.2em;
  letter-spacing: 2px;
  border-top: 1px solid #e0e0e0;
}

/* Weekend formula pricing - mobile */
@media (max-width: 600px) {
  .weekend-formulas > div {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .weekend-formulas > div > div {
    min-width: unset !important;
    width: 100% !important;
    border-right: none !important;
    padding-right: 0 !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    gap: 12px !important;
  }

  .weekend-formulas > div > div:last-child {
    border-bottom: none !important;
  }

  .weekend-formulas > div > div > div:last-child {
    font-size: 2.8em !important;
  }

  .weekend-formulas > div > div > div:first-child {
    font-size: 0.85em !important;
  }
}

/* --- Legal Page Styles --- */
.legal-page-container {
  background-color: var(--primary-bg);
  color: var(--text-main);
  min-height: 100vh;
  padding: 0;
  font-family: "Goudy Bookletter 1911", serif;
  letter-spacing: normal;
}

.legal-content {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 60px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-sizing: border-box;
}

.legal-back-button {
  background: none;
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 1.1em;
  color: var(--accent-green);
  cursor: pointer;
  font-weight: bold;
  padding: 0;
  transition: color var(--transition-speed);
}

.legal-back-button:hover {
  color: var(--accent-red);
}

.legal-article {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  width: 100%;
  box-sizing: border-box;
}

.legal-title {
  color: var(--accent-green);
  font-family: "Outfit", sans-serif;
  font-size: 2.5em;
  font-weight: 300;
  letter-spacing: 2px;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent-red);
  padding-bottom: 15px;
}

.legal-section {
  margin-bottom: 30px;
}

.legal-section:last-of-type {
  margin-bottom: 0;
}

.legal-section h2 {
  color: var(--accent-green);
  font-family: "Outfit", sans-serif;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
}

.legal-section p {
  color: var(--text-muted);
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section strong {
  color: var(--text-main);
}

.legal-section ul {
  color: var(--text-muted);
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0 0 20px 20px;
  padding: 0;
  list-style-type: disc;
}

.legal-section li {
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .legal-article {
    padding: 25px 20px;
  }
  .legal-title {
    font-size: 2em;
  }
}
:root {
    --primary-bg: #f7f3f0;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --accent-red: #8e3a35;
    --accent-green: #194346;
    --white: #ffffff;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --transition-speed: 0.3s;
}

.home-layout-container {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Goudy Bookletter 1911', serif;
    letter-spacing: normal !important;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background-color: var(--white);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.header-left .header-logo {
    max-width: 150px;
    cursor: pointer;
}

.header-center {
    display: flex;
    gap: 30px;
}

.header-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: color var(--transition-speed);
}

.header-link:hover {
    color: var(--accent-red);
}

.header-phone-link {
    color: var(--accent-green);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: color var(--transition-speed);
}

.header-phone-link:hover {
    color: var(--accent-red);
}

.mobile-phone {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button {
    background-color: var(--accent-red);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--transition-speed);
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.cta-button:hover {
    background-color: var(--accent-green);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    min-height: 80vh;
    background-color: var(--primary-bg);
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-subtitle {
    color: var(--accent-red);
    font-size: 1.5em;
    font-style: italic;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 4em;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-main);
    margin: 0 0 20px 0;
}

.hero-title span {
    color: var(--accent-red);
}

.hero-description {
    font-size: 1.2em;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-main-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--card-shadow);
}

.hero-badge {
    position: absolute;
    top: 10%;
    right: 10%;
    background-color: var(--accent-red);
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2em;
    transform: rotate(15deg);
    text-align: center;
}

/* Features Section */
.features-section {
    padding: 80px 5%;
    display: flex;
    gap: 30px;
    justify-content: center;
    background-color: var(--white);
    flex-wrap: wrap;
}

.feature-card {
    background-color: var(--primary-bg);
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: all var(--transition-speed);
    cursor: pointer;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    padding-bottom: 40px;
}

.feature-card:hover {
    background-color: var(--accent-red);
    color: var(--white);
    transform: translateY(-10px);
}

.feature-card:hover .feature-title,
.feature-card:hover .feature-desc {
    color: var(--white);
}

.feature-icon {
    font-size: 3em;
    margin: 40px 0 20px 0;
    color: var(--accent-red);
}

.feature-image-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform var(--transition-speed);
}

.feature-image[src*="Burger"] {
    object-position: center bottom;
}

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

.feature-card:hover .feature-icon {
    color: var(--white);
}

.feature-title {
    font-size: 1.5em;
    color: var(--text-main);
    margin: 15px 30px;
    transition: color var(--transition-speed);
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 30px;
    transition: color var(--transition-speed);
}

/* About Section */
.about-section {
    display: flex;
    padding: 80px 5%;
    align-items: center;
    gap: 50px;
    background-color: var(--primary-bg);
}

.about-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 250px;
}

.about-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--accent-red);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 4px 20px rgba(142, 58, 53, 0.4);
}

.about-content {
    flex: 1;
}

.section-subtitle {
    color: var(--accent-red);
    font-size: 1.4em;
    font-style: italic;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3em;
    font-weight: bold;
    color: var(--text-main);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.about-desc {
    color: var(--text-muted);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Footer Section */
.site-footer {
    background-color: #1a1a1a;
    color: #f7f3f0;
    padding: 60px 5% 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #a0a0a0;
}

/* Desktop defaults */
.mobile-cta {
    display: none;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    color: var(--text-main);
    align-items: center;
    justify-content: center;
}

.lang-picker-wrapper {
    transition: transform var(--transition-speed);
}

/* Responsive Design */
@media (max-width: 900px) {

    .hero-section,
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 30px;
    }

    .hero-buttons .cta-button {
        font-size: 0.9em;
        padding: 8px 16px;
    }

    .desktop-cta {
        display: none;
    }

    .desktop-phone {
        display: none;
    }

    .mobile-phone {
        display: inline-flex;
        justify-content: center;
        padding: 5px 0;
        margin: 5px 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .lang-picker-wrapper {
        transform: scale(0.75);
        transform-origin: right center;
        margin-right: -10px;
    }

    .header-center {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        gap: 20px;
        align-items: stretch;
        z-index: 99;
    }

    .header-center.mobile-open {
        display: flex;
        border-top: 1px solid #eee;
    }

    .mobile-cta {
        display: block;
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }

    .desktop-carousel-btn {
        display: none !important;
    }

    .reviews-mobile-controls {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .reviews-desktop-dots {
        display: none !important;
    }
}

/* Special Treatment for Menu du Moment in Nav Bar */
.menu-moment-highlight {
    color: #d48a42 !important;
    font-weight: bold;
    transition: color var(--transition-speed);
}

.menu-moment-highlight:hover {
    color: var(--accent-red) !important;
}

.menu-moment-highlight .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #d48a42;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    transition: background-color var(--transition-speed);
}

.menu-moment-highlight:hover .pulse-dot {
    background-color: var(--accent-red);
}

/* Couscous Placeholder Card */
.couscous-placeholder-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2dcd8 0%, #d5cdc8 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px 12px 0 0;
    position: relative;
    box-sizing: border-box;
    padding: 20px;
}

.couscous-placeholder-card .placeholder-icon {
    font-size: 3.5em;
    animation: float-emoji 3s ease-in-out infinite;
}

.couscous-placeholder-card .placeholder-badge {
    background-color: var(--accent-red);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(142, 58, 53, 0.3);
}

@keyframes float-emoji {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Reviews Carousel */
.carousel-nav-btn {
    background-color: var(--white);
    color: var(--accent-green);
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed);
    z-index: 5;
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    background-color: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
    transform: scale(1.08);
}

/* New Restructured Homepage Styles */
.hero-labels {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.hero-label-item {
    display: block;
    font-family: 'Outfit', sans-serif;
}

.label-highlight {
    color: var(--accent-red);
    font-size: 1.4em;
    font-weight: 600;
    font-style: italic;
}

.label-emphasis {
    color: var(--accent-green);
    font-size: 2.2em;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.label-sub {
    color: var(--text-main);
    font-size: 1.3em;
    font-weight: 500;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    font-weight: bold;
    color: var(--accent-green);
    margin-bottom: 25px;
    font-size: 1em;
    font-family: 'Outfit', sans-serif;
}

.hero-bullets-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 35px;
    font-size: 1.05em;
}

.hero-bullet-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-main);
    font-weight: bold;
}

.bullet-emoji {
    font-size: 1.25em;
}

.bullet-divider {
    color: var(--text-muted);
    opacity: 0.5;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(25, 67, 70, 0.1) 20%, rgba(25, 67, 70, 0.1) 80%, transparent);
    width: 100%;
}

.bottom-cta-section {
    padding: 100px 5%;
    background-color: var(--accent-green);
    color: var(--white);
    position: relative;
}

@media (max-width: 900px) {
    .hero-labels {
        align-items: center;
        gap: 4px;
        margin-bottom: 15px;
    }
    
    .label-highlight {
        font-size: 1.2em;
    }
    
    .label-emphasis {
        font-size: 1.8em;
    }
    
    .label-sub {
        font-size: 1.1em;
    }
    
    .hero-title {
        font-size: 2.6em;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1.1em;
        margin-bottom: 25px;
    }
    
    .hero-bullets-container {
        justify-content: center;
        font-size: 0.9em;
        gap: 6px;
    }
    
    .bullet-divider {
        display: inline;
    }
    
    .hero-bullet-item {
        width: auto;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .bottom-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 30px auto 0 auto;
    }
}

@media (max-width: 600px) {
    .hero-labels {
        gap: 3px;
        margin-bottom: 12px;
    }
    
    .label-highlight {
        font-size: 1.1em;
    }
    
    .label-emphasis {
        font-size: 1.5em;
    }
    
    .label-sub {
        font-size: 1.0em;
    }
    
    .hero-title {
        font-size: 2.0em;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 1.0em;
        margin-bottom: 20px;
    }
    
    .hero-bullets-container {
        font-size: 0.8em;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .hero-labels {
        gap: 2px;
        margin-bottom: 10px;
    }
    
    .label-highlight {
        font-size: 0.95em;
    }
    
    .label-emphasis {
        font-size: 1.3em;
        letter-spacing: 1px;
    }
    
    .label-sub {
        font-size: 0.9em;
    }
    
    .hero-title {
        font-size: 1.7em;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.92em;
        margin-bottom: 15px;
    }
    
    .hero-bullets-container {
        font-size: 0.72em;
        gap: 3px;
        letter-spacing: -0.2px;
    }
}.cookie-consent-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 32px);
  max-width: 850px;
  background: rgba(25, 67, 70, 0.85); /* Glassmorphic base color matching the site's dark teal */
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  padding: 24px;
  z-index: 10000;
  box-sizing: border-box;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  will-change: transform, opacity;
}

/* Animations */
.animate-slide-up {
  animation: cookieSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cookie-consent-exit {
  animation: cookieSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cookieSlideUp {
  from {
    transform: translate(-50%, 100px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@keyframes cookieSlideDown {
  from {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  to {
    transform: translate(-50%, 100px);
    opacity: 0;
  }
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-consent-text-section {
  flex: 1;
}

.cookie-consent-title {
  margin: 0 0 6px 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.cookie-consent-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Goudy Bookletter 1911', serif;
  letter-spacing: normal !important;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Buttons styling */
.cookie-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.cookie-btn-accept {
  background: #8e3a35; /* Accent rust red */
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(142, 58, 53, 0.3);
}

.cookie-btn-accept:hover {
  background: #a34842;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(142, 58, 53, 0.4);
}

.cookie-btn-accept:active {
  transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 768px) {
  .cookie-consent-container {
    bottom: 16px;
    width: calc(100% - 24px);
    padding: 20px;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-consent-text-section {
    text-align: center;
  }

  .cookie-consent-actions {
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
  }
}

/* Language Picker Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    min-width: 0;
    max-width: 80px;
}

.lang-dropdown-btn:focus {
    outline: none;
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--white);
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 5px;
}

.lang-dropdown-content a {
    color: var(--text-main);
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95em;
    transition: background-color var(--transition-speed);
}

.lang-dropdown-content a:hover {
    background-color: var(--primary-bg);
}

.lang-dropdown.open .lang-dropdown-content {
    display: block;
}

/* Responsive reviews display rules */
@media (max-width: 900px) {
    .reviews-carousel-grid .review-card.carousel-card-offset-1,
    .reviews-carousel-grid .review-card.carousel-card-offset-2 {
        display: none !important;
    }
}
@media (min-width: 901px) {
    .reviews-carousel-grid .review-card.carousel-card-offset-0,
    .reviews-carousel-grid .review-card.carousel-card-offset-1,
    .reviews-carousel-grid .review-card.carousel-card-offset-2 {
        display: flex !important;
    }
}
