/* ============================================
   SADDLE THEME - Modern Restaurant Website
   Completely independent from Classic Cars demo
   ============================================ */

/* ============================================
   RESET - Ensure no inheritance from old styles
   ============================================ */
.saddle-theme,
.saddle-theme * {
    box-sizing: border-box;
}

.saddle-theme {
    margin: 0;
    padding: 0;
}

/* Override any inherited styles from global.css */
.saddle-theme h1,
.saddle-theme h2,
.saddle-theme h3,
.saddle-theme h4,
.saddle-theme h5,
.saddle-theme h6 {
    margin-top: 0;
    letter-spacing: normal;
    text-transform: none;
}

.saddle-theme p {
    margin-top: 0;
}

.saddle-theme a {
    text-decoration: none;
}

.saddle-theme section {
    margin-bottom: 0;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --saddle-primary: #1a1a1a;
    --saddle-secondary: #c9a227;
    --saddle-accent: #d4af37;
    --saddle-dark: #0d0d0d;
    --saddle-light: #f8f8f8;
    --saddle-gray: #6c6c6c;
    --saddle-gray-light: #e8e8e8;
    --saddle-white: #ffffff;
    --saddle-black: #000000;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-sm: 60px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.2);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
.saddle-theme {
    font-family: var(--font-body);
    color: var(--saddle-primary);
    background-color: var(--saddle-white);
    overflow-x: hidden;
}

.saddle-theme h1,
.saddle-theme h2,
.saddle-theme h3,
.saddle-theme h4,
.saddle-theme h5,
.saddle-theme h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
}

.saddle-theme h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.saddle-theme h2 { font-size: clamp(2rem, 4vw, 3rem); }
.saddle-theme h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.saddle-theme h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.saddle-theme p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--saddle-gray);
}

.saddle-theme a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.saddle-theme a:hover {
    color: var(--saddle-secondary);
}

/* ============================================
   NAVBAR
   ============================================ */
.saddle-navbar {
    padding: 1rem 0;
    transition: var(--transition-medium);
    z-index: 1050;
}

.saddle-navbar .logo-dark {
    display: none;
}

.saddle-navbar .logo-light {
    display: block;
}

.saddle-navbar.navbar-transparent {
    background: transparent;
}

.saddle-navbar.navbar-transparent .navbar-nav .nav-link {
    color: var(--saddle-white);
}

.saddle-navbar.navbar-transparent .logo-dark {
    display: none;
}

.saddle-navbar.navbar-transparent .logo-light {
    display: block;
}

.saddle-navbar.navbar-scrolled {
    background: var(--saddle-white);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.saddle-navbar.navbar-scrolled .navbar-nav .nav-link {
    color: var(--saddle-primary);
}

.saddle-navbar.navbar-scrolled .logo-dark {
    display: block;
}

.saddle-navbar.navbar-scrolled .logo-light {
    display: none;
}

/* Ensure navbar toggler is visible */
.saddle-navbar .navbar-toggler {
    border-color: rgba(0,0,0,0.3);
}

.saddle-navbar.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.saddle-navbar .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.saddle-navbar .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-fast);
}

.saddle-navbar .nav-link:hover {
    color: var(--saddle-secondary) !important;
}

/* Ensure navbar-collapse is visible on desktop */
@media (min-width: 992px) {
    .saddle-navbar .navbar-collapse {
        display: flex !important;
    }
}

/* Style navbar links */
.saddle-navbar .navbar-nav {
    display: flex;
    align-items: center;
}

.saddle-navbar .navbar-nav .nav-item {
    margin: 0 0.25rem;
}

.saddle-navbar .dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
}

.saddle-navbar .dropdown-item {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.saddle-navbar .dropdown-item:hover {
    background: var(--saddle-light);
    color: var(--saddle-secondary);
}

.navbar-social .social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    margin-left: 0.5rem;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.navbar-social .social-icon:hover {
    background: var(--saddle-secondary);
    border-color: var(--saddle-secondary);
    color: var(--saddle-white);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-saddle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 0;
    transition: var(--transition-medium);
}

.btn-saddle-primary {
    background: var(--saddle-secondary);
    color: var(--saddle-white);
    border: 2px solid var(--saddle-secondary);
}

.btn-saddle-primary:hover {
    background: transparent;
    color: var(--saddle-secondary);
}

.btn-saddle-outline {
    background: transparent;
    color: var(--saddle-white);
    border: 2px solid var(--saddle-white);
}

.btn-saddle-outline:hover {
    background: var(--saddle-white);
    color: var(--saddle-primary);
}

.btn-saddle-dark {
    background: var(--saddle-primary);
    color: var(--saddle-white);
    border: 2px solid var(--saddle-primary);
}

.btn-saddle-dark:hover {
    background: transparent;
    color: var(--saddle-primary);
}

/* ============================================
   FULLWIDTH HERO
   ============================================ */
.fullwidth-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fullwidth-hero .hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fullwidth-hero .hero-media img,
.fullwidth-hero .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fullwidth-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

.fullwidth-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--saddle-white);
    max-width: 900px;
    padding: 0 2rem;
}

