/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Welcome Screen */
.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.welcome-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
}

.welcome-content {
    background: rgba(26, 26, 26, 0.95);
    border: 4px solid #ffd700;
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: scaleIn 0.6s ease-out;
}

.welcome-header {
    margin-bottom: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

/* ========================================
   CONTROLE DO TAMANHO DO LOGO - DESKTOP
   ======================================== */
/* Para alterar o tamanho do logo no DESKTOP, modifique os valores abaixo: */
.custom-logo {
    max-height: 400px;        /* ← ALTERE AQUI: Altura máxima do logo no desktop */
    max-width: 400px;         /* ← ALTERE AQUI: Largura máxima do logo no desktop */
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    animation: fadeInScale 1s ease-out;
}

.logo-icon {
    font-size: 4rem;
    color: #dc143c;
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.7));
    animation: bounce 2s infinite;
}

.restaurant-name {
    font-size: 3rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 3px 3px 15px rgba(255, 215, 0, 0.5);
    letter-spacing: 1px;
    text-align: center;
}

.restaurant-tagline {
    font-size: 1.2rem;
    color: #e0e0e0;
    font-weight: 600;
    font-style: italic;
    opacity: 0.9;
}

/* REMOVIDO: .delivery-info e .delivery-badge - Não existe mais a caixa "Entregamos em Arapongas" */

.neighborhood-selection h2 {
    color: #ffd700;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.neighborhood-selection p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.search-container {
    position: relative;
    margin-bottom: 32px;
}

.search-input {
    width: 100%;
    padding: 20px 24px 20px 60px;
    border: 3px solid #333;
    border-radius: 16px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.05);
}

.search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    font-size: 1.2rem;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 8px;
}

