/* Google Fonts: Outfit */
:root {
    --bg-color: #fcf9f5;
    --primary-color: #e53935; /* Premium Red */
    --primary-light: #ff6b68;
    --text-dark: #1a1a1a;
    --text-muted: #757575;
    --card-bg: #ffffff;
    --border-color: #f0f0f0;
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --accent-orange: #ff9800;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.app-container {
    width: 100%;
    margin: 0 auto;
    background-color: var(--bg-color);
    min-height: 100vh;
    position: relative;
    box-shadow: var(--shadow-lg);
}

/* Header */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px 15px;
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--card-bg);
    flex-shrink: 0;
}

.menu-btn {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: var(--shadow-sm);
}

.greeting {
    display: flex;
    flex-direction: column;
}

.hello-text {
    font-size: 11px; /* Reducido 1px */
    color: var(--text-muted);
    font-weight: 500;
}

.brand-name {
    font-size: 17px; /* Reducido 1px */
    font-weight: 800;
    color: var(--text-dark);
}

.header-right {
    display: flex;
    gap: 10px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--primary-color);
    color: white;
    font-size: 9px; /* Reducido 1px */
    font-weight: 700;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--card-bg);
}

/* Search */
.search-section {
    padding: 10px 20px;
    display: flex;
    gap: 12px;
}

.search-box {
    flex: 1;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    padding: 0 16px;
    box-shadow: var(--shadow-sm);
}

.search-box i {
    color: var(--text-muted);
    font-size: 19px;
}

.search-box input {
    border: none;
    background: transparent;
    padding: 14px 10px;
    width: 100%;
    outline: none;
    font-size: 13px; /* Reducido 1px */
    font-weight: 500;
    color: var(--text-dark);
}

.filter-btn {
    width: 48px;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    box-shadow: var(--shadow-sm);
}

/* Hero Banner */
.hero-banner {
    margin: 20px 20px;
    background: linear-gradient(135deg, #1e1e24 0%, #2a2a35 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.banner-content {
    z-index: 2;
    max-width: 65%;
}

.badge-tag {
    background: var(--primary-color);
    font-size: 9px; /* Reducido 1px */
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-content h2 {
    font-size: 21px; /* Reducido 1px */
    font-weight: 800;
    margin: 12px 0 6px;
    line-height: 1.15;
    white-space: pre-line;
}

.banner-content p {
    font-size: 10px; /* Reducido 1px */
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    white-space: pre-line;
}

.order-now-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 11px; /* Reducido 1px */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.2s;
}
.order-now-btn:active {
    transform: scale(0.95);
}

.banner-img {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
}

/* Categories */
.categories-section {
    padding: 10px 0 10px 20px;
}

.category-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.category-list::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-width: 70px;
    opacity: 0.75;
    transition: all 0.3s;
}

.category-item.active {
    opacity: 1;
    font-weight: 500;
}

.cat-icon {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 4px;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.cat-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 4px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    background: var(--card-bg);
}

.category-item.active .cat-icon,
.category-item.active .cat-img {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.3);
}

.category-item span {
    font-size: 11px; /* Reducido 1px */
    font-weight: 600;
}

/* Product Grid */
.popular-section {
    padding: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header h3 {
    font-size: 17px; /* Reducido 1px */
    font-weight: 700;
}

.view-all {
    font-size: 12px; /* Reducido 1px */
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: white;
    font-size: 8px; /* Reducido 1px */
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    z-index: 2;
}

.fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    color: var(--text-muted);
}

.product-img-wrap {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 10px;
    background: #f5f5f5;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 9px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(229, 57, 53, 0.1);
    padding: 2px 7px;
    border-radius: 6px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.product-title {
    font-size: 13px; /* Reducido 1px */
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}

.product-desc {
    font-size: 10px; /* Reducido 1px */
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.35;
    white-space: pre-line;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 15px; /* Reducido 1px */
    font-weight: 800;
    color: var(--text-dark);
}

.add-btn {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
    transition: transform 0.2s;
}

.add-btn:active {
    transform: scale(0.9);
}

.loading-text {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
    font-size: 13px;
}

/* Bottom Nav */
.bottom-spacer {
    height: 90px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    gap: 30%;
    padding: 10px 10px 20px;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 9px; /* Reducido 1px */
    font-weight: 600;
    gap: 4px;
    transition: color 0.3s;
}

.nav-item i {
    font-size: 23px;
}

.nav-item.active {
    color: var(--primary-color);
}

.center-btn {
    position: relative;
    top: -20px;
}

.floating-action {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.4);
    margin-bottom: 4px;
    position: relative;
    border: 4px solid var(--bg-color);
}

.floating-action .badge.abs {
    top: 0;
    right: 0;
    background: var(--accent-orange);
    border-color: var(--primary-color);
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s, transform 0s 0.3s;
}

.cart-modal.open {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    transition: opacity 0.3s, transform 0s;
}

.cart-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 85vh;
    background: var(--bg-color);
    border-radius: 30px 30px 0 0;
    display: flex;
    flex-direction: column;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-modal.open .cart-content {
    bottom: 0;
}

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

