/* Phone Shop Jos Frontend Styles */
.phone-shop-jos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.phone-shop-hero {
    background: linear-gradient(135deg, #007aff 0%, #1d1d1f 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.phone-shop-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a1a1a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.phone-shop-model-card {
    background: white;
    border: 2px solid #e5e5e7;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.phone-shop-model-card:hover {
    border-color: #007aff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.1);
}

.phone-shop-buy-form input,
.phone-shop-buy-form select,
.phone-shop-buy-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    font-size: 1rem;
}

.phone-shop-buy-form button {
    background: #007aff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-shop-buy-form button:hover {
    background: #0056cc;
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 768px) {
    .phone-shop-hero h1 {
        font-size: 2.2rem;
    }
    
    .phone-shop-cta-buttons {
        flex-direction: column;
    }
    
    .phone-shop-model-card {
        margin: 1rem 0;
    }
}

/* Animation for WhatsApp widget */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-button {
    animation: pulse 2s infinite;
}