.smartaff-container {
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.smartaff-title {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 6px;
    letter-spacing: 0.5px;
}

.smartaff-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.smartaff-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 10px;
    text-decoration: none !important;
    color: #333;
    transition: all 0.2s ease;
}

.smartaff-item:hover {
    border-color: #c0c0c0;
    background: #fafafa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transform: translateY(-1px);
}

.smartaff-thumb {
    width: 65px;
    height: 65px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    margin-right: 15px;
}

.smartaff-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.smartaff-product-title {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 992px) {
    .smartaff-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .smartaff-list {
        grid-template-columns: 1fr;
    }
    
    .smartaff-thumb {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
    .smartaff-product-title {
        font-size: 13px;
        white-space: normal;
        overflow: visible;
    }
}
