/*
Theme Name: Peter Family McDonald's Theme
Theme URI: https://petermcdonalds.com
Author: Peter Family McDonald's Organization
Description: A custom McDonald's branded theme for Peter Family McDonald's franchise locations
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mcd-theme
*/

/* ========================================
   CSS Variables - McDonald's Brand Colors
   ======================================== */
:root {
    --mcd-red: #DA291C;
    --mcd-red-dark: #B5231A;
    --mcd-yellow: #FFC72C;
    --mcd-yellow-light: #FFCD41;
    --mcd-black: #292929;
    --mcd-gray: #6B6B6B;
    --mcd-gray-light: #F5F5F5;
    --mcd-white: #FFFFFF;
    --mcd-green: #00A651;
    --mcd-font: 'Speedee', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--mcd-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--mcd-black);
    background: var(--mcd-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--mcd-font);
    font-weight: 700;
    line-height: 1.2;
    color: var(--mcd-black);
}

a {
    color: var(--mcd-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--mcd-red-dark);
}

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

/* ========================================
   Header Styles
   ======================================== */
.site-header {
    background: var(--mcd-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top-bar {
    background: var(--mcd-red);
    padding: 8px 0;
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    align-items: center;
}

/* Header Social Icons */
.header-social {
    display: flex;
    gap: 8px;
}

.header-social a {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header-social a:hover {
    background: var(--mcd-yellow);
}

.header-social a svg {
    width: 14px;
    height: 14px;
    fill: var(--mcd-white);
}

.header-social a:hover svg {
    fill: var(--mcd-black);
}

/* Nearest Location Widget */
.nearest-location-widget {
    position: relative;
}

.nearest-location-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--mcd-yellow);
    color: var(--mcd-black);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.nearest-location-btn:hover {
    background: var(--mcd-yellow-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 199, 44, 0.4);
}

.nearest-location-btn svg {
    width: 16px;
    height: 16px;
}

.nearest-location-btn .distance {
    background: var(--mcd-red);
    color: var(--mcd-white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    margin-left: 4px;
}

/* Nearest Location Dropdown */
.nearest-location-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 360px;
    background: var(--mcd-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
    overflow: hidden;
}

.nearest-location-widget:hover .nearest-location-dropdown,
.nearest-location-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nearest-location-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 30px;
    width: 16px;
    height: 16px;
    background: var(--mcd-white);
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0,0,0,0.05);
}

.nld-header {
    background: linear-gradient(135deg, var(--mcd-green) 0%, #008C43 100%);
    color: var(--mcd-white);
    padding: 12px 16px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nld-header .nld-24hr-badge {
    background: var(--mcd-yellow);
    color: var(--mcd-black);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.nld-content {
    padding: 16px;
}

.nld-store-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.nld-store-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--mcd-black);
    margin-bottom: 4px;
}

.nld-store-address {
    font-size: 14px;
    color: var(--mcd-gray);
    margin-bottom: 8px;
    line-height: 1.4;
}

.nld-store-phone {
    font-size: 14px;
    margin-bottom: 12px;
}

.nld-store-phone a {
    color: var(--mcd-red);
    font-weight: 600;
}

/* Amenities in dropdown */
.nld-amenities {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.nld-amenity {
    width: 28px;
    height: 28px;
    background: var(--mcd-gray-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nld-amenity img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.nld-amenity[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--mcd-black);
    color: var(--mcd-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    z-index: 10;
}

/* Delivery Options in dropdown */
.nld-delivery-options {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.nld-delivery-btn {
    flex: 1;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nld-delivery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nld-delivery-btn img {
    height: 28px;
    width: auto;
}

.nld-buttons {
    display: flex;
    gap: 8px;
}

.nld-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

.nld-btn-primary {
    background: var(--mcd-yellow);
    color: var(--mcd-black);
}

.nld-btn-primary:hover {
    background: var(--mcd-yellow-light);
    color: var(--mcd-black);
}

.nld-btn-secondary {
    background: var(--mcd-gray-light);
    color: var(--mcd-black);
}

.nld-btn-secondary:hover {
    background: #e8e8e8;
}

.nld-loading {
    text-align: center;
    padding: 30px;
    color: var(--mcd-gray);
}

.nld-loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid var(--mcd-gray-light);
    border-top-color: var(--mcd-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Main Header */
.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-branding .logo-arches {
    width: 50px;
    height: auto;
}

.site-branding .site-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--mcd-red);
    line-height: 1.2;
}

.site-branding .site-tagline {
    font-size: 11px;
    color: var(--mcd-gray);
    font-weight: 500;
}

/* Custom Logo Support */
.site-branding .custom-logo-link {
    display: flex;
    align-items: center;
}

.site-branding .custom-logo {
    max-height: 60px;
    width: auto;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation > ul {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
    list-style: none;
}

.main-navigation li::before {
    display: none !important;
}

.main-navigation a {
    display: block;
    padding: 12px 18px;
    color: var(--mcd-black);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    background: var(--mcd-yellow);
    color: var(--mcd-black);
}

/* Hide mobile close button on desktop */
.mobile-menu-close {
    display: none;
}

/* Base submenu styles */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: -999em;
    min-width: 200px;
    background: var(--mcd-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 8px;
    list-style: none;
    margin: 0;
    z-index: 1000;
}

/* Third level and deeper */
.main-navigation ul ul ul {
    top: 0;
    z-index: 1001;
}

/* Fourth level */
.main-navigation ul ul ul ul {
    z-index: 1002;
}

/* Fifth level */
.main-navigation ul ul ul ul ul {
    z-index: 1003;
}

/* Show on hover - first level */
.main-navigation > ul > li:hover > ul {
    left: 0;
}

/* Show on hover - second level and deeper */
.main-navigation ul ul li:hover > ul {
    left: calc(100% - 5px);
    padding-left: 5px;
    margin-left: 0;
}

/* Add invisible bridge to prevent menu collapse when moving to submenu */
.main-navigation ul ul li.menu-item-has-children > a::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 100%;
}

/* Submenu items need position relative for the bridge */
.main-navigation ul ul li {
    position: relative;
}

/* For menus on the right side of screen, flip to left */
.main-navigation > ul > li:nth-last-child(-n+2) ul li:hover > ul {
    left: auto;
    right: calc(100% - 5px);
    padding-left: 0;
    padding-right: 5px;
}

/* Bridge for right-side menus */
.main-navigation > ul > li:nth-last-child(-n+2) ul li.menu-item-has-children > a::after {
    right: auto;
    left: -10px;
}

/* Multi-column support - add class via JS for long menus */
.main-navigation ul ul.multi-column {
    column-count: 2;
    column-gap: 8px;
    width: 420px;
}

.main-navigation ul ul.multi-column-3 {
    column-count: 3;
    width: 600px;
}

/* Submenu items */
.main-navigation ul ul li {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
}

.main-navigation ul ul li::before,
.main-navigation ul ul li::marker {
    display: none !important;
    content: none !important;
}

.main-navigation ul ul a {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 8px;
    display: block;
    width: 100%;
    white-space: nowrap;
    background: transparent;
}

.main-navigation ul ul a:hover {
    background: var(--mcd-yellow);
}

/* Hide mobile expand icons on desktop */
.menu-expand {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--mcd-black);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   Hero Slider
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 35%; /* Aspect ratio for responsive sizing */
    min-height: 300px;
    max-height: 600px;
    overflow: hidden;
    background: var(--mcd-yellow);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    padding: 0 60px;
    color: var(--mcd-white);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--mcd-white);
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--mcd-yellow);
    color: var(--mcd-black);
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 199, 44, 0.4);
}

.hero-btn:hover {
    background: var(--mcd-white);
    color: var(--mcd-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 199, 44, 0.5);
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--mcd-yellow);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-arrow:hover {
    background: var(--mcd-yellow);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    fill: var(--mcd-black);
}

.slider-arrow-prev {
    left: 30px;
}

.slider-arrow-next {
    right: 30px;
}

/* ========================================
   Announcement Bar
   ======================================== */
.announcement-bar {
    background: var(--mcd-white);
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--mcd-gray-light);
    padding: 20px 30px;
    border-radius: 12px;
}

.announcement-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.announcement-text p {
    font-size: 14px;
    color: var(--mcd-gray);
    margin: 0;
}

.announcement-btn {
    background: var(--mcd-red);
    color: var(--mcd-white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: var(--transition);
}

.announcement-btn:hover {
    background: var(--mcd-red-dark);
    color: var(--mcd-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.3);
}

/* ========================================
   Content Sections
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: var(--mcd-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--mcd-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.feature-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card-content {
    padding: 24px;
    text-align: center;
    min-height: 150px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--mcd-black);
    background-image: url('images/fry_ketchup.svg');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    padding: 15px 20px;
    margin: -24px -24px 12px -24px;
}

.feature-card p {
    font-size: 14px;
    color: var(--mcd-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mcd-red);
    font-weight: 700;
    font-size: 14px;
}

.feature-card-link:hover {
    gap: 10px;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--mcd-black);
    color: var(--mcd-white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

/* Footer Decorative Illustrations */
.footer-illustrations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-illus {
    position: absolute;
    opacity: 0.08;
    z-index: 0;
}

.footer-illus-1 {
    width: 120px;
    top: 20px;
    left: 5%;
    transform: rotate(-15deg);
}

.footer-illus-2 {
    width: 150px;
    top: 40%;
    right: 3%;
    transform: rotate(10deg);
}

.footer-illus-3 {
    width: 80px;
    bottom: 60px;
    left: 15%;
    transform: rotate(5deg);
}

.footer-illus-4 {
    width: 100px;
    top: 30px;
    right: 20%;
    transform: rotate(-8deg);
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand .footer-logo img {
    width: 45px;
}

.footer-brand .footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--mcd-yellow);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 16px;
    color: var(--mcd-yellow);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column ul,
.footer-column .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-column li::before,
.footer-column li::marker {
    display: none !important;
    content: none !important;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--mcd-yellow);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   Page Content
   ======================================== */
.page-header {
    background-color: transparent;
    background-image: url('images/melty_cheese.svg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 20px 0 100px;
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: flex-start;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--mcd-black);
    margin: 0;
}

.page-content {
    padding: 60px 0;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.entry-content p {
    margin-bottom: 20px;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1024px) {
    .hero-slider {
        padding-bottom: 45%;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-top-left {
        display: none;
    }
    
    .employee-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Mobile Navigation - Accordion Style */
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--mcd-white);
        z-index: 9999;
        display: none;
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 80px 20px 20px;
    }
    
    .main-navigation.active {
        display: flex;
    }
    
    /* Show close button on mobile */
    .main-navigation .mobile-menu-close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: var(--mcd-gray-light);
        border: none;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }
    
    .main-navigation ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation a {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    /* Mobile Submenus - Accordion */
    .main-navigation .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        padding-left: 20px;
        background: var(--mcd-gray-light);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block;
        min-width: 100%;
        left: 0 !important;
    }
    
    .main-navigation li.menu-open > .sub-menu {
        max-height: 1000px;
    }
    
    .main-navigation .sub-menu a {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Hide desktop hover bridge on mobile */
    .main-navigation ul ul li.menu-item-has-children > a::after {
        display: none;
    }
    
    /* Show expand icons on mobile */
    .menu-expand {
        display: flex !important;
    }
    
    /* Mobile expand icons for ALL menu items with children */
    .main-navigation .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding-right: 50px;
    }
    
    .main-navigation .menu-item-has-children > a .menu-expand {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 400;
        background: rgba(0,0,0,0.05);
        border-radius: 4px;
    }
    
    .main-navigation .menu-item-has-children.menu-open > a .menu-expand {
        background: var(--mcd-yellow);
    }
    
    /* Hero Slider Mobile - Adjust aspect ratio */
    .hero-slider {
        padding-bottom: 56%; /* 16:9 aspect ratio for mobile */
        min-height: 200px;
        max-height: none;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .hero-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-arrow-prev {
        left: 10px;
    }
    
    .slider-arrow-next {
        right: 10px;
    }
    
    .announcement-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* Page header mobile */
    .page-header {
        padding: 15px 0 70px;
        min-height: 100px;
        background-size: 100% auto;
    }
    
    .page-header .page-title {
        font-size: 24px;
    }
    
    /* Nearest Location Dropdown Mobile */
    .nearest-location-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 80vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }
    
    .nearest-location-widget:hover .nearest-location-dropdown {
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%);
    }
    
    .nearest-location-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
