/* Mankind Today's Deals Styles */

.mankind-todays-deals {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.mankind-deals-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a1a1a;
    text-align: center;
}

.mankind-deals-date {
    font-size: 1rem;
    color: #666;
    margin: 0 0 24px 0;
    text-align: center;
}

.mankind-deals-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mankind-deal-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border-radius: 12px;
    padding: 20px 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid #c9a227; /* Gold accent */
}

.mankind-deal-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.mankind-deal-brand {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #c9a227; /* Gold for brand names */
}

.mankind-deal-text {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
}

.mankind-no-deals {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    padding: 40px 20px;
    background: #f5f5f5;
    border-radius: 12px;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .mankind-todays-deals {
        padding: 20px 16px;
    }
    
    .mankind-deals-title {
        font-size: 1.5rem;
    }
    
    .mankind-deal-item {
        padding: 16px 20px;
    }
    
    .mankind-deal-brand {
        font-size: 1.1rem;
    }
    
    .mankind-deal-text {
        font-size: 1rem;
    }
}

/* Alternative color schemes - uncomment to use */

/* Dark theme with red accent */
/*
.mankind-deal-item {
    background: linear-gradient(135deg, #2d0a0a 0%, #1a0505 100%);
    border-left: 4px solid #cc3333;
}
.mankind-deal-brand {
    color: #cc3333;
}
*/

/* Purple/cannabis theme */
/*
.mankind-deal-item {
    background: linear-gradient(135deg, #2d1f3d 0%, #1a1225 100%);
    border-left: 4px solid #9b59b6;
}
.mankind-deal-brand {
    color: #9b59b6;
}
*/