.fullwidth-hero .hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.fullwidth-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.fullwidth-hero .hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    color: var(--saddle-white);
}

.fullwidth-hero .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fullwidth-hero .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--saddle-white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   CARD GRID
   ============================================ */
.card-grid-section {
    padding: var(--section-padding) 0;
}

.card-grid {
    display: grid;
    gap: 2rem;
}

.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
    .card-grid.cols-3,
    .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .card-grid { grid-template-columns: 1fr !important; }
}

.saddle-card {
    position: relative;
    overflow: hidden;
    background: var(--saddle-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.saddle-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.saddle-card .card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.saddle-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.saddle-card:hover .card-image img {
    transform: scale(1.1);
}

.saddle-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--saddle-white);
}

.saddle-card .card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.saddle-card .card-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--saddle-secondary);
}

.saddle-card .card-link:hover {
    color: var(--saddle-white);
}

.saddle-card .card-body {
    padding: 1.5rem;
}

/* ============================================
   SPLIT SECTION
   ============================================ */
.split-section {
    display: flex;
    min-height: 80vh;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-section .split-image,
.split-section .split-content {
    flex: 1;
}

.split-section .split-image {
    position: relative;
    overflow: hidden;
}

.split-section .split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-section .split-content {
    display: flex;
    align-items: center;
    padding: var(--section-padding);
    background: var(--saddle-white);
}

.split-section .split-content-inner {
    max-width: 500px;
}

.split-section .split-subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--saddle-secondary);
    margin-bottom: 1rem;
}

.split-section .split-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.split-section .split-text {
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .split-section {
        flex-direction: column !important;
        min-height: auto;
    }
    
    .split-section .split-image {
        min-height: 50vh;
    }
    
    .split-section .split-content {
        padding: var(--section-padding-sm);
    }
}

/* ============================================
   INFINITE MARQUEE
   ============================================ */
.infinite-marquee {
    background: var(--saddle-primary);
    padding: 1.5rem 0;
    overflow: hidden;
}

.infinite-marquee.light {
    background: var(--saddle-light);
}

.infinite-marquee.light .marquee-text {
    color: var(--saddle-primary);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.infinite-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    color: var(--saddle-white);
    white-space: nowrap;
    padding: 0 3rem;
}

.marquee-separator {
    color: var(--saddle-secondary);
    padding: 0 1rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   STATEMENT BLOCK
   ============================================ */
.statement-block {
    padding: var(--section-padding) 0;
    text-align: center;
}

.statement-block .statement-text {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-style: italic;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: var(--saddle-primary);
}

.statement-block .statement-text strong {
    color: var(--saddle-secondary);
    font-weight: 500;
}

/* ============================================
   TESTIMONIAL SLIDER
   ============================================ */
.testimonial-section {
    padding: var(--section-padding) 0;
    background: var(--saddle-light);
}

.testimonial-slide {
    text-align: center;
    padding: 2rem;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--saddle-primary);
}

