* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    line-height: 1.6;
    color: #333;
}

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

/* Header & Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #CE1E1E;
}

/* Logo image sizing */
.logo-image {
    height: 56px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #CE1E1E;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    width: 100%;
    height: auto;
    background: none;
    display: block;
    position: relative;
}

.hero-overlay {
    display: none;
}

.hero-content {
    display: none;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    background: #CE1E1E;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(206, 30, 30, 0.4);
}

/* Restaurant Section */
.restaurants-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Filter Section */
.filter-section {
    margin-bottom: 2rem;
}

/* Search Container */
.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: 'Lato', sans-serif;
}

.search-input:focus {
    border-color: #CE1E1E;
    box-shadow: 0 0 0 3px rgba(206, 30, 30, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

/* Filter Chips Container */
.filter-chips-container {
    margin-bottom: 1.5rem;
}

.filter-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.filter-chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar styling */
.filter-chips::-webkit-scrollbar {
    height: 6px;
}

.filter-chips::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.filter-chips::-webkit-scrollbar-thumb {
    background: #CE1E1E;
    border-radius: 10px;
}

.filter-chips::-webkit-scrollbar-thumb:hover {
    background: #b01919;
}

.filter-chip {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-chip:hover {
    border-color: #CE1E1E;
    background: #fff5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.filter-chip.active {
    background: #CE1E1E;
    color: white;
    border-color: #CE1E1E;
}

.filter-chip.active:hover {
    background: #b01919;
    border-color: #b01919;
}

.chip-count {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Active Filters Display */
.active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.active-filters-label {
    font-weight: 600;
    color: #333;
    margin-right: 0.5rem;
}

.active-filters-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1;
}

.filter-tag {
    background: white;
    border: 1px solid #CE1E1E;
    color: #CE1E1E;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.remove-filter {
    background: none;
    border: none;
    color: #CE1E1E;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.remove-filter:hover {
    background: rgba(206, 30, 30, 0.1);
}

.clear-filters-btn {
    background: #CE1E1E;
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Lato', sans-serif;
}

.clear-filters-btn:hover {
    background: #b01919;
    transform: translateY(-2px);
}

/* Results Info */
.results-info {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.results-info strong {
    color: #CE1E1E;
    font-weight: 700;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.loading {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: #666;
    grid-column: 1 / -1;
}

.restaurant-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

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

.restaurant-info {
    padding: 1.5rem;
}

.restaurant-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.restaurant-distance {
    color: #CE1E1E;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.restaurant-hours {
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.restaurant-hours::before {
    content: "🕐";
}

.restaurant-status {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-open {
    background: #d4edda;
    color: #155724;
}

.status-closed {
    background: #f8d7da;
    color: #721c24;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    cursor: pointer;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 40px;
}

.pagination-btn:hover:not(:disabled) {
    background: #CE1E1E;
    color: white;
    border-color: #CE1E1E;
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: #CE1E1E;
    color: white;
    border-color: #CE1E1E;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-ellipsis {
    padding: 0.5rem 0.5rem;
    color: #666;
    font-weight: 500;
}

/* Download Section */
.download-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.download-section .section-title,
.download-section .section-subtitle {
    color: white;
}

.download-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.app-preview {
    flex: 0 0 auto;
}

.app-image {
    width: 250px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.app-image:hover {
    transform: scale(1.05);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.store-button {
    display: inline-block;
    transition: transform 0.3s;
}

.store-button:hover {
    transform: translateY(-3px);
}

.store-button img {
    height: 50px;
    border-radius: 8px;
}

/* ========== FEATURED RESTAURANT SECTION ========== */
.featured-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.loading-featured {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

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

.featured-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: #CE1E1E;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Instagram Embed */
.featured-instagram {
    width: 100%;
    position: relative;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for Instagram Reels */
    overflow: hidden;
    border-radius: 12px;
    background: #f0f0f0;
}

.instagram-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Featured Restaurant Info */
.featured-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.featured-resto-name {
    font-size: 2rem;
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.featured-resto-category {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 600;
}

.featured-resto-hours {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.featured-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0.5rem 0 1.5rem 0;
}

/* Order Now Button */
.order-now-btn {
    background: linear-gradient(135deg, #CE1E1E 0%, #a01515 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(206, 30, 30, 0.3);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(206, 30, 30, 0.4);
    background: linear-gradient(135deg, #e02222 0%, #b81818 100%);
}

.order-now-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.btn-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-top: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.titipku-logo-inline-btn {
    height: 2em;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    opacity: 1;
    filter: brightness(1.2);
}

/* Powered by TitipKu Section */
.powered-by-titipku {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.titipku-logo {
    height: 32px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.titipku-logo:hover {
    opacity: 1;
}

/* Inline logo in text */
.titipku-logo-inline {
    height: 2.5em;
    width: auto;
    vertical-align: middle;
    margin: 0 0.2rem;
    display: inline-block;
    opacity: 0.9;
}

.cta-using-app {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* ========== RELATED RESTAURANTS SECTION ========== */
.related-section {
    padding: 4rem 0;
    background: white;
}

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

.related-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 1rem;
}

.related-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

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

.related-info {
    padding: 1.5rem;
}

.related-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.related-hours {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.8rem;
}

/* ========== BROWSE ALL SECTION ========== */
.browse-all-section {
    padding: 3rem 0;
    background: #f9f9f9;
    text-align: center;
}

.browse-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #CE1E1E 0%, #a01515 100%);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(206, 30, 30, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.browse-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(206, 30, 30, 0.4);
    background: linear-gradient(135deg, #e02222 0%, #b81818 100%);
}

.browse-all-btn .btn-icon {
    font-size: 1.4rem;
}

/* ========== INFO SECTION ========== */
.info-section {
    padding: 4rem 0;
    background: white;
}

/* Footer - Bigger & Minimalist */
.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.footer .footer-content > p {
    margin: 0;
    color: #aaa;
    font-size: 0.95rem;
}

.footer-download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.footer-download-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.titipku-brand {
    color: #CE1E1E;
    font-weight: 700;
}

.footer-badges {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.store-badge img {
    display: block;
    width: auto;
}

/* App Store badge - smaller */
.store-badge:first-child img {
    height: 110px;
}

/* Google Play badge - larger */
.store-badge:last-child img {
    height: 80px;
}

.store-badge:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

/* Gallery row (three images) */
.gallery-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gallery-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: calc(33.333% - 0.66rem);
    min-width: 220px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: center;
}

.gallery-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: #333;
}

.app-intro {
    text-align: center;
    margin: 1.5rem 0 0.5rem;
    color: #444;
    font-size: 1.05rem;
}

.download-table-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.download-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-collapse: collapse;
}

.download-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f1f1;
    vertical-align: middle;
}

.download-table tr:last-child td { border-bottom: none; }

.download-table .store-button.small {
    display: inline-block;
    margin-right: 0.6rem;
    padding: 0.45rem 0.9rem;
    background: #CE1E1E;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.info-block { 
    margin-top: 4rem; 
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(206, 30, 30, 0.03) 0%, rgba(206, 30, 30, 0.08) 100%);
    border-radius: 20px;
}

.info-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.info-header h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #CE1E1E;
    margin-bottom: 0.5rem;
}

.info-header p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 400;
}

.info-header p strong {
    color: #CE1E1E;
    font-weight: 700;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    padding: 0 2rem;
}

.feature-card {
    background: #fff;
    color: #333;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(206, 30, 30, 0.15);
    border-color: rgba(206, 30, 30, 0.2);
}

/* Highlight Card - USP Card */
.highlight-card {
    background: linear-gradient(135deg, #CE1E1E 0%, #a01515 100%);
    color: white;
    border: 3px solid #CE1E1E;
    box-shadow: 0 12px 32px rgba(206, 30, 30, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '⭐';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    opacity: 0.25;
    filter: brightness(1.5);
}

.highlight-card .feature-icon {
    filter: brightness(1.3) contrast(1.2);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.highlight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 48px rgba(206, 30, 30, 0.4);
    border-color: #fff;
}

.highlight-card h4 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 900;
}

.highlight-card p {
    color: white !important;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
    display: block;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #CE1E1E;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .pagination {
        gap: 0.3rem;
        margin: 2rem 0;
    }

    .pagination-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.85rem;
        min-width: 35px;
    }

    .section-title {
        font-size: 2rem;
    }

    .download-images {
        gap: 1rem;
    }

    .app-image {
        width: 200px;
    }

    .gallery-card { width: 100%; }
    .download-table { padding: 0; }

    .logo-image { height: 44px; }

    .footer-download-text {
        font-size: 1.2rem;
    }

    /* Responsive badge sizes */
    .store-badge:first-child img {
        height: 45px;
    }

    .store-badge:last-child img {
        height: 60px;
    }

    .footer-badges {
        gap: 1rem;
    }
    
    .info-header h3 { font-size: 1.6rem; }
    .info-header p { font-size: 1rem; }
    .features { 
        grid-template-columns: 1fr; 
        padding: 0 1rem;
        gap: 1.5rem;
    }
    .feature-card { padding: 1.5rem 1rem; }
    .feature-icon { font-size: 2.5rem; }

    /* Filter Section Responsive */
    .search-container {
        margin-bottom: 1.5rem;
    }

    .search-input {
        font-size: 0.95rem;
        padding: 0.9rem 0.9rem 0.9rem 2.8rem;
    }

    .filter-label {
        font-size: 1rem;
    }

    .filter-chips {
        padding-bottom: 0.8rem;
    }

    .filter-chips::-webkit-scrollbar {
        height: 4px;
    }

    .filter-chip {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .active-filters {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem;
    }

    .active-filters-label {
        margin-bottom: 0.5rem;
    }

    .clear-filters-btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .results-info {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Featured Section Responsive */
    .featured-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .featured-instagram {
        padding-bottom: 100%; /* Square aspect ratio on mobile */
    }

    .featured-resto-name {
        font-size: 1.6rem;
    }

    .featured-resto-category {
        font-size: 1rem;
    }

    .order-now-btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 100%;
        justify-content: center;
    }

    /* Related Restaurants Responsive */
    .related-title {
        font-size: 1.5rem;
    }

    .related-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Browse All Button Responsive */
    .browse-all-btn {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 90%;
        justify-content: center;
    }
}
