/* Deals Page Specific Styles */
.deals-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.deals-hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.deals-hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.deals-search {
    max-width: 600px;
    margin: 0 auto;
}

.deals-search__form {
    display: flex;
    gap: 0.5rem;
}

.deals-search__input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.deals-search__button {
    padding: 1rem 2rem;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.deals-search__button:hover {
    background: #ff5252;
}

/* Responsive */
@media (max-width: 768px) {
    .deals-hero {
        padding: 3rem 0;
    }
    
    .deals-hero__title {
        font-size: 2rem;
    }
    
    .deals-hero__subtitle {
        font-size: 1rem;
    }
    
    .deals-search__form {
        flex-direction: column;
    }
}