/* Affiliate Specific Styles */
.affiliate-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    position: relative;
}

.affiliate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e8b4b8, #d4919a, #e8b4b8);
}

/* Additional affiliate enhancements */
.affiliate-card {
    position: relative;
    overflow: hidden;
}

.affiliate-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8b4b8, #d4919a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.affiliate-card:hover::after {
    transform: scaleX(1);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}
