/* assets/css/pizzaweather.css */

.pizzaweather-offer {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.pizzaweather-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.pizzaweather-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pizzaweather-badge {
    display: inline-block;
    background: #667eea;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pizzaweather-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pizzaweather-icon {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
    text-align: center;
}

.pizzaweather-temp {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
    color: #666;
}

.pizzaweather-text {
    flex: 1;
}

.pizzaweather-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a1a1a;
}

.pizzaweather-description {
    font-size: 16px;
    color: #666;
    margin: 0 0 16px;
    line-height: 1.5;
}

.pizzaweather-offer-box {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 16px;
    border-radius: 6px;
}

.pizzaweather-offer-headline {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.pizzaweather-offer-text {
    font-size: 15px;
    color: #333;
    margin: 0 0 12px;
    line-height: 1.4;
}

.pizzaweather-cta {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.pizzaweather-cta:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    color: #fff;
}

/* Style barre */
.pizzaweather-bar .pizzaweather-badge {
    background: rgba(255, 255, 255, 0.2);
}

.pizzaweather-bar .pizzaweather-title {
    color: #fff;
    margin: 0 0 4px;
    font-size: 20px;
}

.pizzaweather-bar .pizzaweather-description {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 14px;
}

.pizzaweather-bar .pizzaweather-offer-box {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #fff;
}

.pizzaweather-bar .pizzaweather-offer-headline {
    color: #fff;
}

.pizzaweather-bar .pizzaweather-offer-text {
    color: rgba(255, 255, 255, 0.95);
}

.pizzaweather-bar .pizzaweather-cta {
    background: #fff;
    color: #667eea;
}

.pizzaweather-bar .pizzaweather-cta:hover {
    background: #f0f0f0;
    color: #5568d3;
}

.pizzaweather-bar .pizzaweather-temp {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .pizzaweather-content {
        flex-direction: column;
    }
    
    .pizzaweather-icon {
        font-size: 36px;
    }
    
    .pizzaweather-title {
        font-size: 20px;
    }
    
    .pizzaweather-bar {
        flex-direction: column;
        text-align: center;
    }
}