.testimonial-source {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--saddle-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-rating {
    color: var(--saddle-secondary);
    margin-bottom: 1rem;
}

/* Swiper custom styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--saddle-gray-light);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--saddle-secondary);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    padding: var(--section-padding) 0;
    background: var(--saddle-primary);
    color: var(--saddle-white);
}

.newsletter-section .section-title {
    color: var(--saddle-white);
    margin-bottom: 1rem;
}

.newsletter-section .section-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--saddle-white);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--saddle-secondary);
}

@media (max-width: 575px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.saddle-footer {
    background: var(--saddle-dark);
    color: var(--saddle-white);
    padding: var(--section-padding-sm) 0;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-style: italic;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--saddle-secondary);
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    margin-right: 0.5rem;
    color: var(--saddle-white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--saddle-secondary);
    border-color: var(--saddle-secondary);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--saddle-secondary);
    color: var(--saddle-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--saddle-primary);
    color: var(--saddle-white);
    transform: translateY(-5px);
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-padding {
    padding: var(--section-padding) 0;
}

.section-padding-sm {
    padding: var(--section-padding-sm) 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--saddle-gray);
    max-width: 600px;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.bg-light-section {
    background: var(--saddle-light);
}

.bg-dark-section {
    background: var(--saddle-primary);
    color: var(--saddle-white);
}

/* =========================================================
   FRANCHISE DETAIL (Saddle Truck/Cafe/House)
   ========================================================= */
.franchise-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.franchise-hero .franchise-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.franchise-hero .franchise-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.franchise-hero .franchise-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.franchise-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    letter-spacing: 0.5px;
}
.franchise-hero .hero-description {
    font-size: 1.1rem;
    max-width: 700px;
}
.franchise-hero .hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.franchise-hero-minimal {
    min-height: 55vh;
}
.franchise-hero-minimal .franchise-hero-bg {
    position: static;
    height: 55vh;
}
.franchise-section {
    padding: 80px 0;
}
.franchise-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}
.franchise-kicker {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    color: var(--saddle-gray);
    margin-bottom: 12px;
}
.franchise-section-subtitle {
    color: var(--saddle-gray);
    max-width: 620px;
    margin: 0 auto;
}
.franchise-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    border-left: 4px solid var(--saddle-secondary);
    padding-left: 16px;
    margin: 24px 0;
}
.franchise-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.franchise-media-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.franchise-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.franchise-gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.franchise-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.franchise-menu-card {
    border: 1px solid var(--saddle-gray-light);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.franchise-menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.franchise-menu-card .franchise-menu-body {
    padding: 14px;
}
.franchise-menu-card .franchise-menu-title {
    font-weight: 600;
    margin-bottom: 6px;
}
.franchise-menu-card .franchise-menu-price {
    color: var(--saddle-secondary);
    font-weight: 600;
}
.franchise-locations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.franchise-location-card {
    border: 1px solid var(--saddle-gray-light);
    border-radius: 8px;
    padding: 14px;
    background: #fff;
}
.franchise-location-meta {
    color: var(--saddle-gray);
    font-size: 0.95rem;
}
.franchise-location-hours {
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--saddle-gray-dark);
    display: grid;
    gap: 4px;
}
.franchise-location-phone {
    margin-top: 10px;
    font-weight: 600;
}
.franchise-location-map {
    margin-top: 8px;
    display: inline-block;
    color: var(--saddle-secondary);
    text-decoration: none;
    font-weight: 600;
}
.franchise-location-map:hover {
    text-decoration: underline;
}
.franchise-location-title {
    font-weight: 600;
    margin-bottom: 6px;
}
@media (max-width: 991px) {
    .franchise-media-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   FRANCHISE DETAIL REVAMP
   ========================================================= */
.franchise-intro {
    background: #f4ede6;
    padding: 70px 0;
}
.franchise-intro-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.1fr);
    gap: 40px;
    align-items: center;
}
.franchise-intro-text {
    max-width: 420px;
}
.franchise-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: var(--saddle-gray);
    margin-bottom: 8px;
}
.franchise-intro-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 12px;
}
.franchise-intro-description {
    color: var(--saddle-gray-dark);
    margin-bottom: 20px;
}
.franchise-intro-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 14px;
}
.btn-pill {
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
}
.franchise-carousel {
    padding: 0;
    background: #f4ede6;
}
.franchise-carousel .franchise-carousel-swiper {
    width: 100%;
}
.franchise-carousel-slide {
    border-radius: 0;
    overflow: hidden;
}
.franchise-carousel-slide img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
}
.franchise-philosophy {
    padding: 80px 0;
}
.franchise-philosophy-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
    gap: 40px;
    align-items: start;
}
.franchise-philosophy-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 14px;
}
.franchise-philosophy-content p {
    color: var(--saddle-gray-dark);
}
.franchise-philosophy-media {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 16px;
}
.franchise-philosophy-media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}
.franchise-dark-band {
    background: #141414;
    color: #fff;
    padding: 60px 0;
}
.franchise-dark-grid {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(280px, 1.2fr) minmax(200px, 1fr);
    gap: 20px;
    align-items: center;
}
.franchise-dark-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}
.franchise-dark-copy h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 14px;
}
.franchise-dark-copy p {
    color: rgba(255, 255, 255, 0.75);
}
/* =========================================================
   FRANCHISE MENU PAGES
   ========================================================= */