.neighborhood-card {
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.neighborhood-card:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.neighborhood-card.selected {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

.neighborhood-info {
    flex: 1;
}

.neighborhood-info h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.neighborhood-distance,
.neighborhood-fee {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.neighborhood-distance {
    color: #cccccc;
}

.neighborhood-fee {
    color: #32d74b;
    font-weight: 600;
}

.neighborhood-distance i {
    color: #ffd700;
}

.neighborhood-fee i {
    color: #dc143c;
}

.choose-location-btn {
    background: linear-gradient(135deg, #dc143c, #b91c3c);
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.choose-location-btn:hover {
    background: linear-gradient(135deg, #b91c3c, #991b3b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
}

/* Main App Styles */
.main-app {
    min-height: 100vh;
}

/* Header */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    border-bottom: 4px solid #ffd700;
    animation: slideDown 0.6s ease-out;
    padding: 8px 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.restaurant-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    width: 100%;
}

.restaurant-title-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.restaurant-info h1 {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    text-shadow: 3px 3px 12px rgba(255, 215, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
    letter-spacing: 1px;
}

.restaurant-info h1 i {
    color: #dc143c;
    font-size: 2.2rem;
    filter: drop-shadow(0 0 12px rgba(220, 20, 60, 0.7));
    animation: bounce 2s infinite;
}

.subtitle {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.95;
    animation: fadeInLeft 0.8s ease-out 0.4s both;
    font-style: italic;
}

.restaurant-details {
    display: flex;
    gap: 16px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInLeft 0.8s ease-out 0.6s both;
    align-items: center;
}

.restaurant-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    background: rgba(255, 215, 0, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.restaurant-details span:hover {
    background: rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.change-address-btn {
    background: linear-gradient(135deg, #32d74b, #28a745);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 8px 16px;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 215, 75, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.change-address-btn:hover {
    background: linear-gradient(135deg, #28a745, #218838);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 215, 75, 0.5);
}

.rating {
    color: #ffd700 !important;
    font-weight: 800;
}

.rating i {
    color: #ffd700;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.7));
}

.delivery-time i {
    color: #32d74b;
}

.delivery-fee i {
    color: #dc143c;
}

.selected-neighborhood {
    color: #32d74b !important;
    font-weight: 700;
}

.selected-neighborhood i {
    color: #ffd700;
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #dc143c 0%, #b91c3c 100%);
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 16px 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.5);
    z-index: 1500;
    transition: all 0.3s ease;
    transform: translateY(100px);
    opacity: 0;
    min-width: 180px;
}

.floating-cart.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cart:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, #b91c3c 0%, #991b3b 100%);
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 800;
    min-width: 18px;
    text-align: center;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}

.cart-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-total {
    font-size: 1rem;
    font-weight: 800;
}

.cart-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Main Content */
.main {
    padding: 20px 0 120px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.menu-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 40px;
    padding: 20px 0;
    text-align: center;
    text-shadow: 3px 3px 12px rgba(255, 215, 0, 0.4);
    position: relative;
    animation: fadeInLeft 0.6s ease-out;
    letter-spacing: 1px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #dc143c);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.3s both;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

/* Menu Items */
.menu-item {
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }

.menu-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-item:hover .item-image img {
    transform: scale(1.1);
}

.item-content {
    padding: 24px;
}

.item-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.menu-item:hover .item-content h3 {
    color: #ffed4e;
}

.item-description {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.price {
    font-size: 1.4rem;
    font-weight: 900;
    color: #dc143c;
    transition: color 0.3s ease;
}

.menu-item:hover .price {
    color: #ff1744;
}

/* Add buttons */
.add-btn {
    background: linear-gradient(135deg, #32d74b, #28a745);
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 12px 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(50, 215, 75, 0.4);
    min-width: 160px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #28a745, #218838);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 215, 75, 0.5);
}

.add-btn:disabled {
    background: #666;
    border-color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.5;
}

.add-btn:active:not(:disabled) {
    transform: translateY(0);
}

/* Drink Selection Modal */
.drink-selection-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.drink-selection-modal.open {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.drink-selection-content {
    background: #2a2a2a;
    border: 3px solid #ffd700;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

.drink-selection-header {
    padding: 28px;
    border-bottom: 3px solid #ffd700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
}

.drink-selection-header h3 {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 800;
}

.close-drink-selection {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #cccccc;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-drink-selection:hover {
    background: #333;
    color: #ffd700;
    transform: rotate(90deg);
}

.drink-selection-body {
    padding: 28px;
}

.drink-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.drink-option {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drink-option:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.drink-option-image {
    font-size: 3rem;
    margin-bottom: 16px;
}

.drink-option-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Customization Modal */
.customization-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.customization-modal.open {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.customization-content {
    background: #2a2a2a;
    border: 3px solid #ffd700;
    border-radius: 24px;
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

.customization-header {
    padding: 28px;
    border-bottom: 3px solid #ffd700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
}

.customization-header h3 {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 800;
}

.close-customization {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #cccccc;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-customization:hover {
    background: #333;
    color: #ffd700;
    transform: rotate(90deg);
}

.customization-body {
    padding: 28px;
}

.customization-section {
    margin-bottom: 32px;
}

.customization-section h4 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.addon-item:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.08);
    transform: translateX(8px);
}

.addon-info {
    flex: 1;
}

.addon-name {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1rem;
}

.addon-price {
    color: #dc143c;
    font-size: 1rem;
    font-weight: 800;
}

.addon-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.addon-btn {
    background: #333;
    border: 2px solid #ffd700;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #ffd700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.addon-btn:hover:not(:disabled) {
    background: #ffd700;
    color: #000;
    transform: scale(1.15);
}

.addon-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.addon-quantity {
    color: #ffffff;
    font-weight: 800;
    min-width: 28px;
    text-align: center;
    font-size: 1.1rem;
}

.special-instructions {
    margin-bottom: 28px;
}

.special-instructions label {
    display: block;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1rem;
}

.special-instructions textarea {
    width: 100%;
    padding: 20px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 16px;
    color: #ffffff;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.special-instructions textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

.customization-footer {
    padding: 28px;
    border-top: 3px solid #ffd700;
    background: #1a1a1a;
}

.customization-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 1.3rem;
    font-weight: 800;
}

.customization-total span:first-child {
    color: #ffffff;
}

.customization-total span:last-child {
    color: #dc143c;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #32d74b, #28a745);
    border: 3px solid #ffd700;
    border-radius: 16px;
    padding: 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(50, 215, 75, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #28a745, #218838);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(50, 215, 75, 0.5);
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.cart-modal.open {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.cart-content {
    background: #2a2a2a;
    border: 4px solid #ffd700;
    border-radius: 24px;
    width: 100%;
    max-width: 750px;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.cart-header {
    padding: 28px;
    border-bottom: 3px solid #ffd700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    flex-shrink: 0;
}

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #cccccc;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-cart:hover {
    background: #333;
    color: #ffd700;
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
    min-height: 0;
}

.cart-items {
    margin-bottom: 36px;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    color: #cccccc;
}

.empty-cart i {
    font-size: 5rem;
    margin-bottom: 24px;
    opacity: 0.6;
    color: #ffd700;
    animation: bounce 2s infinite;
}

.empty-cart p {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.empty-cart small {
    font-size: 1rem;
    opacity: 0.8;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 2px solid #333;
    gap: 24px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 215, 0, 0.03);
    border-radius: 16px;
    padding: 28px 16px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #333;
    transition: border-color 0.3s ease;
}

.cart-item:hover .cart-item-image {
    border-color: #ffd700;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 10px;
}

.cart-item-customizations {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.5;
}

.cart-item-price {
    font-size: 1.2rem;
    color: #dc143c;
    font-weight: 800;
    margin-bottom: 16px;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quantity-btn {
    background: #1a1a1a;
    border: 2px solid #ffd700;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffd700;
    transition: all 0.2s ease;
}

.quantity-btn:hover:not(:disabled) {
    background: #ffd700;
    color: #000;
    transform: scale(1.15);
}

.quantity-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.quantity {
    font-weight: 800;
    color: #ffffff;
    min-width: 36px;
    text-align: center;
    font-size: 1.3rem;
}

.remove-item-btn {
    background: #dc143c;
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 10px 16px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.remove-item-btn:hover {
    background: #b91c3c;
    transform: scale(1.05);
}

/* Cart Form */
.cart-form {
    border-top: 3px solid #ffd700;
    padding-top: 36px;
    margin-top: 36px;
}

.cart-form h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 24px;
    border: 3px solid #333;
    border-radius: 16px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: #ffffff;
    font-family: inherit;
    min-height: 70px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.2);
    background: rgba(255, 215, 0, 0.05);
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 16px;
    transform: scale(1.5);
    min-height: auto;
}

#changeAmount {
    margin-top: 20px;
}

#changeAmount input {
    padding: 22px;
}

/* Cart Footer */
.cart-footer {
    padding: 36px;
    border-top: 3px solid #ffd700;
    background: #1a1a1a;
    flex-shrink: 0;
}

.cart-summary {
    margin-bottom: 28px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: #e0e0e0;
}

.summary-line.total {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    padding-top: 20px;
    border-top: 3px solid #333;
    margin-top: 20px;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #32d74b, #28a745);
    border: 3px solid #ffd700;
    border-radius: 16px;
    padding: 28px;
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(50, 215, 75, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #28a745, #218838);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(50, 215, 75, 0.5);
}

.checkout-btn:disabled {
    background: #666;
    border-color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.success-modal.open {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: #2a2a2a;
    border: 3px solid #ffd700;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    max-width: 400px;
    animation: scaleIn 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

.success-content i {
    font-size: 6rem;
    color: #32d74b;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 25px rgba(50, 215, 75, 0.7));
    animation: bounce 1s infinite;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 16px;
}

.success-content p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Store Info Section */
.store-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 3px solid #ffd700;
    border-radius: 24px;
    padding: 50px;
    margin: 60px 0;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

.store-info h2 {
    color: #ffd700;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 3px 3px 12px rgba(255, 215, 0, 0.4);
}

.store-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 28px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
}

.detail-item i {
    font-size: 3rem;
    color: #dc143c;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.4));
}

.detail-item h3 {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.detail-item p {
    color: #e0e0e0;
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #2a2a2a;
    border: 3px solid #ffd700;
    border-radius: 50%;
    color: #ffd700;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-link:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* MOBILE OPTIMIZATIONS - VERSÃO COMPLETA */
@media (max-width: 768px) {
    /* Welcome Screen Mobile */
    .welcome-screen {
        padding: 10px;
    }

    .welcome-content {
        padding: 30px 20px;
        margin: 5px;
        max-width: calc(100vw - 10px);
        max-height: 95vh;
        border-radius: 20px;
        border-width: 3px;
    }

    .logo-container {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
    }

    /* ========================================
       CONTROLE DO TAMANHO DO LOGO - MOBILE
       ======================================== */
    /* Para alterar o tamanho do logo no MOBILE, modifique os valores abaixo: */
    .custom-logo {
        max-height: 400px;        /* ← ALTERE AQUI: Altura máxima do logo no mobile */
        max-width: 350px;         /* ← ALTERE AQUI: Largura máxima do logo no mobile */
    }

    .logo-icon {
        font-size: 3rem;
    }

    .restaurant-name {
        font-size: 2rem;
        text-align: center;
    }

    .restaurant-tagline {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* REMOVIDO: .delivery-info e .delivery-badge mobile styles - Não existe mais */

    .neighborhood-selection h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .neighborhood-selection p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .search-container {
        margin-bottom: 24px;
    }

    .search-input {
        padding: 16px 20px 16px 50px;
        font-size: 1rem;
        border-radius: 12px;
        border-width: 2px;
    }

    .search-icon {
        left: 18px;
        font-size: 1rem;
    }

    .neighborhoods-grid {
        grid-template-columns: 1fr;
        max-height: 300px;
        gap: 12px;
        padding: 4px;
    }

    .neighborhood-card {
        padding: 16px;
        border-radius: 12px;
        border-width: 2px;
        gap: 12px;
    }

    .neighborhood-info h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .neighborhood-distance,
    .neighborhood-fee {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .choose-location-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
        border-radius: 8px;
        border-width: 2px;
    }

    /* Header Mobile */
    .header {
        padding: 4px 0;
        border-bottom-width: 3px;
    }

    .header-content {
        padding: 12px 0;
        gap: 12px;
    }

    .restaurant-info {
        gap: 12px;
    }

    .restaurant-info h1 {
        font-size: 1.6rem;
        gap: 12px;
    }

    .restaurant-info h1 i {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .restaurant-details {
        gap: 8px;
        font-size: 0.75rem;
    }

    .restaurant-details span {
        padding: 6px 12px;
        border-radius: 16px;
        border-width: 2px;
    }

    .change-address-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        border-radius: 16px;
        border-width: 2px;
    }

    /* Main Content Mobile */
    .main {
        padding: 16px 0 120px;
    }

    .container {
        padding: 0 12px;
    }

    .menu-section {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 16px 0;
        margin-bottom: 24px;
        border-radius: 12px;
        border-width: 2px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: 6px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Menu Items Mobile */
    .menu-item {
        border-radius: 16px;
        border-width: 2px;
    }

    .menu-item:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .item-image {
        height: 180px;
    }

    .item-content {
        padding: 20px;
    }

    .item-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .item-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
        -webkit-line-clamp: 3;
    }

    .item-footer {
        gap: 12px;
        flex-wrap: wrap;
    }

    .price {
        font-size: 1.2rem;
    }

    .add-btn {
        min-width: 100%;
        padding: 12px 16px;
        font-size: 0.85rem;
        border-radius: 10px;
        border-width: 2px;
        margin-top: 8px;
    }

    /* Floating Cart Mobile */
    .floating-cart {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        min-width: 160px;
        border-radius: 16px;
        border-width: 3px;
    }

    .cart-icon {
        font-size: 1.3rem;
    }

    .cart-badge {
        top: -6px;
        right: -6px;
        padding: 1px 5px;
        font-size: 0.65rem;
        min-width: 16px;
        border-width: 2px;
    }

    .cart-total {
        font-size: 0.9rem;
    }

    .cart-text {
        font-size: 0.75rem;
    }

    /* Modals Mobile */
    .cart-modal,
    .customization-modal,
    .drink-selection-modal {
        padding: 10px;
    }

    .cart-content,
    .customization-content,
    .drink-selection-content {
        max-height: 95vh;
        border-radius: 16px;
        border-width: 3px;
        margin: 0;
        max-width: 100%;
    }

    .cart-header,
    .customization-header,
    .drink-selection-header {
        padding: 20px;
        border-bottom-width: 2px;
    }

    .cart-header h2,
    .customization-header h3,
    .drink-selection-header h3 {
        font-size: 1.2rem;
        gap: 8px;
    }

    .close-cart,
    .close-customization,
    .close-drink-selection {
        font-size: 1.4rem;
        padding: 8px;
    }

    .cart-body,
    .customization-body,
    .drink-selection-body {
        padding: 20px;
    }

    .cart-footer,
    .customization-footer {
        padding: 20px;
        border-top-width: 2px;
    }

    /* Cart Items Mobile */
    .cart-item {
        padding: 20px 0;
        gap: 16px;
    }

    .cart-item:hover {
        padding: 20px 12px;
        border-radius: 12px;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
        border-radius: 12px;
        border-width: 2px;
    }

    .cart-item-info h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .cart-item-customizations {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .cart-item-price {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .cart-item-actions {
        margin-top: 12px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .quantity-controls {
        gap: 16px;
    }

    .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-width: 2px;
    }

    .quantity {
        font-size: 1.2rem;
        min-width: 32px;
    }

    .remove-item-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
        border-width: 2px;
        gap: 4px;
    }

    /* Form Mobile */
    .cart-form {
        padding-top: 24px;
        margin-top: 24px;
        border-top-width: 2px;
    }

    .cart-form h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        gap: 8px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 18px;
        font-size: 1rem;
        min-height: 56px;
        border-radius: 12px;
        border-width: 2px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-group input[type="checkbox"] {
        transform: scale(1.3);
        margin-right: 12px;
    }

    #changeAmount input {
        padding: 18px;
    }

    /* Cart Summary Mobile */
    .cart-summary {
        margin-bottom: 20px;
    }

    .summary-line {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .summary-line.total {
        font-size: 1.4rem;
        padding-top: 16px;
        margin-top: 16px;
        border-top-width: 2px;
    }

    .checkout-btn {
        padding: 20px;
        font-size: 1.2rem;
        gap: 12px;
        border-radius: 12px;
        border-width: 3px;
    }

    /* Customization Mobile */
    .customization-section {
        margin-bottom: 24px;
    }

    .customization-section h4 {
        font-size: 1.1rem;
        margin-bottom: 16px;
        gap: 8px;
    }

    .addon-item {
        padding: 16px;
        border-radius: 12px;
        border-width: 2px;
        margin-bottom: 12px;
    }

    .addon-item:hover {
        transform: translateX(4px);
    }

    .addon-name {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .addon-price {
        font-size: 0.9rem;
    }

    .addon-controls {
        gap: 12px;
    }

    .addon-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        border-width: 2px;
    }

    .addon-quantity {
        font-size: 1rem;
        min-width: 24px;
    }

    .special-instructions {
        margin-bottom: 20px;
    }

    .special-instructions label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .special-instructions textarea {
        padding: 16px;
        min-height: 80px;
        border-radius: 12px;
        border-width: 2px;
    }

    .customization-total {
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .add-to-cart-btn {
        padding: 18px;
        font-size: 1.1rem;
        gap: 8px;
        border-radius: 12px;
        border-width: 3px;
    }

    /* Drink Selection Mobile */
    .drink-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .drink-option {
        padding: 20px;
        border-radius: 12px;
        border-width: 2px;
    }

    .drink-option:hover {
        transform: translateY(-3px);
    }

    .drink-option-image {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .drink-option-name {
        font-size: 1rem;
    }

    /* Store Info Mobile */
    .store-info {
        padding: 30px 20px;
        margin: 40px 0;
        border-radius: 16px;
        border-width: 3px;
    }

    .store-info h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .store-details {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 30px;
    }

    .detail-item {
        padding: 24px;
        border-radius: 16px;
        border-width: 2px;
        gap: 12px;
    }

    .detail-item:hover {
        transform: translateY(-5px);
    }

    .detail-item i {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .detail-item h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .detail-item p {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 20px;
        margin-top: 30px;
    }

    .social-link {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        border-width: 3px;
    }

    .social-link:hover {
        transform: translateY(-3px) scale(1.1);
    }

    /* Success Modal Mobile */
    .success-content {
        padding: 40px 30px;
        max-width: 350px;
        border-radius: 16px;
        border-width: 3px;
    }

    .success-content i {
        font-size: 4rem;
        margin-bottom: 20px;
    }

    .success-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .success-content p {
        font-size: 0.9rem;
    }
}

/* MOBILE EXTRA SMALL - Para telas muito pequenas */
@media (max-width: 480px) {
    .welcome-content {
        padding: 24px 16px;
        margin: 2px;
        max-height: 98vh;
        border-radius: 16px;
        border-width: 2px;
    }

    /* ========================================
       CONTROLE DO TAMANHO DO LOGO - MOBILE EXTRA SMALL
       ======================================== */
    /* Para alterar o tamanho do logo em telas MUITO PEQUENAS, modifique os valores abaixo: */
    .custom-logo {
        max-height: 400px;         /* ← ALTERE AQUI: Altura máxima do logo em telas muito pequenas */
        max-width: 320px;         /* ← ALTERE AQUI: Largura máxima do logo em telas muito pequenas */
    }

    .restaurant-name {
        font-size: 1.6rem;
    }

    .restaurant-tagline {
        font-size: 0.9rem;
    }

    /* REMOVIDO: .delivery-badge mobile extra small styles - Não existe mais */

    .neighborhood-selection h2 {
        font-size: 1.4rem;
    }

    .neighborhood-selection p {
        font-size: 0.9rem;
    }

    .search-input {
        padding: 14px 16px 14px 44px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .search-icon {
        left: 16px;
        font-size: 0.9rem;
    }

    .neighborhoods-grid {
        max-height: 280px;
        gap: 10px;
    }

    .neighborhood-card {
        padding: 14px;
        border-radius: 10px;
        gap: 10px;
    }

    .choose-location-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 6px;
    }

    .container {
        padding: 0 10px;
    }

    .restaurant-info h1 {
        font-size: 1.4rem;
        gap: 10px;
    }

    .restaurant-info h1 i {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .restaurant-details {
        font-size: 0.7rem;
        gap: 6px;
    }

    .restaurant-details span {
        padding: 4px 8px;
        border-radius: 12px;
    }

    .change-address-btn {
        padding: 4px 8px;
        font-size: 0.65rem;
        border-radius: 12px;
    }

    .floating-cart {
        bottom: 10px;
        right: 10px;
        padding: 10px 12px;
        min-width: 140px;
        border-radius: 12px;
    }

    .section-title {
        font-size: 1.6rem;
        padding: 12px 0;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .section-title::after {
        width: 50px;
        height: 2px;
    }

    .menu-grid {
        gap: 14px;
    }

    .menu-item {
        border-radius: 12px;
    }

    .item-image {
        height: 160px;
    }

    .item-content {
        padding: 16px;
    }

    .item-content h3 {
        font-size: 1.1rem;
    }

    .item-description {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }

    .price {
        font-size: 1.1rem;
    }

    .add-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    .cart-content,
    .customization-content,
    .drink-selection-content {
        max-height: 98vh;
        border-radius: 12px;
        border-width: 2px;
    }

    .cart-header,
    .customization-header,
    .drink-selection-header {
        padding: 16px;
    }

    .cart-header h2,
    .customization-header h3,
    .drink-selection-header h3 {
        font-size: 1.1rem;
    }

    .cart-body,
    .customization-body,
    .drink-selection-body {
        padding: 16px;
    }

    .cart-footer,
    .customization-footer {
        padding: 16px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 16px;
        font-size: 0.9rem;
        min-height: 52px;
        border-radius: 10px;
    }

    .form-group textarea {
        min-height: 90px;
    }

    .checkout-btn {
        padding: 18px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .store-info {
        padding: 24px 16px;
        margin: 30px 0;
        border-radius: 12px;
    }

    .store-info h2 {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .detail-item {
        padding: 20px;
        border-radius: 12px;
    }

    .detail-item i {
        font-size: 2.2rem;
    }

    .detail-item h3 {
        font-size: 1.1rem;
    }

    .detail-item p {
        font-size: 0.85rem;
    }

    .social-link {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

/* Mobile scrollbar */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px;
    }
}