.cart-header h2 {
    font-size: 19px; /* Reducido 1px */
    font-weight: 800;
}

.close-cart {
    background: var(--card-bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    margin-right: 16px;
}

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

.cart-item-title {
    font-size: 13px; /* Reducido 1px */
    font-weight: 700;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px; /* Reducido 1px */
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-color);
    padding: 6px 12px;
    border-radius: 20px;
}

.qty-btn {
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-dark);
}

.qty-val {
    font-size: 13px; /* Reducido 1px */
    font-weight: 700;
    width: 20px;
    text-align: center;
}

.cart-footer {
    padding: 24px;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -10px 20px rgba(0,0,0,0.03);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 17px; /* Reducido 1px */
    font-weight: 800;
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px; /* Reducido 1px */
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.send-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.send-btn:active {
    transform: scale(0.97);
}

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

/* Confirm Modal */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.confirm-modal.open {
    opacity: 1;
    pointer-events: all;
}

.confirm-box {
    background: var(--card-bg);
    width: 85%;
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-lg);
}

.confirm-modal.open .confirm-box {
    transform: scale(1);
}

.checkout-field {
    margin-bottom: 16px;
}

.checkout-field label {
    display: block;
    font-size: 12px; /* Reducido 1px */
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.checkout-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px; /* Reducido 1px */
    outline: none;
    transition: 0.2s;
}

.checkout-field input:focus {
    border-color: var(--primary-color);
}

.checkout-breakdown {
    background: var(--bg-color);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px; /* Reducido 1px */
    margin-bottom: 8px;
    color: var(--text-muted);
}

.breakdown-row.total-row {
    font-size: 17px; /* Reducido 1px */
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border-color);
    margin-bottom: 0;
}

.confirm-warning {
    font-size: 11px; /* Reducido 1px */
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
    background: #fff3e0;
    padding: 10px;
    border-radius: var(--radius-sm);
}

/* Promotional Pop-up Modal (Formato Rectangular) */
.promo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.promo-modal.open {
    opacity: 1;
    pointer-events: all;
}

.promo-box {
    background: var(--card-bg);
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-modal.open .promo-box {
    transform: scale(1);
}

.close-promo {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.close-promo:hover {
    background: rgba(0, 0, 0, 0.85);
}

.promo-img-container {
    width: 100%;
    height: 220px;
    background: #111;
    overflow: hidden;
    position: relative;
}

.promo-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-content {
    padding: 20px;
    text-align: center;
}

.promo-content h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    white-space: pre-line;
}

.promo-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.share-promo-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s;
}

.share-promo-btn:active {
    transform: scale(0.97);
}

.order-promo-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
    transition: transform 0.2s;
}

.order-promo-btn:active {
    transform: scale(0.97);
}

/* PWA Installation Floating Banner */
.pwa-install-banner {
    position: fixed;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    width: 92%;
    max-width: 440px;
    background: rgba(30, 30, 36, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pwa-install-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.pwa-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    background: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.pwa-info {
    flex: 1;
}

.pwa-info h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #ffffff;
}

.pwa-info p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.25;
}

.pwa-install-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transition: transform 0.2s;
    white-space: nowrap;
}

.pwa-install-btn:active {
    transform: scale(0.95);
}

.pwa-close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pwa-close-btn:hover {
    color: white;
}

/* Toast Messages */
.toast-msg {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1e1e2d;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    white-space: nowrap;
}

.toast-msg.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Location & Google Maps Section */
.location-section {
    margin: 25px 0 15px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.location-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-external-btn {
    background: #eef2ff;
    color: #4f46e5;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
}

.map-external-btn:hover {
    background: #e0e7ff;
}

.map-container {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background: #f8f9fa;
    line-height: 0;
}

.map-container iframe {
    width: 100%;
    height: 260px;
    border: none;
}

/* Delivery Pills Grid */
.delivery-pills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
.delivery-pill {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.2s ease;
}
.delivery-pill input { display: none; }
.delivery-pill i { font-size: 18px; color: var(--text-muted); }
.delivery-pill.active {
    background: #f0fdf4;
    border-color: #10b981;
    color: #065f46;
}
.delivery-pill.active i { color: #10b981; }

/* Dynamic Payment Cards Grid & Details */
.payment-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 8px;
}
.payment-card-item {
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.2s ease;
}
.payment-card-item:hover { border-color: var(--primary-color); }
.payment-card-item.selected {
    border-color: var(--primary-color);
    background: #fef2f2;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.15);
}
.payment-card-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payment-card-sub {
    font-size: 10.5px;
    color: var(--text-muted);
}

/* QR Zoom Modal */
.qr-modal-content {
    max-width: 360px !important;
    text-align: center;
    padding: 20px;
    border-radius: 20px !important;
    max-height: 90vh;
}
.qr-modal-content img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 12px;
    margin: 12px 0;
    border: 1px solid var(--border);
}
.qr-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

/* Cash Keypad Grid */
.cash-keypad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
}
.keypad-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.keypad-btn:active { background: #cbd5e1; }
