/**
 * Pizza Voice Empire - Frontend Styles
 * Customer-facing styles
 */

/* Call Button */
.pve-call-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.pve-call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white;
    text-decoration: none;
}

.pve-call-button .icon {
    font-size: 24px;
}

/* Order Status Widget */
.pve-order-status {
    background: white;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pve-order-status .order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.pve-order-status .order-number {
    font-size: 20px;
    font-weight: bold;
    color: #2271b1;
}

.pve-order-status .status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.pve-order-status .status.received {
    background: #fff3cd;
    color: #856404;
}

.pve-order-status .status.processing {
    background: #cce5ff;
    color: #004085;
}

.pve-order-status .status.ready {
    background: #d4edda;
    color: #155724;
}

.pve-order-status .order-details {
    font-size: 16px;
    line-height: 1.6;
}

.pve-order-status .eta {
    font-weight: bold;
    color: #28a745;
}

/* Voice Order Badge */
.pve-voice-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Promotional Banner */
.pve-promo-banner {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    margin: 30px 0;
}

.pve-promo-banner h3 {
    color: white;
    margin: 0 0 10px 0;
    font-size: 24px;
}

.pve-promo-banner p {
    margin: 0 0 15px 0;
    font-size: 18px;
    opacity: 0.95;
}

.pve-promo-banner .phone-number {
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pve-call-button {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .pve-promo-banner .phone-number {
        font-size: 24px;
    }
    
    .pve-order-status .order-header {
        flex-direction: column;
        gap: 10px;
    }
}