* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Barra superior */
.top-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 5%;
    gap: 15px;
}

.status-box {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #28a745;
    border-radius: 50%;
}

.btn-pedir {
    background-color: #d63384; /* Rosado intenso */
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* Contenido Principal */
.main-container {
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 10%;
}

.logo-img {
    width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.branding h1 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
}

.location p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    margin-bottom: 8px;
}

/* Botones */
.button-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-action {
    display: block;
    width: 320px;
    background-color: #f06292; /* Rosado claro */
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 18px;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(240, 98, 146, 0.3);
    transition: 0.3s;
}

.btn-action:hover {
    transform: translateY(-3px);
    background-color: #d63384;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #f5f5f5;
    font-size: 0.85rem;
    color: #888;
}

footer a { color: #888; }

/* Responsive para Celular */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .branding { margin-bottom: 40px; }
    .location p { justify-content: center; }
}
/* Ventana de Detalle estilo App */
.full-screen-detail {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: white;
    z-index: 2000;
    overflow-y: auto;
}

.detail-header {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    position: sticky; top: 0; background: white;
}

.btn-back {
    border: none; background: #f5f5f5;
    border-radius: 50%; width: 40px; height: 40px;
    cursor: pointer; font-size: 20px;
}

