/* ===== VARIABLES (RESTAURANT THEME) ===== */
:root {
    --primary-color: #0046BE;        /* สีน้ำเงินหลัก (Royal Blue) */
    --secondary-color: #F9AC12;      /* สีส้ม/ทองสำหรับเน้น (Gold Orange) */
    --accent-color: #B20400;         /* สีแดงเข้มสำหรับเตือน (Dark Red) */
    --dark-color: #1a1a1a;
    --light-color: #F4E7D4;          /* สีพื้นหลังอ่อน (Cream/Beige) */
    --text-color: #333;
    --text-light: #666;
    --border-color: #ddd;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
    --sidebar-active-bg: #1B2C4F;    /* สีพื้นหลัง Active Link */
    --success-color: #28a745;        /* สีเขียวสำหรับสถานะดี */
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1A5ACB;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
}

.btn-login, .btn-logout {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    font-size: 14px;
}

.btn-line {
    background-color: #00B900;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
}

.btn-line i {
    font-size: 20px;
}

.btn-search {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
}

.btn-search:hover {
    background-color: #1A5ACB;
}

/* ===== HEADER ===== */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--secondary-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-cart {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.btn-cart:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(0, 70, 190, 0.05) 0%, rgba(249, 172, 18, 0.05) 100%);
    padding: 60px 0;
}

.hero .container {
    max-width: 1200px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

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

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 15px;
    display: inline-block;
    width: 100%;
}

/* ===== STORE LOCATOR ===== */
.store-locator {
    padding: 80px 0;
    background-color: white;
}

.locator-wrapper {
    margin-top: 40px;
}

.search-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-tab {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background-color: #f5f5f5;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kanit', sans-serif;
}

.search-tab:hover {
    background-color: #e8e8e8;
}

.search-tab.active {
    background-color: white;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.search-container {
    margin-bottom: 30px;
}

.search-input-large {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: white;
    font-family: 'Kanit', sans-serif;
}

.search-input-large::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-input-large:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 70, 190, 0.2);
}

.locator-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

.locator-content.menu-view {
    grid-template-columns: 1fr;
}

.locator-content.menu-view .map-panel {
    display: none;
}

.locator-content.menu-view .search-panel {
    grid-column: 1 / -1;
}

.locator-content.menu-view .stores-list {
    display: none;
}

.locator-content.menu-view .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.locator-content .menu-grid {
    display: none;
}

.search-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stores-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 800px;
    overflow-y: auto;
}

.store-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-card:hover {
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-color);
    transform: translateX(5px);
}

.locator-content.menu-view .store-card {
    border-left: none;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

.locator-content.menu-view .store-card:hover {
    transform: translateY(-5px);
}

.store-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.store-header .store-name {
    flex: 1;
    margin-bottom: 0;
}

.store-distance {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 700;
    white-space: nowrap;
    background-color: rgba(249, 172, 18, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.store-info {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.store-info i {
    width: 20px;
    color: var(--primary-color);
}

.store-landmarks {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
    border-left: 3px solid var(--secondary-color);
}

.landmark-item {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 5px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.landmark-item:last-child {
    margin-bottom: 0;
}

.landmark-item i {
    color: var(--secondary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.store-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.btn-order-now {
    flex: 1;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    pointer-events: auto;
}

.btn-order-now:hover {
    background-color: #ffb300;
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-info {
    flex: 1;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    pointer-events: auto;
}

.btn-info:hover {
    background-color: #1A5ACB;
    transform: translateY(-2px);
}

.map-container {
    height: 500px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* ===== MENU HIGHLIGHTS ===== */
.menu-highlights {
    padding: 80px 0;
}

.menu-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background-color: white;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.menu-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.menu-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--light-color);
}

.menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.menu-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.menu-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-add-cart {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background-color: #ffb300;
    transform: scale(1.05);
}

/* ===== PROMOTION SECTION ===== */
.promotion {
    padding: 60px 0;
    background-color: white;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.promo-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    justify-content: flex-start;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.promo-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    box-shadow: var(--shadow);
    z-index: 10;
}

.promo-icon {
    font-size: 56px;
    color: var(--primary-color);
    margin: 15px 0 12px 0;
    flex-shrink: 0;
}

.promo-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.promo-card p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.6;
    word-wrap: break-word;
}

.promo-price {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 12px;
    margin-top: auto;
    padding-top: 10px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 70, 190, 0.03) 0%, rgba(249, 172, 18, 0.03) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item i {
    font-size: 28px;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

.social-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.social-section h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 30px 0;
    border-top: 3px solid var(--secondary-color);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 24px;
    color: var(--primary-color);
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

.close-btn:hover {
    color: var(--dark-color);
}

.modal-body {
    padding: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    color: var(--primary-color);
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: bold;
}

.cart-item-qty {
    display: flex;
    gap: 10px;
    align-items: center;
}

.qty-btn {
    background-color: var(--light-color);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.qty-btn:hover {
    background-color: var(--border-color);
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.total-price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.total-price span {
    color: var(--secondary-color);
}

/* ===== STORE DETAIL MODAL ===== */
.store-detail-modal {
    max-width: 900px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.store-detail-modal .modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    overflow-y: auto;
    flex: 1;
}

.store-detail-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    max-height: 100%;
}

.store-detail-map {
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: #f0f0f0;
}

.store-detail-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-section {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-section h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.detail-item i {
    font-size: 18px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-item label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.detail-item p,
.detail-item a {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    text-decoration: none;
}

.detail-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.detail-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.btn-line-contact {
    background-color: #00B900;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-line-contact:hover {
    background-color: #009900;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-location {
    background-color: #EA4335;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-location:hover {
    background-color: #d33425;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
        z-index: 99;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .promo-card {
        padding: 25px 15px;
        min-height: 300px;
    }

    .promo-icon {
        font-size: 48px;
        margin: 12px 0 8px 0;
    }

    .promo-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .promo-card p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-box {
        flex-direction: column;
    }

    .btn-search {
        width: 100%;
    }

    .locator-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .locator-content.menu-view .stores-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-container {
        height: 300px;
    }

    .store-detail-modal .modal-body {
        grid-template-columns: 1fr;
    }

    .store-detail-map {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-wrap: wrap;
    }

    .logo-img {
        height: 40px;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .promo-card {
        padding: 18px 12px;
    }

    .promo-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .promo-icon {
        font-size: 40px;
        margin: 8px 0 6px 0;
    }

    .promo-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .promo-card p {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
    }

    .contact-info {
        gap: 20px;
    }

    .info-item {
        gap: 15px;
    }

    .info-item i {
        font-size: 24px;
    }

    .info-item h4 {
        font-size: 16px;
    }

    .info-item p {
        font-size: 13px;
    }

    .social-links {
        gap: 10px;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .menu-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .locator-content {
        grid-template-columns: 1fr;
    }

    .locator-content.menu-view .stores-list {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 250px;
    }
}
