body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    background: url('Hamburguesa/board.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
    color-scheme: light;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

h1 {
    font-size: 2.5em;
    color: #ff6600;
    margin-top: 0;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 30px;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 30px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.option-card:hover {
    border-color: #ff6600;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    background-color: #fff5ed;
}

.option-card i {
    font-size: 3em;
    color: #ff6600;
    margin-bottom: 15px;
}

.option-card h2 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    color: #333;
}

.option-card p {
    margin: 0;
    font-size: 1em;
    color: #666;
}

footer {
    padding: 40px 20px;
    background-color: rgba(51, 51, 51, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    font-size: 0.9em;
}

.footer-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-container h3 {
    color: #ff6600;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-container ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.footer-container ul li {
    margin: 8px 0;
}

.footer-container a {
    color: white;
    text-decoration: none;
}

.footer-container a:hover {
    text-decoration: underline;
}

@media (min-width: 600px) {
    .options-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .option-card {
        flex: 1;
    }
}

/* --- MIS PEDIDOS --- */
.btn-mis-pedidos {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff;
    color: #ff6600;
    border: 1px solid #ff6600;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
    font-size: 14px;
    z-index: 1000;
}

.btn-mis-pedidos:hover {
    background: #ff6600;
    color: #fff;
}

.mis-pedidos-modal {
    background-color: rgba(0, 0, 0, 0.85);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mis-pedidos-modal.active {
    opacity: 1;
    pointer-events: all;
}

.mis-pedidos-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    box-sizing: border-box;
}

.mis-pedidos-content input {
    width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 6px; box-sizing: border-box; font-family: inherit; margin-top: 5px; margin-bottom: 15px; font-size: 16px;
}
.mis-pedidos-content input:focus { outline: none; border-color: #000; }

.mis-pedidos-title {
    color: #ff6600;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.mis-pedidos-desc {
    color: #555;
    margin-bottom: 20px;
    font-size: 14px;
}

.mis-pedidos-msg {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
}

.msg-success { color: #28a745; }
.msg-error { color: #dc3545; }

.mis-pedidos-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-modal-cancel {
    flex: 1;
    background: transparent;
    color: #666;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.btn-modal-cancel:hover { background: #f0f0f0; }

.btn-modal-send {
    flex: 1;
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.btn-modal-send:hover:not(:disabled) { background: #e65c00; }
.btn-modal-send:disabled { background: #ccc; cursor: not-allowed; }