.menu-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.menu-hero .menu-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-hero .menu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.menu-hero .menu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.menu-kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}
.menu-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
}
.menu-hero-subtitle {
    font-size: 1.05rem;
    max-width: 640px;
}
.menu-section {
    padding: 70px 0;
}
.menu-section-light {
    background: #f4ede6;
}
.menu-page-heading {
    text-align: center;
    margin-bottom: 40px;
}
.menu-country {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
    color: var(--saddle-gray-dark);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
}
.menu-country::before,
.menu-country::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: var(--saddle-gray-dark);
    opacity: 0.6;
}
.menu-title {
    margin-top: 8px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: 0.08em;
}
.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 28px 40px;
}
.menu-category {
    margin-bottom: 20px;
}
.menu-category-title {
    border: 1px solid var(--saddle-gray-dark);
    padding: 8px 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    color: var(--saddle-gray-dark);
    margin-bottom: 10px;
}
.menu-items {
    background: transparent;
}
.menu-item-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.menu-item-row:last-child {
    border-bottom: none;
}
.menu-item-thumb img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
}
.menu-item-name {
    font-weight: 600;
    margin-bottom: 4px;
}
.menu-item-desc {
    font-size: 0.95rem;
    color: var(--saddle-gray);
}
.menu-item-price {
    color: var(--saddle-gray-dark);
    font-weight: 600;
}

@media (max-width: 991px) {
    .franchise-intro-grid,
    .franchise-philosophy-grid,
    .franchise-dark-grid {
        grid-template-columns: 1fr;
    }
    .franchise-intro-image img,
    .franchise-philosophy-image img {
        height: 320px;
    }
    .menu-category-grid {
        grid-template-columns: 1fr;
    }
    .menu-item-row {
        grid-template-columns: 50px 1fr;
    }
    .menu-item-price {
        grid-column: 2 / 3;
        justify-self: end;
    }
}

/* =========================================================
   LOCATIONS PAGE
   ========================================================= */
.locations-section {
    padding: 80px 0;
}
.locations-hero-image-band {
    background: #f4ede6;
}
.locations-hero-img-full,
.locations-hero-editable .pimcore_editable_image,
.locations-hero-editable img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    display: block;
}
.locations-hero-editable .pimcore_editable_image {
    border: 2px dashed #b9b3aa;
    background: #efe7df;
    display: grid;
    place-items: center;
    color: #7a7268;
    min-height: 60vh;
}
.locations-hero-text-band {
    background: #f4ede6;
    padding: 26px 0 24px;
}
.locations-hero-text {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(280px, 1fr);
    gap: 350px;
    align-items: right;
}
.locations-hero-text .section-title {
    margin: 0;
}
.locations-hero-text .section-subtitle {
    margin: 0;
}
@media (max-width: 991px) {
    .locations-hero-text {
        grid-template-columns: 1fr;
    }
    .locations-hero-img-full,
    .locations-hero-editable .pimcore_editable_image,
    .locations-hero-editable img {
        height: 45vh;
        min-height: 280px;
    }
}
.location-card {
    border: 1px solid var(--saddle-gray-light);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    height: 100%;
}
.location-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.location-card-body {
    padding: 16px;
}
.location-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.location-card-line {
    color: var(--saddle-gray);
    font-size: 0.95rem;
}

.locations-swiper {
    position: relative;
    padding-bottom: 40px;
}

.locations-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 20px;
}

.locations-swiper:not(.swiper-initialized) .swiper-slide {
    width: auto;
}

.locations-swiper-edit .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 20px;
}

.locations-swiper-edit .swiper-button-prev,
.locations-swiper-edit .swiper-button-next,
.locations-swiper-edit .swiper-pagination {
    display: none;
}

.locations-swiper .swiper-button-prev,
.locations-swiper .swiper-button-next {
    color: var(--saddle-primary);
    top: auto;
    bottom: 0;
    width: 40px;
    height: 40px;
}

.locations-swiper .swiper-button-prev {
    left: 0;
}

.locations-swiper .swiper-button-next {
    right: 0;
}

/* ============================================
   EDITMODE STYLES
   ============================================ */
.saddle-theme.pimcore_area_entry {
    margin-bottom: 2rem;
}

.saddle-theme .pimcore_area_buttons {
    z-index: 100;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991px) {
    :root {
        --section-padding: 60px;
        --section-padding-sm: 40px;
    }
}

@media (max-width: 575px) {
    :root {
        --section-padding: 40px;
        --section-padding-sm: 30px;
    }
}
