* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Top Header */
.top-header {
    background-color: #ffffff;
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.search-icon {
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logo img {
    height: 40px;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon {
    cursor: pointer;
    position: relative;
}

.notification-icon {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
}

.notification-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toast Notification UI */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon.success {
    background: #e8f5e9;
    color: #4CAF50;
}

.toast-icon.info {
    background: #e3f2fd;
    color: #2196F3;
}

.toast-icon.order {
    background: #fff3e0;
    color: #FF9800;
}

.toast-icon.cart {
    background: #ffd700;
    color: #000;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.toast-message {
    font-size: 13px;
    color: #666;
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #999;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #333;
}

/* More button for categories */
.filter-btn.more-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f0f0f0;
    border: 1px dashed #ccc;
}

.filter-btn.more-btn:hover {
    background: #e0e0e0;
}

.filter-btn.more-btn svg {
    flex-shrink: 0;
}

.user-icon {
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon {
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.main-nav {
    background-color: #FFD700;
    padding: 28px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu li a {
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-menu li a.active {
    font-weight: bold;
}

/* Hero Section */
.hero {
    width: 100%;
}

.hero-slider {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Categories Section */
.categories {
    padding: 50px 0;
    background-color: #fff;
}

.categories-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.category-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.category-name {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.5px;
}

/* Browse Items Section */
.browse-items {
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.item-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.item-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.item-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background-color: #FFD700;
    color: #000;
}

.item-card-info {
    padding: 24px;
}

.item-card-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
}

.item-card-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.item-card-price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
}

.item-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.view-btn,
.cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.view-btn {
    background-color: #FFD700;
    color: #000;
}

.view-btn:hover {
    background-color: #e6c200;
}

.cart-btn {
    background-color: #f0f0f0;
    color: #333;
}

.cart-btn:hover {
    background-color: #e0e0e0;
}

.cart-btn-yellow {
    background-color: #FFD700;
    color: #000;
    flex: 1;
    justify-content: center;
}

.cart-btn-yellow:hover {
    background-color: #FFC107;
}

.item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

@media (max-width: 992px) {
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .items-grid .item-card {
        border-radius: 12px;
    }
    
    .items-grid .item-card-image {
        height: 120px;
    }
    
    .items-grid .item-card-info {
        padding: 12px;
    }
    
    .items-grid .item-card-info h3 {
        font-size: 13px;
        margin-bottom: 6px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .items-grid .item-card-desc {
        display: none;
    }
    
    .items-grid .item-card-price {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .items-grid .item-card-actions {
        margin-top: 8px;
    }
    
    .items-grid .cart-btn,
    .items-grid .cart-btn-yellow {
        padding: 8px;
        font-size: 11px;
    }
    
    .items-grid .cart-btn svg,
    .items-grid .cart-btn-yellow svg {
        width: 14px;
        height: 14px;
    }
}

/* Full Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    height: 60px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Popular Menu Section */
.popular-menu {
    padding: 40px 0 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    letter-spacing: 1px;
}

.view-all {
    font-size: 14px;
    color: #2196F3;
    text-decoration: none;
    font-weight: 500;
}

.view-all:hover {
    text-decoration: underline;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.menu-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
}

.menu-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.menu-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: #FFD700;
    color: #000;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
}

.menu-info {
    padding: 16px;
}

.menu-title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-bottom: 6px;
}

.menu-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 14px;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    font-size: 15px;
    font-weight: bold;
    color: #000;
}

.add-to-cart {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.add-to-cart:hover {
    background-color: #e6c200;
}

/* Special Offer Section */
.special-offer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 20px;
    margin: 40px 0;
}

.offer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.offer-text {
    flex: 1;
}

.offer-tag {
    display: inline-block;
    background-color: #FFD700;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.offer-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.offer-description {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 24px;
    line-height: 1.6;
}

.offer-description strong {
    color: #FFD700;
}

.offer-btn {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.offer-image {
    flex: 1;
    max-width: 450px;
}

.offer-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Meet The Team Section */
.team-section {
    padding: 80px 20px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.team-title {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.team-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    border-radius: 16px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.team-card img {
    width: 100%;
    height: auto;
    display: block;
}

.section-title-center {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* Customer Reviews Section */
.reviews {
    padding: 80px 20px;
    background-color: #fff;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 14px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #000;
    font-size: 15px;
}

.reviewer-location {
    font-size: 13px;
    color: #888;
}

/* App Download Section */
.app-download {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px;
    overflow: hidden;
}

.app-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.app-mockup {
    flex: 0 0 auto;
}

.phone-image {
    max-width: 450px;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.app-text {
    flex: 1;
    max-width: 500px;
}

.app-badge {
    display: inline-block;
    background-color: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.app-title {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-description {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 28px;
    line-height: 1.7;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
}

.app-buttons {
    display: flex;
    gap: 16px;
}

.app-store-btn,
.play-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #FFD700;
    color: #000;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.app-store-btn:hover,
.play-store-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-small {
    font-size: 10px;
    opacity: 0.7;
}

.btn-large {
    font-size: 16px;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #fff;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-brand {
    flex: 0 0 300px;
}

.footer-logo-icon {
    width: 40px;
    height: auto;
    margin-bottom: 20px;
}

.footer-logo-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
}

.footer-links-group {
    flex: 0 0 auto;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-bottom {
    background-color: #FFD700;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.footer-bottom p {
    color: #000;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.footer-bottom-links a:hover {
    opacity: 0.7;
}

/* Menu Page Styles */
.page-header {
    background-color: #000000;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    color: #aaa;
}

.menu-filter {
    padding: 30px 20px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid #eee;
    background-color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: #FFD700;
}

.filter-btn.active {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #000;
}

.menu-page-items {
    padding: 50px 20px;
    background-color: #f8f8f8;
}


/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding: 20px 0;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    background-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

.page-info {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.page-info span {
    font-weight: 700;
    color: #000;
}

/* Loading Spinner */
.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: #666;
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: #e74c3c;
}

/* Delivery Page Styles */
.delivery-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
    padding: 80px 20px;
    overflow: hidden;
}

.delivery-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.delivery-hero-text {
    flex: 1;
    max-width: 550px;
}

.delivery-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.delivery-hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.delivery-hero-text p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 30px;
}

.delivery-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: #FFD700;
    color: #000;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.delivery-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #FFD700;
}

.stat-label {
    font-size: 13px;
    color: #888;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
}

.delivery-hero-image {
    flex: 0 0 auto;
    position: relative;
}

.delivery-hero-image img {
    width: 450px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card span {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.floating-card.card-1 {
    top: 30px;
    left: -40px;
}

.floating-card.card-2 {
    bottom: 50px;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background-color: #fff;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background-color: #FFD700;
    color: #000;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.step-connector {
    flex-shrink: 0;
}

/* Delivery Features Section */
.delivery-features {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.features-image {
    flex: 0 0 400px;
}

.features-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-text {
    flex: 1;
}

.features-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Delivery Stats Section */
.delivery-stats-section {
    padding: 80px 20px;
    background-color: #fff;
}

.stats-content {
    max-width: 1100px;
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.stats-header p {
    font-size: 16px;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #FFD700;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
}

.stat-name {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Track Order Section */
.track-order {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.track-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.track-text {
    flex: 1;
}

.track-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.track-text p {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 30px;
}

.track-form {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.track-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.track-input::placeholder {
    color: #888;
}

.track-input:focus {
    border-color: #FFD700;
}

.track-btn {
    padding: 16px 32px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.track-btn:hover {
    background-color: #fff;
}

.track-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.track-help {
    font-size: 13px;
    color: #888;
}

.track-help a {
    color: #FFD700;
    text-decoration: none;
    margin-left: 5px;
}

.track-help a:hover {
    text-decoration: underline;
}

.track-illustration {
    flex: 0 0 350px;
}

.track-timeline {
    position: relative;
    padding-left: 30px;
}

.track-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 0;
    width: 16px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.timeline-item.completed .timeline-dot {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.timeline-item.active .timeline-dot {
    background-color: #FFD700;
    border-color: #FFD700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.timeline-item.completed .timeline-content h4 {
    color: #4CAF50;
}

.timeline-item.active .timeline-content h4 {
    color: #FFD700;
}

.timeline-content p {
    font-size: 13px;
    color: #888;
}

/* Delivery CTA Section */
.delivery-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Bundles Page Styles */
.bundles-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bundles-hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.bundles-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.bundles-hero p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-food {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.3;
    animation: floatFood 6s ease-in-out infinite;
}

.floating-food img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-food.food-1 { top: 20%; left: 10%; animation-delay: 0s; }
.floating-food.food-2 { top: 60%; right: 15%; animation-delay: 2s; }
.floating-food.food-3 { bottom: 20%; left: 20%; animation-delay: 4s; }

@keyframes floatFood {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Flash Deals Section */
.flash-deals {
    padding: 60px 20px;
    background-color: #fff;
}

.flash-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.flash-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flash-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 16px;
}

.countdown > span {
    font-size: 14px;
    color: #666;
}

.timer {
    display: flex;
    gap: 8px;
}

.time-block {
    background-color: #000;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
}

.time-block span {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.time-block small {
    font-size: 10px;
    opacity: 0.7;
}

.flash-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.flash-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.flash-card:hover {
    transform: translateY(-5px);
}

.flash-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #FF6B6B;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 2;
}

.flash-image {
    height: 180px;
    overflow: hidden;
}

.flash-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flash-card:hover .flash-image img {
    transform: scale(1.05);
}

.flash-info {
    padding: 20px;
}

.flash-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.flash-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

.flash-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 22px;
    font-weight: 700;
    color: #FF6B6B;
}

.flash-btn {
    width: 100%;
    padding: 12px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.flash-btn:hover {
    background-color: #e6c200;
}

/* Premium Bundles Section */
.premium-bundles {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.section-intro p {
    font-size: 16px;
    color: #666;
}

.bundles-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bundle-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.bundle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.bundle-card.featured {
    border: 2px solid #FFD700;
}

.bundle-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
}

.bundle-card.featured .bundle-tag {
    background-color: #FFD700;
    color: #000;
}

.bundle-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: #FF6B6B;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 2;
}

.bundle-image {
    height: 160px;
    overflow: hidden;
}

.bundle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundle-content {
    padding: 24px;
}

.bundle-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.bundle-items {
    list-style: none;
    margin-bottom: 20px;
}

.bundle-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    padding: 6px 0;
}

.bundle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.bundle-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    color: #999;
}

.price-value {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.bundle-btn {
    padding: 10px 20px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bundle-btn:hover {
    background-color: #000;
    color: #fff;
}

/* Promo Codes Section */
.promo-codes {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.promo-content {
    max-width: 1000px;
    margin: 0 auto;
}

.promo-text {
    text-align: center;
    margin-bottom: 40px;
}

.promo-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.promo-text p {
    font-size: 16px;
    color: #aaa;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.promo-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFD700;
}

.promo-icon {
    flex-shrink: 0;
}

.promo-details {
    flex: 1;
}

.promo-code {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 4px;
}

.promo-desc {
    font-size: 13px;
    color: #aaa;
}

.copy-btn {
    padding: 8px 16px;
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background-color: #FFD700;
    color: #000;
}

/* Bundle Newsletter Section */
.bundle-newsletter {
    padding: 80px 20px;
    background-color: #fff;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    margin-bottom: 20px;
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.newsletter-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
    border-color: #FFD700;
}

.newsletter-form button {
    padding: 16px 32px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-form button:hover {
    background-color: #000;
    color: #fff;
}

/* Branches Page Styles */
.branches-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
    padding: 80px 20px;
    text-align: center;
}

.branches-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.branches-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.branches-hero p {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 30px;
}

.search-location {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.search-location svg {
    margin-left: 12px;
    color: #888;
}

.search-location input {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.search-location input::placeholder {
    color: #888;
}

.search-location button {
    padding: 12px 24px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-location button:hover {
    background-color: #fff;
}

/* Branch Stats */
.branch-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 20px;
    background-color: #FFD700;
}

.branch-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #000;
}

.stat-text {
    font-size: 14px;
    color: #333;
}

/* Featured Branch */
.featured-branch {
    padding: 80px 20px;
    background-color: #fff;
}

.featured-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.featured-image {
    flex: 0 0 500px;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #000;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.featured-info {
    flex: 1;
}

.branch-label {
    display: inline-block;
    background-color: rgba(255, 215, 0, 0.15);
    color: #B8860B;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.featured-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.branch-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.branch-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333;
}

.branch-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f8f8f8;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FFD700;
    color: #000;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.directions-btn:hover {
    background-color: #000;
    color: #fff;
}

/* All Branches Section */
.all-branches {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.branches-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.branch-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.branch-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branch-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.branch-status.open {
    background-color: #4CAF50;
    color: #fff;
}

.branch-status.closed {
    background-color: #FF6B6B;
    color: #fff;
}

.branch-info {
    padding: 24px;
}

.branch-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.branch-address,
.branch-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.branch-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.call-btn,
.map-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.call-btn {
    background-color: #FFD700;
    color: #000;
}

.call-btn:hover {
    background-color: #e6c200;
}

.map-btn {
    background-color: #f8f8f8;
    color: #333;
}

.map-btn:hover {
    background-color: #000;
    color: #fff;
}

/* Coming Soon Section */
.coming-soon {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.coming-content {
    max-width: 700px;
    margin: 0 auto;
}

.coming-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.coming-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.coming-content > p {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 40px;
}

.coming-locations {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.coming-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 50px;
    text-align: center;
}

.coming-icon {
    margin-bottom: 16px;
}

.coming-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.coming-card p {
    font-size: 14px;
    color: #888;
}

/* Item Details Page */
.breadcrumb {
    background-color: #f8f8f8;
    padding: 16px 20px;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover { color: #FFD700; }

.breadcrumb .current {
    color: #000;
    font-weight: 500;
}

.item-details {
    padding: 60px 20px;
    background-color: #fff;
}

.item-details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.item-gallery { flex: 0 0 500px; }

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f8f8f8;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.item-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
}

.favorite-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.favorite-btn:hover { transform: scale(1.1); }
.favorite-btn.active { background-color: #FFF0F0; }

.thumbnail-gallery {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover { border-color: #ddd; }
.thumbnail.active { border-color: #FFD700; }

.item-info { flex: 1; padding-bottom: 100px; }

/* Item Header - Title and Rating */
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.item-title-section {
    flex: 1;
}

.item-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.item-category-label {
    font-size: 14px;
    color: #666;
}

.item-rating-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 215, 0, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
}

.item-rating-badge span {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

/* Info Cards Row */
.info-cards-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.info-card {
    flex: 1;
    background: #F5F5F5;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.info-icon {
    font-size: 20px;
}

.info-value {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.info-label {
    font-size: 12px;
    color: #666;
}

/* Item Sections */
.item-section {
    margin-bottom: 24px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
}

.section-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px 0;
}

.item-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Ingredients */
.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ingredient-tag {
    background: #F5F5F5;
    color: #000;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 20px;
}

/* Quantity Row */
.quantity-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-label {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: #F5F5F5;
    border-radius: 12px;
    padding: 4px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #fff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn.qty-plus {
    background: #FFD700;
}

.qty-value {
    min-width: 48px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

/* Bottom Bar */
.item-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    border-radius: 24px 24px 0 0;
    z-index: 100;
}

.bottom-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-section {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: #666;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
}

.add-to-cart-btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.option-section {
    margin-bottom: 24px;
}

.option-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.size-options {
    display: flex;
    gap: 12px;
}

.size-option input { display: none; }

.size-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-option input:checked + .size-box,
.size-option.selected .size-box {
    border-color: #FF9800;
    background-color: rgba(255,152,0,0.1);
}

.size-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.size-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.size-name {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.size-price {
    font-size: 13px;
    color: #FF9800;
    font-weight: 600;
    margin-top: 4px;
}

.sizes-section .section-title {
    color: #E65100;
}

.sizes-section .section-subtitle {
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
}

.addon-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.addon-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.addon-option:hover {
    border-color: #ddd;
    background: #fafafa;
}

.addon-option input { display: none; }

.addon-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.addon-checkbox svg {
    opacity: 0;
    color: #fff;
    transition: opacity 0.2s ease;
}

.addon-option input:checked ~ .addon-checkbox {
    background: #FFD700;
    border-color: #FFD700;
}

.addon-option input:checked ~ .addon-checkbox svg {
    opacity: 1;
}

.addon-option input:checked ~ .addon-info .addon-name {
    color: #000;
    font-weight: 600;
}

.addon-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.addon-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.addon-price {
    font-size: 13px;
    color: #FFD700;
    font-weight: 600;
    margin-top: 2px;
}

@media (max-width: 576px) {
    .addon-options {
        grid-template-columns: 1fr;
    }
}

.special-instructions {
    width: 100%;
    padding: 14px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    outline: none;
}

.special-instructions:focus { border-color: #FFD700; }

.cart-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cart-action-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quantity-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quantity-group .quantity-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.price-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 100px;
}

.price-group .price-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.price-group .price-value {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.cart-action-row .add-to-cart-btn {
    flex: 1;
    min-width: 180px;
}

@media (max-width: 576px) {
    .cart-action-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cart-action-row .quantity-group,
    .cart-action-row .price-group {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #f8f8f8;
    padding: 8px 16px;
    border-radius: 12px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.qty-btn:hover { background-color: #FFD700; }

.qty-value {
    font-size: 18px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.add-to-cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
    background-color: #000;
    color: #fff;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background-color: #FF6B6B;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon { position: relative; }

/* Item Tabs */
.item-tabs {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-headers {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 24px;
    background-color: #fff;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover { border-color: #FFD700; }

.tab-btn.active {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #000;
}

.tab-content {
    display: none;
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
}

.tab-content.active { display: block; }

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ingredient {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #f8f8f8;
    border-radius: 12px;
}

.ingredient-icon { font-size: 24px; }

.ingredient span {
    font-size: 14px;
    color: #333;
}

.nutrition-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

.nutrition-label {
    font-size: 14px;
    color: #666;
}

.nutrition-value {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.nutrition-note {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.reviews-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.rating-big {
    text-align: center;
}

.rating-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #000;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 8px 0;
}

.total-reviews {
    font-size: 14px;
    color: #666;
}

.rating-bars { flex: 1; }

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.rating-bar span {
    font-size: 13px;
    color: #666;
    min-width: 20px;
}

.rating-bar .bar {
    flex: 1;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background-color: #FFD700;
    border-radius: 4px;
}

.review-card {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 12px;
    margin-bottom: 16px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-info { flex: 1; }

.reviewer-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.load-more-reviews {
    width: 100%;
    padding: 14px;
    background-color: transparent;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    margin-top: 16px;
}

.load-more-reviews:hover {
    border-color: #FFD700;
    color: #000;
}

/* Related Items */
.related-items {
    padding: 60px 20px;
    background-color: #fff;
}

.related-container {
    max-width: 1200px;
    margin: 0 auto;
}

.related-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.related-card {
    background-color: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-card:hover { transform: translateY(-5px); }

.related-image {
    height: 150px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info {
    padding: 16px;
}

.related-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.related-price {
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
}

.related-card {
    text-decoration: none;
    display: block;
}

.related-loading {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

/* Responsive */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .delivery-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .delivery-hero-text {
        max-width: 100%;
    }
    
    .delivery-hero-actions {
        justify-content: center;
    }
    
    .delivery-stats {
        justify-content: center;
    }
    
    .delivery-hero-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    .floating-card.card-1 {
        left: 10px;
    }
    
    .floating-card.card-2 {
        right: 10px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-connector {
        transform: rotate(90deg);
    }
    
    .features-content {
        flex-direction: column;
    }
    
    .features-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flash-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-cards {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        flex-direction: column;
    }
    
    .featured-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .branch-stats {
        gap: 30px;
    }
    
    .item-details-container {
        flex-direction: column;
    }
    
    .item-gallery {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nutrition-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .track-content {
        flex-direction: column;
        text-align: center;
    }
    
    .track-form {
        flex-direction: column;
    }
    
    .track-illustration {
        flex: 0 0 auto;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-brand {
        flex: 0 0 100%;
    }
    
    .offer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-image {
        max-width: 100%;
    }
    
    .app-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .app-features {
        align-items: center;
    }
    
    .phone-image {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        padding: 0 20px;
    }
    
    .categories-container {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon img {
        width: 30px;
        height: 30px;
    }
    
    .offer-title {
        font-size: 28px;
    }
    
    .app-title {
        font-size: 28px;
    }
    
    .phone-frame {
        width: 220px;
        height: 400px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand {
        flex: 0 0 auto;
    }
    
    .footer-logo-icon {
        margin: 0 auto 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .categories-container {
        gap: 20px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-store-btn,
    .play-store-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

/* ========================================
   CART PAGE STYLES
======================================== */
.cart-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.cart-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cart-header p {
    color: #888;
    font-size: 16px;
}

.cart-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.cart-items-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.items-count {
    font-size: 18px;
    font-weight: 600;
}

.clear-cart-btn {
    background: none;
    border: none;
    color: #ff4444;
    font-size: 14px;
    cursor: pointer;
}

/* Cart Item Card - Android Style */
.cart-item-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 12px;
}

.cart-item-card .cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.cart-item-card .cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.cart-item-name {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.cart-item-price-unit {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 4px 0;
}

.cart-item-addons {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 4px 0;
}

.addon-tag {
    font-size: 12px;
    color: #666;
}

.cart-item-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 8px;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
}

.qty-btn-small {
    width: 28px;
    height: 28px;
    border: none;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn-small.qty-plus {
    background: #FFD700;
}

.qty-display {
    min-width: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.remove-item-btn {
    background: rgba(229, 57, 53, 0.1);
    border: none;
    color: #E53935;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.remove-item-btn:hover {
    background: rgba(229, 57, 53, 0.2);
}

.remove-item-btn:hover { color: #ff4444; }

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-cart-icon { margin-bottom: 24px; }

.empty-cart h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.empty-cart p {
    color: #888;
    margin-bottom: 24px;
}

.browse-menu-btn {
    background: #FFD700;
    color: #000;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.order-summary {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.order-summary h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.promo-code-section {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.promo-code-section input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.apply-promo-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.apply-promo-btn:disabled {
    background: #4CAF50;
}

.promo-message {
    font-size: 13px;
    margin-bottom: 16px;
}

.promo-message.success { color: #4CAF50; }
.promo-message.error { color: #ff4444; }

.summary-details {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.summary-row.total-row {
    font-size: 18px;
    font-weight: 700;
    padding-top: 12px;
    border-top: 1px solid #eee;
    margin-top: 12px;
}

.discount-row { color: #4CAF50; }

.checkout-btn {
    width: 100%;
    background: #FFD700;
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.checkout-btn:disabled {
    background: #ddd;
    cursor: not-allowed;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.continue-shopping {
    padding: 20px;
    text-align: center;
}

.continue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

/* ========================================
   CHECKOUT PAGE STYLES
======================================== */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: #f8f8f8;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ddd;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.progress-step.active .step-number {
    background: #FFD700;
    color: #000;
}

.progress-step.completed .step-number {
    background: #4CAF50;
    color: #fff;
}

.progress-step span:last-child {
    font-size: 13px;
    color: #888;
}

.progress-step.active span:last-child { color: #000; }

.progress-line {
    width: 80px;
    height: 2px;
    background: #ddd;
    margin: 0 10px;
}

.progress-line.completed { background: #4CAF50; }

.checkout-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.checkout-form-section {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-section {
    margin-bottom: 32px;
}

.form-section textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s;
}

.form-section textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.form-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.delivery-time-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.time-option {
    cursor: pointer;
}

.time-option input { display: none; }

.time-box {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    transition: all 0.2s;
}

.time-option input:checked + .time-box {
    border-color: #FFD700;
    background: #fffef5;
}

.time-label {
    font-weight: 600;
    margin-bottom: 4px;
}

.time-estimate {
    font-size: 13px;
    color: #888;
}

.schedule-picker {
    margin-top: 16px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 12px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input { display: none; }

.payment-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    transition: all 0.2s;
}

.payment-option input:checked + .payment-box {
    border-color: #FFD700;
    background: #fffef5;
}

/* Delivery Type Options */
.delivery-type-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.delivery-type-option {
    cursor: pointer;
}

.delivery-type-option input { display: none; }

.delivery-type-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    transition: all 0.2s;
}

.delivery-type-option input:checked + .delivery-type-box {
    border-color: #FFD700;
    background: #fffef5;
}

.delivery-type-info {
    display: flex;
    flex-direction: column;
}

.delivery-type-name {
    font-weight: 600;
    color: #000;
}

.delivery-type-time {
    font-size: 13px;
    color: #888;
}

/* Branch Dropdown */
.branch-select-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.branch-dropdown {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid #eee;
    border-radius: 12px;
    background: #FFF8E1;
    color: #000;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    transition: all 0.2s;
}

.branch-dropdown:focus {
    outline: none;
    border-color: #FFD700;
}

.branch-dropdown:hover {
    border-color: #FFD700;
}

.branch-details {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.branch-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-detail-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.branch-detail-text {
    font-size: 14px;
    color: #555;
}

/* Legacy Branch Options (kept for compatibility) */
.branch-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.branch-option {
    cursor: pointer;
}

.branch-option input { display: none; }

.branch-box {
    display: flex;
    gap: 12px;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: #FFF8E1;
    transition: all 0.2s;
}

.branch-option input:checked + .branch-box {
    border-color: #FFD700;
}

.branch-icon {
    width: 44px;
    height: 44px;
    background: #FFD700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.branch-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.branch-name {
    font-weight: 700;
    color: #000;
}

.branch-address {
    font-size: 13px;
    color: #666;
}

.branch-phone, .branch-hours {
    font-size: 12px;
    color: #888;
}

.branch-hours.open {
    color: #4CAF50;
}

.branch-hours.closed {
    color: #e53935;
}

.branch-option.closed .branch-box {
    opacity: 0.7;
}

.no-branches, .error-text {
    text-align: center;
    padding: 20px;
    color: #888;
}

.error-text {
    color: #e53935;
}

/* Address Options - Matching Android */
.saved-addresses {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address-option {
    cursor: pointer;
}

.address-option input { display: none; }

.address-box {
    display: flex;
    gap: 12px;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: #f5f5f5;
    transition: all 0.2s;
}

.address-option input:checked + .address-box,
.address-option.selected .address-box {
    border-color: #FFD700;
    background: #FFF8E1;
}

.address-icon {
    width: 44px;
    height: 44px;
    background: #FFD700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.address-label {
    font-weight: 700;
    color: #000;
    font-size: 14px;
}

.address-text {
    font-size: 13px;
    color: #666;
}

.default-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

/* No Address Card */
.no-address-card {
    text-align: center;
    padding: 32px 20px;
    background: #FFF8E1;
    border-radius: 12px;
}

.no-address-card svg {
    margin-bottom: 12px;
}

.no-address-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.no-address-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.add-address-btn-primary {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.add-address-btn-primary:hover {
    background: #e6c200;
}

/* Section Header Row */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header-row h2 {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.edit-btn, .add-address-btn {
    background: none;
    border: none;
    color: #FFD700;
    font-weight: 600;
    cursor: pointer;
}

/* Contact Card */
.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f5f5f5;
    border-radius: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: #666;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

/* No Address Card */
.no-address-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: #FFF8E1;
    border-radius: 12px;
    text-align: center;
}

.no-address-card h3 {
    margin: 12px 0 4px;
    font-size: 16px;
}

.no-address-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.add-address-btn-primary {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* Coupon Styles */
.coupon-input-row {
    display: flex;
    gap: 12px;
}

.coupon-input-row input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
}

.coupon-input-row input:focus {
    outline: none;
    border-color: #FFD700;
}

.apply-coupon-btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.coupon-applied {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #E8F5E9;
    border-radius: 12px;
}

.coupon-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.coupon-code {
    font-weight: 700;
    color: #2E7D32;
}

.coupon-badge {
    background: #4CAF50;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
}

.coupon-discount {
    font-size: 13px;
    color: #388E3C;
}

.remove-coupon-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

.coupon-error {
    color: #E53935;
    font-size: 13px;
    margin-top: 8px;
}

.payment-icon {
    font-size: 24px;
}

.payment-info {
    display: flex;
    flex-direction: column;
}

.payment-name {
    font-weight: 600;
}

.payment-desc {
    font-size: 13px;
    color: #888;
}

.payment-details {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 12px;
}

.checkout-summary {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.checkout-summary h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.checkout-items {
    max-height: 250px;
    overflow-y: auto;
}

.checkout-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.checkout-item-qty {
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-name {
    display: block;
    font-weight: 500;
    font-size: 14px;
}

.checkout-item-options {
    font-size: 12px;
    color: #888;
}

.checkout-item-price {
    font-weight: 600;
    font-size: 14px;
}

.summary-divider {
    height: 1px;
    background: #eee;
    margin: 16px 0;
}

.checkout-totals .summary-row {
    margin-bottom: 10px;
}

.place-order-btn {
    width: 100%;
    background: #FFD700;
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.place-order-btn:disabled {
    background: #ddd;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.terms-text {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 16px;
}

.terms-text a { color: #000; }

/* ========================================
   ORDER PLACED PAGE STYLES
======================================== */
.order-placed-page {
    background: #fff;
    min-height: 100vh;
}

.order-confirmation {
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

/* Success Icon */
.success-icon-wrapper {
    margin-bottom: 24px;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.order-confirmation h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.confirmation-message {
    font-size: 14px;
    color: #666;
    margin-bottom: 32px;
}

/* Order Details Card */
.order-details-card {
    background: #F5F5F5;
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-size: 14px;
    color: #666;
}

.detail-value {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.detail-divider {
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 16px 0;
}

/* Items Section */
.items-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.order-item-row {
    display: flex;
    align-items: center;
    padding: 4px 0;
}

.item-qty {
    font-size: 14px;
    color: #000;
    min-width: 30px;
}

.item-name {
    flex: 1;
    font-size: 14px;
    color: #000;
}

.item-price {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* Info Row */
.info-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.info-text {
    font-size: 13px;
    color: #666;
}

/* Payment Summary */
.payment-summary .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.payment-summary .summary-row span:first-child {
    color: #666;
}

.payment-summary .total-row {
    font-weight: 700;
}

.payment-summary .total-row span {
    color: #000 !important;
    font-size: 16px;
}

.discount-value {
    color: #4CAF50 !important;
}

.payment-method-row span:last-child {
    font-weight: 500;
}

/* Estimated Time Card */
.estimated-time-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 215, 0, 0.1);
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 100px;
}

.time-icon {
    font-size: 24px;
}

.time-info {
    display: flex;
    flex-direction: column;
}

.time-label {
    font-size: 12px;
    color: #666;
}

.time-value {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

/* Action Buttons */
.confirmation-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.track-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FFD700;
    color: #000;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.back-home-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #000;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #ddd;
}

.detail-section p {
    font-size: 15px;
    font-weight: 500;
}

.order-items-summary {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 20px;
}

.order-items-summary h3 {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
}

.order-item-row {
    display: flex;
    gap: 12px;
    padding: 8px 0;
}

.order-item-row .item-qty {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
}

.order-item-row .item-name {
    flex: 1;
    font-size: 14px;
}

.order-item-row .item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.order-item-row .item-addons {
    font-size: 12px;
    color: #666;
}

.order-item-row .item-price {
    font-weight: 600;
    font-size: 14px;
}

.order-total-summary {
    border-top: 1px solid #eee;
    padding-top: 16px;
}

.order-total-summary .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.order-total-summary .total-row {
    font-size: 18px;
    font-weight: 700;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.confirmation-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.track-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFD700;
    color: #000;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
}

.back-home-btn {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.order-help {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 12px;
}

.order-help p {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.order-help a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

/* ========================================
   ORDER TRACKING PAGE STYLES
======================================== */
.tracking-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 50px 20px;
    text-align: center;
    color: #fff;
}

.tracking-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.order-id-display {
    font-size: 16px;
    color: #888;
}

.order-id-display span {
    color: #FFD700;
    font-weight: 600;
}

.tracking-page {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.tracking-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.tracking-status-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.current-status {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.status-text p {
    font-size: 14px;
    opacity: 0.8;
}

.estimated-time-box {
    text-align: right;
}

.eta-label {
    display: block;
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.eta-value {
    font-size: 28px;
    font-weight: 700;
}

.tracking-timeline {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.timeline-step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.timeline-step .step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #888;
}

.timeline-step.completed .step-icon {
    background: #4CAF50;
    color: #fff;
}

.timeline-step.active .step-icon {
    background: #FFD700;
    color: #000;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.step-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 13px;
    color: #888;
    margin-bottom: 4px;
}

.step-time {
    font-size: 12px;
    color: #4CAF50;
    font-weight: 500;
}

.timeline-connector {
    width: 2px;
    height: 30px;
    background: #eee;
    margin-left: 21px;
}

.timeline-connector.completed { background: #4CAF50; }

.tracking-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.detail-card h3 {
    font-size: 14px;
    margin-bottom: 12px;
}

.track-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.track-item:last-child { border-bottom: none; }

.track-total {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #eee;
    font-weight: 700;
}

.rider-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rider-avatar {
    width: 48px;
    height: 48px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.rider-details {
    flex: 1;
}

.rider-name {
    display: block;
    font-weight: 600;
}

.rider-rating {
    font-size: 13px;
    color: #888;
}

.call-rider-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #4CAF50;
    color: #fff;
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.help-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.help-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.help-card p {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.support-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.tracking-actions {
    text-align: center;
    padding: 40px 20px;
}

.order-again-btn {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 16px;
}

.back-home-link {
    display: block;
    color: #888;
    text-decoration: none;
}

/* Responsive for Cart, Checkout, Tracking */
@media (max-width: 992px) {
    .cart-container,
    .checkout-container,
    .tracking-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 12px;
    }
    
    .cart-item-quantity,
    .cart-item-price,
    .remove-item-btn {
        grid-column: 2;
    }
    
    .form-row,
    .delivery-time-options {
        grid-template-columns: 1fr;
    }
    
    .tracking-status-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .estimated-time-box { text-align: center; }
    
    .tracking-timeline { grid-column: 1; }
}

/* ========================================
   LOGIN PAGE STYLES
======================================== */
.login-page {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    min-height: calc(100vh - 300px);
}

.login-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.login-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    width: 60px;
    height: auto;
    margin: 0 auto 20px;
}

.login-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.login-header h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-header p {
    color: #666;
    font-size: 15px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 120px;
    min-width: 120px;
    flex-shrink: 0;
}

.country-code-text {
    width: 60px;
    min-width: 60px;
    flex-shrink: 0;
    padding: 14px 12px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    background-color: #f5f5f5;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-input-group input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.phone-input-group input:focus {
    outline: none;
    border-color: #FFD700;
}

.login-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.phone-login-btn {
    background: #FFD700;
    color: #000;
}

.phone-login-btn:hover {
    background: #e6c200;
}

.verify-btn {
    background: #4CAF50;
    color: #fff;
}

.divider {
    display: flex;
    align-items: center;
    margin: 28px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.divider span {
    padding: 0 16px;
    color: #888;
    font-size: 14px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    width: 100%;
    padding: 14px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s;
}

.social-btn:hover {
    border-color: #ddd;
    background: #f8f8f8;
}

.google-btn:hover {
    border-color: #4285F4;
}

.skip-section {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.skip-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.skip-link:hover {
    color: #000;
}

.skip-note {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}

.terms-notice {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 24px;
}

.terms-notice a {
    color: #000;
    text-decoration: underline;
}

/* OTP Form - Matching Android OtpVerificationScreen */
.otp-form {
    text-align: center;
}

.otp-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.otp-status {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
    min-height: 20px;
    transition: color 0.2s;
}

.otp-status.sending {
    color: #666;
}

.otp-status.success {
    color: #666;
}

.otp-status.error {
    color: #e53935;
}

.otp-message {
    font-size: 15px;
    color: #666;
    margin-bottom: 32px;
}

.otp-message span {
    font-weight: 600;
    color: #000;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.otp-input {
    width: 48px;
    height: 56px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    background: #f5f5f5;
    transition: border-color 0.2s, background-color 0.2s;
}

.otp-input:focus {
    outline: none;
    border-color: #F6D401;
    background: #fff;
}

.otp-input:not(:placeholder-shown) {
    background: #fff;
}

/* Resend Section - Matching Android timer/button */
.resend-section {
    margin-bottom: 24px;
    min-height: 24px;
}

.resend-timer {
    font-size: 14px;
    color: #888;
}

.resend-link {
    font-size: 14px;
    color: #F6D401;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.resend-link:hover {
    text-decoration: underline;
}

/* Legacy support */
.resend-text {
    font-size: 14px;
    color: #888;
    margin-top: 16px;
}

.resend-text a {
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
}

.back-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    margin-top: 16px;
}

.back-btn:hover {
    color: #000;
}

/* Login Benefits */
.login-benefits {
    padding: 40px;
}

.login-benefits h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefits-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #fffef5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 14px;
    color: #666;
}

/* Responsive Login */
@media (max-width: 992px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .login-benefits {
        order: -1;
        padding: 0;
    }
    
    .benefits-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .otp-input {
        width: 44px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .login-card {
        padding: 24px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .otp-input {
        width: 40px;
        height: 46px;
        font-size: 18px;
    }
}

/* Floating Live Support Button */
.live-support-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
}

.live-support-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.live-support-btn svg {
    width: 28px;
    height: 28px;
    color: #000;
}

@media (max-width: 576px) {
    .live-support-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .live-support-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* ========================================
   PAYMENT PAGE STYLES
======================================== */
.payment-page {
    background: #fff;
    min-height: 100vh;
}

.payment-screen {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #fff;
}

.payment-header h1 {
    font-size: 18px;
    font-weight: 700;
}

.payment-header .back-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.payment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.payment-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.payment-state h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 8px;
}

.payment-state p {
    font-size: 14px;
    color: #666;
    max-width: 300px;
}

/* Loader */
.loader-spinner.large {
    width: 64px;
    height: 64px;
    border-width: 4px;
}

/* Status Icons */
.status-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon.success { background: #4CAF50; }
.status-icon.failed { background: #E53935; }
.status-icon.cancelled { background: #FF9800; }
.status-icon.error { background: #FF9800; }

.error-icon {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

/* Payment Info Card */
.payment-info-card {
    background: #FFF8E1;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 8px;
    width: 100%;
}

.payment-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-order-label {
    font-size: 12px;
    color: #666;
    display: block;
}

.payment-amount {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.pay-cash-link {
    background: none;
    border: none;
    color: #FFD700;
    font-weight: 600;
    cursor: pointer;
}

/* WebView Loading */
.webview-loading {
    width: 100%;
    margin-bottom: 8px;
}

.progress-bar {
    height: 3px;
    background: #f5f5f5;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #FFD700;
    width: 0;
    transition: width 0.1s;
}

/* Payment Iframe */
.payment-iframe {
    flex: 1;
    width: 100%;
    border: none;
    border-radius: 12px;
    min-height: 400px;
}

/* Payment Buttons */
.payment-state .primary-btn {
    width: 100%;
    max-width: 300px;
    background: #FFD700;
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 32px;
}

.payment-state .secondary-btn {
    width: 100%;
    max-width: 300px;
    background: transparent;
    color: #000;
    border: 1px solid #ddd;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 12px;
}

.payment-state .text-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    margin-top: 12px;
}

/* ========================================
   LOGIN PROMPT MODAL
======================================== */
.login-prompt-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-prompt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.login-prompt-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-prompt-icon {
    margin-bottom: 16px;
}

.login-prompt-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.login-prompt-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

.login-prompt-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.login-prompt-btn {
    display: block;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
}

.login-prompt-btn.primary {
    background: #FFD700;
    color: #000;
}

.login-prompt-btn.secondary {
    background: #f5f5f5;
    color: #000;
}

/* Login Error/Success Messages */
.login-error {
    background: #FFEBEE;
    color: #C62828;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.login-success {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* ========================================
   PROFILE PAGE STYLES
======================================== */
.profile-page {
    min-height: 100vh;
    background: #fff;
}

.profile-header {
    background: #FFD700;
    padding: 24px;
    text-align: center;
}

.profile-header h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.profile-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-avatar-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-email {
    font-size: 14px;
    color: rgba(0,0,0,0.7);
}

.profile-content {
    padding: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.profile-card {
    background: #f5f5f5;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.phone-card {
    padding: 16px;
}

.phone-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.phone-card .card-icon {
    width: 24px;
    height: 24px;
}

.phone-card .card-title {
    font-weight: 600;
    flex: 1;
}

.phone-saved-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #4CAF50;
    font-size: 12px;
}

.phone-display-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
}

.phone-display-row .phone-number {
    flex: 1;
    color: #333;
}

.phone-display-row .phone-number:empty::before,
.phone-display-row .phone-number[data-empty="true"] {
    color: #999;
}

.edit-phone-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.phone-edit-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-edit-row input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
}

.phone-edit-row input:focus {
    outline: none;
    border-color: #FFD700;
}

.phone-edit-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.btn-cancel {
    padding: 10px 20px;
    background: #fff;
    border: none;
    border-radius: 8px;
    color: #666;
    cursor: pointer;
}

.btn-save {
    padding: 10px 20px;
    background: #FFD700;
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

.btn-save:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.menu-card {
    padding: 0;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.profile-menu-item:hover {
    background: rgba(0,0,0,0.02);
}

.menu-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.menu-item-text {
    flex: 1;
}

.menu-item-title {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.menu-item-subtitle {
    display: block;
    font-size: 13px;
    color: #666;
}

.menu-item-arrow {
    color: #999;
}

.menu-divider {
    height: 1px;
    background: #fff;
}

.auth-card {
    background: transparent;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px;
    background: rgba(244, 67, 54, 0.1);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    color: #F44336;
    font-size: 15px;
    font-weight: 600;
}

.login-btn-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px;
    background: rgba(255, 215, 0, 0.2);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

/* ========================================
   PAGE HEADERS
======================================== */
.page-header-yellow {
    background: #FFD700;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.page-header-yellow h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.page-header-white {
    background: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.page-header-white h1 {
    flex: 1;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding-right: 48px;
}

.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.back-btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    text-decoration: none;
}

.back-btn-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* ========================================
   MY ORDERS PAGE
======================================== */
.orders-page {
    padding: 16px;
    max-width: 800px;
    margin: 0 auto;
    min-height: 60vh;
}

.orders-loading,
.orders-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.orders-empty .empty-icon {
    margin-bottom: 16px;
}

.orders-empty h2 {
    font-size: 18px;
    color: #666;
    margin-bottom: 8px;
}

.orders-empty p {
    color: #999;
    margin-bottom: 24px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-card {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.order-card:hover {
    transform: translateY(-2px);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.order-id {
    font-weight: 700;
    font-size: 15px;
}

.order-status {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending { background: #FFF3E0; color: #FF9800; }
.status-confirmed { background: #E3F2FD; color: #1976D2; }
.status-preparing { background: #E3F2FD; color: #2196F3; }
.status-ready { background: #E8F5E9; color: #388E3C; }
.status-delivery { background: #F3E5F5; color: #9C27B0; }
.status-delivered { background: #E8F5E9; color: #4CAF50; }
.status-cancelled { background: #FFEBEE; color: #F44336; }

.order-date {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.order-items {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-total {
    font-weight: 700;
    font-size: 15px;
}

.order-action {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

/* Order Details Modal */
.order-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-details-content {
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row.total {
    border-top: 2px solid #000;
    border-bottom: none;
    font-weight: 700;
    margin-top: 8px;
    padding-top: 12px;
}

.detail-row.discount .detail-value {
    color: #4CAF50;
}

.detail-label {
    color: #666;
}

.detail-value {
    font-weight: 500;
}

.detail-section-title {
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0 12px;
    color: #666;
}

.detail-items {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.detail-item-qty {
    width: 30px;
    font-weight: 600;
}

.detail-item-name {
    flex: 1;
}

.detail-item-price {
    font-weight: 500;
}

/* ========================================
   MY ADDRESSES PAGE
======================================== */
.addresses-page {
    padding: 16px;
    max-width: 600px;
    margin: 0 auto;
    min-height: 60vh;
    padding-bottom: 100px;
}

.addresses-loading,
.addresses-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.addresses-empty h2 {
    font-size: 18px;
    color: #666;
    margin: 16px 0 8px;
}

.addresses-empty p {
    color: #999;
}

.addresses-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.address-card {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 16px;
}

.address-card.is-default {
    background: rgba(255, 215, 0, 0.1);
}

.address-card-header {
    display: flex;
    gap: 16px;
}

.address-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-info {
    flex: 1;
    min-width: 0;
}

.address-label-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.address-label {
    font-weight: 600;
    font-size: 15px;
}

.default-badge {
    background: #4CAF50;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.address-text {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.address-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.action-btn:hover {
    background: #f0f0f0;
}

/* FAB Button */
.fab-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FFD700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 100;
}

.fab-btn:hover {
    transform: scale(1.05);
}

/* ========================================
   MODAL STYLES
======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.small {
    max-width: 400px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 20px;
}

.modal-body.text-center {
    text-align: center;
}

.modal-footer {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.modal-footer .btn-primary,
.modal-footer .btn-secondary,
.modal-footer .btn-danger {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #FFD700;
    color: #000;
}

.btn-secondary {
    background: #f5f5f5;
    color: #000;
}

.btn-danger {
    background: #F44336;
    color: #fff;
}

.confirm-icon {
    margin-bottom: 16px;
}

.confirm-icon.danger svg {
    color: #F44336;
}

.modal-body h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.modal-body p {
    color: #666;
    margin-bottom: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
}

.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #FFD700;
}

/* ========================================
   FAVORITES PAGE
======================================== */
.favorites-page {
    padding: 16px;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 60vh;
}

.favorites-loading,
.favorites-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.favorites-empty .empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.favorites-empty h2 {
    font-size: 18px;
    color: #666;
    margin-bottom: 8px;
}

.favorites-empty p {
    color: #999;
    margin-bottom: 24px;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.favorite-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.2s;
}

.favorite-card:hover {
    transform: translateY(-4px);
}

.favorite-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.favorite-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-favorite-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.favorite-card-content {
    padding: 12px;
}

.favorite-card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.favorite-card-category {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.favorite-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.favorite-card-price {
    font-weight: 700;
    font-size: 14px;
}

.favorite-card .add-to-cart-btn,
.favorites-page .add-to-cart-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFD700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toast Message */
.toast-message {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s;
    z-index: 1001;
}

.toast-message.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ========================================
   SETTINGS PAGE
======================================== */
.settings-page {
    max-width: 600px;
    margin: 0 auto;
    min-height: 60vh;
}

.settings-main {
    padding: 16px;
}

.settings-section {
    margin-bottom: 24px;
}

.section-title {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.settings-card {
    background: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
}

.settings-toggle-item {
    display: flex;
    align-items: center;
    padding: 16px;
}

.toggle-info {
    flex: 1;
}

.toggle-title {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.toggle-subtitle {
    display: block;
    font-size: 13px;
    color: #666;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #FFD700;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

.settings-divider {
    height: 1px;
    background: #fff;
}

.settings-menu-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.settings-menu-item:hover {
    background: rgba(0,0,0,0.02);
}

.settings-menu-item .menu-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.settings-menu-item .menu-icon.danger {
    background: rgba(244, 67, 54, 0.1);
}

.settings-menu-item .menu-title {
    flex: 1;
    font-weight: 600;
    font-size: 15px;
}

.settings-menu-item .menu-title.danger {
    color: #F44336;
}

.settings-menu-item .menu-arrow {
    color: #999;
}

.version-text {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-top: 32px;
}

/* Settings Sub Pages */
.settings-subpage {
    padding: 16px;
}

.legal-content {
    line-height: 1.6;
}

.legal-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.legal-content h3 {
    font-size: 16px;
    margin: 24px 0 12px;
}

.legal-content h4 {
    font-size: 14px;
    margin: 16px 0 8px;
}

.legal-content p {
    margin-bottom: 12px;
    color: #333;
}

.legal-content ul,
.legal-content ol {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content .last-updated {
    color: #666;
    font-size: 13px;
    margin-bottom: 24px;
}

.legal-content .thank-you {
    font-weight: 600;
    margin-top: 24px;
}

/* About Page */
.about-content {
    text-align: center;
    padding: 32px 16px;
}

.about-logo {
    margin-bottom: 24px;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: rgba(255, 215, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 700;
    color: #FFD700;
}

.about-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-tagline {
    color: #666;
    margin-bottom: 8px;
}

.about-version {
    color: #999;
    font-size: 13px;
    margin-bottom: 32px;
}

.about-card {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.about-card p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.contact-label {
    color: #666;
}

.contact-value {
    font-weight: 500;
}

.about-footer {
    margin-top: 32px;
    color: #666;
}

.about-copyright {
    color: #999;
    font-size: 13px;
}

/* Delete Account Page */
.delete-account-content {
    text-align: center;
    padding: 32px 16px;
}

.warning-icon {
    margin-bottom: 24px;
}

.delete-account-content h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

.warning-text {
    color: #666;
    margin-bottom: 16px;
}

.delete-list {
    text-align: left;
    max-width: 250px;
    margin: 0 auto 24px;
    padding-left: 24px;
}

.delete-list li {
    margin-bottom: 8px;
    color: #666;
}

.delete-actions {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.delete-actions button {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* ========================================
   COUPONS PAGE
======================================== */
.coupons-page {
    padding: 16px;
    max-width: 600px;
    margin: 0 auto;
    min-height: 60vh;
}

.coupons-loading,
.coupons-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.coupons-empty h2 {
    font-size: 18px;
    color: #666;
    margin: 16px 0 8px;
}

.coupons-empty p {
    color: #999;
}

.coupons-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coupon-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.coupon-left {
    width: 100px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: #000;
}

.coupon-discount {
    font-size: 28px;
    font-weight: 700;
}

.coupon-type {
    font-size: 12px;
    font-weight: 600;
}

.coupon-right {
    flex: 1;
    padding: 16px;
}

.coupon-code {
    font-size: 18px;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.coupon-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.coupon-details {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

.copy-code-btn {
    padding: 8px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.copy-code-btn:hover {
    background: #e0e0e0;
}

/* ========================================
   NOTIFICATIONS PAGE
======================================== */
.notifications-page {
    max-width: 600px;
    margin: 0 auto;
    min-height: 60vh;
}

.notifications-settings {
    padding: 16px;
}

.notifications-recent {
    padding: 16px;
}

.notifications-loading,
.notifications-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f5f5f5;
    border-radius: 12px;
}

.notification-item.unread {
    background: rgba(255, 215, 0, 0.1);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon.order { color: #2196F3; }
.notification-icon.promo { color: #FF9800; }
.notification-icon.delivery { color: #4CAF50; }

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.notification-message {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    line-height: 1.4;
}

.notification-time {
    font-size: 12px;
    color: #999;
}

/* ========================================
   SEARCH MODAL - REBUILT
======================================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: none;
}

.search-modal.active {
    display: block;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.search-modal-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 60px auto 0;
    background: #fff;
    border-radius: 16px;
    max-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.search-modal-header {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.search-input-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 0 16px;
}

.search-input-box svg {
    flex-shrink: 0;
}

#search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-size: 16px;
    outline: none;
    color: #333;
    width: 100%;
}

#search-input::placeholder {
    color: #999;
}

.search-clear-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.search-cancel-btn {
    background: none;
    border: none;
    color: #FFD700;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    padding: 0 8px;
    white-space: nowrap;
}

.search-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    min-height: 200px;
}

.search-initial-state,
.search-no-results,
.search-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

.search-initial-state p,
.search-no-results p,
.search-loading p {
    margin-top: 16px;
    font-size: 15px;
}

.search-no-results span {
    font-size: 13px;
    margin-top: 4px;
}

.search-loading .loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f0f0f0;
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: #f0f0f0;
}

.search-result-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #eee;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.search-result-image .placeholder-icon {
    position: absolute;
    z-index: 1;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.search-result-name mark {
    background: #FFD700;
    color: #000;
    padding: 0 2px;
    border-radius: 2px;
}

.search-result-category {
    display: block;
    font-size: 12px;
    color: #888;
}

.search-result-price {
    font-weight: 700;
    color: #FFD700;
    font-size: 14px;
}

/* ========================================
   NOTIFICATION DROPDOWN (Header)
======================================== */
.notification-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53935;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.notification-dropdown {
    position: fixed;
    top: 80px;
    right: 30px;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    display: none;
    overflow: hidden;
}

.notification-dropdown.show {
    display: block;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.notification-header h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.mark-read {
    font-size: 13px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.mark-read:hover {
    text-decoration: underline;
}

.notification-list {
    max-height: 320px;
    overflow-y: auto;
}

.no-notifications {
    padding: 32px 16px;
    text-align: center;
    color: #999;
}

.notification-dropdown-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

.notification-dropdown-item:hover {
    background: #f9f9f9;
}

.notification-dropdown-item.unread {
    background: rgba(255, 215, 0, 0.08);
}

.notification-dropdown-item .notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-dropdown-item .notif-icon.order { color: #2196F3; background: rgba(33, 150, 243, 0.1); }
.notification-dropdown-item .notif-icon.promo { color: #FF9800; background: rgba(255, 152, 0, 0.1); }
.notification-dropdown-item .notif-icon.delivery { color: #4CAF50; background: rgba(76, 175, 80, 0.1); }

.notification-dropdown-item .notif-content {
    flex: 1;
    min-width: 0;
}

.notification-dropdown-item .notif-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

.notification-dropdown-item .notif-message {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-dropdown-item .notif-time {
    font-size: 11px;
    color: #999;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   Matching Android App Design
   Primary Yellow: #F6D401
   Text Primary: #1A1A1A
   Text Secondary: #666666
   Background Gray: #F5F5F5
======================================== */

/* Mobile Bottom Navigation Bar - Android Style */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 24px 24px 0 0;
    z-index: 1000;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

.mobile-bottom-nav .nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.2s;
}

.mobile-bottom-nav .nav-item.active {
    background: rgba(246, 212, 1, 0.1);
}

.mobile-bottom-nav .nav-item svg {
    width: 24px;
    height: 24px;
    color: #999;
    margin-bottom: 4px;
}

.mobile-bottom-nav .nav-item.active svg {
    color: #F6D401;
}

.mobile-bottom-nav .nav-item span {
    font-size: 11px;
    color: #999;
    font-weight: 500;
}

.mobile-bottom-nav .nav-item.active span {
    color: #1A1A1A;
    font-weight: 600;
}

.mobile-bottom-nav .nav-item .cart-badge {
    position: absolute;
    top: 0;
    right: 8px;
    background: #F6D401;
    color: #1A1A1A;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Header - Android TopBar Style */
.mobile-header {
    display: none;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    padding: 16px;
}

.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-header .logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-header .logo-section img {
    width: 36px;
    height: 36px;
}

.mobile-header .app-name {
    position: relative;
}

.mobile-header .app-name-shadow {
    position: absolute;
    font-size: 20px;
    font-weight: 700;
    color: #4CB5E2;
    top: 2px;
    left: 2px;
}

.mobile-header .app-name-main {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #F6D401;
}

.mobile-header .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-header .header-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

/* Mobile Search Bar - Android Style */
.mobile-search-bar {
    display: none;
    padding: 0 16px 16px;
    background: #fff;
}

.mobile-search-bar .search-wrapper {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 12px 16px;
    gap: 12px;
}

.mobile-search-bar input {
    flex: 1;
    border: none;
    background: none;
    font-size: 14px;
    outline: none;
}

.mobile-search-bar input::placeholder {
    color: #999;
}

/* ========================================
   MOBILE BREAKPOINT - 768px and below
======================================== */
@media (max-width: 768px) {
    /* Show mobile elements */
    .mobile-bottom-nav {
        display: block;
    }
    
    .mobile-header {
        display: block;
    }
    
    .mobile-search-bar {
        display: block;
    }
    
    /* Hide desktop header and nav */
    .top-header {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    /* Add bottom padding for fixed nav */
    body {
        padding-bottom: 80px;
    }
    
    /* Hero Section - Mobile */
    .hero-slider {
        height: 200px;
        border-radius: 0;
    }
    
    .slide {
        border-radius: 0;
    }
    
    /* Categories - Horizontal Scroll like Android */
    .categories {
        padding: 20px 0;
    }
    
    .categories-container {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 0 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .categories-container::-webkit-scrollbar {
        display: none;
    }
    
    .category-item {
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon img {
        width: 28px;
        height: 28px;
    }
    
    .category-name {
        font-size: 11px;
    }
    
    /* Browse Items Section - Android 2-Column Grid */
    .browse-items {
        padding: 20px 16px 40px;
    }
    
    .section-header {
        margin-bottom: 16px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Item Card - Android MenuCard Style */
    .item-card {
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .item-card-image {
        height: 120px;
    }
    
    .item-card-info {
        padding: 12px;
    }
    
    .item-card-info h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .item-card-desc {
        font-size: 12px;
        margin-bottom: 6px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .item-card-price {
        font-size: 14px;
    }
    
    .item-card-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .item-card-actions {
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }
    
    .view-btn, .cart-btn {
        padding: 8px;
        font-size: 12px;
    }
    
    /* Special Offer Section - Mobile */
    .special-offer {
        padding: 40px 16px;
        margin: 20px 0;
    }
    
    .offer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .offer-title {
        font-size: 24px;
    }
    
    .offer-description {
        font-size: 14px;
    }
    
    .offer-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .offer-image {
        max-width: 100%;
    }
    
    .offer-image img {
        border-radius: 12px;
    }
    
    /* Team Section - Mobile */
    .team-section {
        padding: 40px 16px;
    }
    
    .team-title {
        font-size: 20px;
    }
    
    .team-description {
        font-size: 13px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Reviews Section - Mobile */
    .reviews {
        padding: 40px 16px;
    }
    
    .section-title-center {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .review-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    /* App Download Section - Mobile */
    .app-download {
        padding: 40px 16px;
    }
    
    .app-content {
        flex-direction: column-reverse;
        gap: 32px;
        text-align: center;
    }
    
    .app-title {
        font-size: 24px;
    }
    
    .app-description {
        font-size: 14px;
    }
    
    .phone-image {
        max-width: 280px;
    }
    
    .app-features {
        align-items: center;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .app-store-btn, .play-store-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    /* Footer - Mobile */
    .footer-main {
        flex-direction: column;
        padding: 40px 16px;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        flex: 0 0 auto;
    }
    
    .footer-logo-icon {
        margin: 0 auto 16px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    /* Menu Page - Mobile */
    .page-header {
        padding: 40px 16px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .menu-filter {
        padding: 16px;
    }
    
    .filter-container {
        gap: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }
    
    .filter-btn {
        flex-shrink: 0;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .menu-page-items {
        padding: 20px 16px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Pagination - Mobile */
    .pagination {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .pagination-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Delivery Page - Mobile */
    .delivery-hero {
        padding: 40px 16px;
    }
    
    .delivery-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .delivery-hero-text h1 {
        font-size: 32px;
    }
    
    .delivery-hero-text p {
        font-size: 14px;
    }
    
    .delivery-hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .delivery-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .delivery-hero-image img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }
    
    .floating-card {
        display: none;
    }
    
    /* How It Works - Mobile */
    .how-it-works {
        padding: 40px 16px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 24px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .step-connector {
        display: none;
    }
    
    /* Delivery Features - Mobile */
    .delivery-features {
        padding: 40px 16px;
    }
    
    .features-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .features-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .features-image img {
        height: 300px;
    }
    
    .features-text h2 {
        font-size: 24px;
    }
    
    /* Stats Section - Mobile */
    .delivery-stats-section {
        padding: 40px 16px;
    }
    
    .stats-header h2 {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px 16px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    /* Track Order - Mobile */
    .track-order {
        padding: 40px 16px;
    }
    
    .track-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .track-text h2 {
        font-size: 24px;
    }
    
    .track-form {
        flex-direction: column;
    }
    
    .track-illustration {
        flex: 0 0 auto;
    }
    
    /* Bundles Page - Mobile */
    .bundles-hero {
        padding: 60px 16px;
    }
    
    .bundles-hero h1 {
        font-size: 32px;
    }
    
    .flash-deals {
        padding: 40px 16px;
    }
    
    .flash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .flash-title h2 {
        font-size: 22px;
    }
    
    .flash-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .flash-image {
        height: 140px;
    }
    
    .flash-info {
        padding: 12px;
    }
    
    .flash-info h3 {
        font-size: 14px;
    }
    
    .new-price {
        font-size: 18px;
    }
    
    .premium-bundles {
        padding: 40px 16px;
    }
    
    .section-intro h2 {
        font-size: 24px;
    }
    
    .bundles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .bundle-content {
        padding: 16px;
    }
    
    .bundle-content h3 {
        font-size: 14px;
    }
    
    .bundle-items li {
        font-size: 12px;
    }
    
    .promo-codes {
        padding: 40px 16px;
    }
    
    .promo-text h2 {
        font-size: 24px;
    }
    
    .promo-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .bundle-newsletter {
        padding: 40px 16px;
    }
    
    .newsletter-content h2 {
        font-size: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    /* Branches Page - Mobile */
    .branches-hero {
        padding: 40px 16px;
    }
    
    .branches-hero h1 {
        font-size: 32px;
    }
    
    .search-location {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }
    
    .search-location input {
        width: 100%;
    }
    
    .search-location button {
        width: 100%;
    }
    
    .branch-stats {
        flex-wrap: wrap;
        gap: 24px;
        padding: 24px 16px;
    }
    
    .stat-num {
        font-size: 28px;
    }
    
    .featured-branch {
        padding: 40px 16px;
    }
    
    .featured-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .featured-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .featured-image img {
        height: 250px;
    }
    
    .featured-info h2 {
        font-size: 24px;
    }
    
    .all-branches {
        padding: 40px 16px;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .coming-soon {
        padding: 40px 16px;
    }
    
    .coming-content h2 {
        font-size: 24px;
    }
    
    .coming-locations {
        flex-direction: column;
        gap: 16px;
    }
    
    .coming-card {
        padding: 24px;
    }
    
    /* Item Details Page - Mobile */
    .breadcrumb {
        padding: 12px 16px;
    }
    
    .item-details {
        padding: 0;
    }
    
    .item-details-container {
        flex-direction: column;
        gap: 0;
    }
    
    .item-gallery {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .main-image {
        border-radius: 0;
    }
    
    .main-image img {
        height: 280px;
    }
    
    .thumbnail-gallery {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .item-info {
        padding: 16px;
        padding-bottom: 120px;
    }
    
    .item-title {
        font-size: 22px;
    }
    
    .info-cards-row {
        gap: 8px;
    }
    
    .info-card {
        padding: 12px;
    }
    
    .info-value {
        font-size: 13px;
    }
    
    .info-label {
        font-size: 11px;
    }
    
    .addon-options {
        grid-template-columns: 1fr;
    }
    
    .item-bottom-bar {
        border-radius: 20px 20px 0 0;
    }
    
    .bottom-bar-content {
        padding: 16px;
    }
    
    .price-value {
        font-size: 20px;
    }
    
    .add-to-cart-btn {
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 12px;
    }
    
    /* Item Tabs - Mobile */
    .item-tabs {
        padding: 24px 16px;
    }
    
    .tab-headers {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 8px;
        padding-bottom: 8px;
    }
    
    .tab-btn {
        flex-shrink: 0;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .nutrition-info {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 24px;
    }
    
    /* Related Items - Mobile */
    .related-items {
        padding: 24px 16px;
    }
    
    .related-container h2 {
        font-size: 20px;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Cart Page - Mobile Android Style */
    .cart-header {
        padding: 40px 16px;
    }
    
    .cart-header h1 {
        font-size: 24px;
    }
    
    .cart-page {
        padding: 16px;
    }
    
    .cart-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cart-items-section {
        padding: 16px;
        border-radius: 16px;
    }
    
    .cart-item-card {
        padding: 12px;
        border-radius: 16px;
    }
    
    .cart-item-card .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-name {
        font-size: 14px;
    }
    
    .order-summary {
        position: static;
        padding: 20px;
        border-radius: 20px;
    }
    
    .order-summary h2 {
        font-size: 18px;
    }
    
    .checkout-btn {
        padding: 14px;
        font-size: 15px;
    }
    
    /* Checkout Page - Mobile */
    .checkout-progress {
        padding: 20px 16px;
        overflow-x: auto;
    }
    
    .progress-line {
        width: 40px;
    }
    
    .checkout-page {
        padding: 16px;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .checkout-form-section {
        padding: 20px;
        border-radius: 16px;
    }
    
    .form-section h2 {
        font-size: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .delivery-time-options,
    .delivery-type-options {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary {
        position: static;
        padding: 20px;
        border-radius: 16px;
    }
    
    .place-order-btn {
        padding: 14px;
        font-size: 15px;
    }
    
    /* Order Placed Page - Mobile */
    .order-confirmation {
        padding: 24px 16px;
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
    }
    
    .order-confirmation h1 {
        font-size: 20px;
    }
    
    .order-details-card {
        padding: 16px;
    }
    
    .confirmation-actions {
        position: static;
        padding: 0;
        margin-top: 24px;
    }
    
    .track-order-btn {
        padding: 14px;
        border-radius: 12px;
    }
    
    /* Order Tracking Page - Mobile */
    .tracking-header {
        padding: 32px 16px;
    }
    
    .tracking-header h1 {
        font-size: 24px;
    }
    
    .tracking-page {
        padding: 16px;
    }
    
    .tracking-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .tracking-status-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }
    
    .status-icon {
        width: 60px;
        height: 60px;
    }
    
    .status-text h2 {
        font-size: 18px;
    }
    
    .estimated-time-box {
        text-align: center;
    }
    
    .eta-value {
        font-size: 22px;
    }
    
    .tracking-timeline {
        padding: 20px;
    }
    
    .tracking-actions {
        padding: 24px 16px;
    }
    
    /* Login Page - Mobile */
    .login-page {
        padding: 24px 16px;
    }
    
    .login-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .login-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    .login-header h1 {
        font-size: 22px;
    }
    
    .login-benefits {
        display: none;
    }
    
    .otp-inputs {
        gap: 8px;
    }
    
    .otp-input {
        width: 44px;
        height: 52px;
        font-size: 20px;
    }
    
    /* Profile Page - Mobile Android Style */
    .profile-header {
        padding: 24px 16px;
    }
    
    .profile-header h1 {
        font-size: 18px;
    }
    
    .avatar-circle {
        width: 80px;
        height: 80px;
    }
    
    .profile-name {
        font-size: 16px;
    }
    
    .profile-content {
        padding: 16px;
    }
    
    .profile-menu-item {
        padding: 14px;
    }
    
    .menu-item-icon {
        width: 40px;
        height: 40px;
    }
    
    .menu-item-title {
        font-size: 14px;
    }
    
    .menu-item-subtitle {
        font-size: 12px;
    }
    
    /* My Orders Page - Mobile */
    .orders-page {
        padding: 16px;
    }
    
    .order-card {
        padding: 14px;
    }
    
    .order-id {
        font-size: 14px;
    }
    
    .order-status {
        font-size: 11px;
    }
    
    /* My Addresses Page - Mobile */
    .addresses-page {
        padding: 16px;
        padding-bottom: 100px;
    }
    
    .address-card {
        padding: 14px;
    }
    
    .address-icon {
        width: 40px;
        height: 40px;
    }
    
    .fab-btn {
        bottom: 90px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    
    /* Favorites Page - Mobile */
    .favorites-page {
        padding: 16px;
    }
    
    .favorites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .favorite-card-content {
        padding: 10px;
    }
    
    .favorite-card-title {
        font-size: 13px;
    }
    
    .favorite-card-price {
        font-size: 13px;
    }
    
    /* Settings Page - Mobile */
    .settings-main {
        padding: 16px;
    }
    
    .settings-toggle-item {
        padding: 14px;
    }
    
    .toggle-title {
        font-size: 14px;
    }
    
    .toggle-subtitle {
        font-size: 12px;
    }
    
    /* Notifications Page - Mobile */
    .notifications-settings,
    .notifications-recent {
        padding: 16px;
    }
    
    .notification-item {
        padding: 14px;
    }
    
    .notification-title {
        font-size: 13px;
    }
    
    .notification-message {
        font-size: 12px;
    }
    
    /* Coupons Page - Mobile */
    .coupons-page {
        padding: 16px;
    }
    
    .coupon-card {
        flex-direction: column;
    }
    
    .coupon-left {
        width: 100%;
        padding: 16px;
        flex-direction: row;
        gap: 8px;
    }
    
    .coupon-discount {
        font-size: 24px;
    }
    
    /* Modal - Mobile */
    .modal-content {
        width: 95%;
        max-height: 85vh;
        border-radius: 20px;
    }
    
    .modal-header {
        padding: 16px;
    }
    
    .modal-body {
        padding: 16px;
    }
    
    .modal-footer {
        padding: 16px;
    }
    
    /* Search Modal - Mobile */
    .search-modal-container {
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
        max-width: 100%;
    }
    
    .search-modal-header {
        padding: 12px;
    }
    
    .search-modal-body {
        padding: 12px;
    }
    
    /* Toast - Mobile */
    .toast-message {
        bottom: 100px;
        left: 16px;
        right: 16px;
        transform: translateY(20px);
    }
    
    .toast-message.show {
        transform: translateY(0);
    }
    
    /* Live Support Button - Mobile */
    .live-support-btn {
        bottom: 90px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   EXTRA SMALL MOBILE - 480px and below
======================================== */
@media (max-width: 480px) {
    /* Single column for items on very small screens */
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .flash-grid {
        grid-template-columns: 1fr;
    }
    
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .favorites-grid {
        grid-template-columns: 1fr;
    }
    
    /* Smaller text sizes */
    .delivery-hero-text h1 {
        font-size: 26px;
    }
    
    .bundles-hero h1 {
        font-size: 26px;
    }
    
    .branches-hero h1 {
        font-size: 26px;
    }
    
    .offer-title {
        font-size: 20px;
    }
    
    .app-title {
        font-size: 20px;
    }
    
    /* OTP inputs smaller */
    .otp-input {
        width: 40px;
        height: 48px;
        font-size: 18px;
    }
    
    /* Categories smaller */
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon img {
        width: 24px;
        height: 24px;
    }
    
    .category-name {
        font-size: 10px;
    }
}
